Book Recommender System¶

goodreads.png

Recommender System - A recommender system, also known as a recommendation system, is a type of information filtering system that seeks to predict the preferences or ratings a user might give to a particular item. These systems are widely used in various applications to enhance user experience by suggesting items that are likely to be of interest to the user.

A book recommender system is a specialized type of recommender system designed to suggest books to users based on various criteria. These systems aim to help users discover new books that align with their tastes and preferences, improving their reading experience.

Dataset for book recommender system¶

The dataset utilized for the book recommendation system originates from Goodreads and covers the period of May 2024.

Goodreads is a social cataloging website designed for book lovers. It provides a platform for users to search for books, read and write reviews, rate books, and keep track of their reading progress. Goodreads also offers features for social interaction, such as joining book clubs, participating in reading challenges, and following authors or other readers.

Importing libraries¶

In [1]:
# for data manipulation
import pandas as pd
import numpy as np

# for data visualization
import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns
from wordcloud import WordCloud

# for ignoring warnings
import warnings
warnings.filterwarnings('ignore')

# for detecting language of string
from langdetect import detect

# for data cleaning and vectorization
import re
from sklearn.feature_extraction.text import TfidfVectorizer

# for distance calculation
from sklearn.metrics.pairwise import cosine_similarity

Loading and reading the data¶

In [2]:
books_data = pd.read_csv('Book_Details.csv')
books_data.head()
Out[2]:
Unnamed: 0 book_id cover_image_uri book_title book_details format publication_info authorlink author num_pages genres num_ratings num_reviews average_rating rating_distribution
0 0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince It is the middle of the summer, but there is a... ['652 pages, Paperback'] ['First published July 16, 2005'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['652'] ['Fantasy', 'Young Adult', 'Fiction', 'Magic',... 3292516 58398 4.58 {'5': '2,244,154', '4': '775,028', '3': '219,8...
1 1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix Harry Potter is about to start his fifth year ... ['912 pages, Paperback'] ['First published June 21, 2003'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['912'] ['Young Adult', 'Fiction', 'Magic', 'Childrens... 3401709 64300 4.50 {'5': '2,178,760', '4': '856,178', '3': '293,2...
2 2 3 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Sorcerer's Stone Harry Potter has no idea how famous he is. Tha... ['309 pages, Hardcover'] ['First published June 26, 1997'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['309'] ['Fantasy', 'Fiction', 'Young Adult', 'Magic',... 10116247 163493 4.47 {'5': '6,544,542', '4': '2,348,390', '3': '856...
3 3 5 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Prisoner of Azkaban Harry Potter, along with his best friends, Ron... ['435 pages, Mass Market Paperback'] ['First published July 8, 1999'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['435'] ['Fantasy', 'Fiction', 'Young Adult', 'Magic',... 4215031 84959 4.58 {'5': '2,892,322', '4': '970,190', '3': '287,7...
4 4 6 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Goblet of Fire It is the summer holidays and soon Harry Potte... ['734 pages, Paperback'] ['First published July 8, 2000'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['734'] ['Fantasy', 'Young Adult', 'Fiction', 'Magic',... 3718209 69961 4.57 {'5': '2,500,070', '4': '899,496', '3': '259,7...

Shape of the dataset¶

In [3]:
shape = books_data.shape
print(f'There are {shape[0]} rows and {shape[1]} columns in the dataset')
There are 16225 rows and 15 columns in the dataset

Attributes of the dataset¶

In [4]:
cols = list(books_data.columns)
n_col = len(cols)

print(f'There are total {n_col} columns- {cols}')
There are total 15 columns- ['Unnamed: 0', 'book_id', 'cover_image_uri', 'book_title', 'book_details', 'format', 'publication_info', 'authorlink', 'author', 'num_pages', 'genres', 'num_ratings', 'num_reviews', 'average_rating', 'rating_distribution']

Basic information about the dataset¶

In [5]:
print(books_data.info())
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 16225 entries, 0 to 16224
Data columns (total 15 columns):
 #   Column               Non-Null Count  Dtype  
---  ------               --------------  -----  
 0   Unnamed: 0           16225 non-null  int64  
 1   book_id              16225 non-null  int64  
 2   cover_image_uri      16225 non-null  object 
 3   book_title           16225 non-null  object 
 4   book_details         16177 non-null  object 
 5   format               16225 non-null  object 
 6   publication_info     16225 non-null  object 
 7   authorlink           16225 non-null  object 
 8   author               16225 non-null  object 
 9   num_pages            16225 non-null  object 
 10  genres               16225 non-null  object 
 11  num_ratings          16225 non-null  int64  
 12  num_reviews          16225 non-null  int64  
 13  average_rating       16225 non-null  float64
 14  rating_distribution  16225 non-null  object 
dtypes: float64(1), int64(4), object(10)
memory usage: 1.9+ MB
None

Statistical summary¶

In [6]:
# Summary of numeric columns
books_data.describe(include='object')
Out[6]:
cover_image_uri book_title book_details format publication_info authorlink author num_pages genres rating_distribution
count 16225 16225 16177 16225 16225 16225 16225 16225 16225 16225
unique 16120 15491 16018 3104 5369 7615 7615 1083 13773 16093
top https://dryofg8nmyqjw.cloudfront.net/images/no... The Cheat Code Libro usado en buenas condiciones, por su anti... ['288 pages, Paperback'] ['First published January 1, 2008'] https://www.goodreads.com/author/show/3389.Ste... Stephen King [None] [] {'5': '0', '4': '0', '3': '0', '2': '0', '1': ...
freq 38 7 6 142 360 79 79 274 325 12
In [7]:
# Summary of object columns
books_data.describe(include='object')
Out[7]:
cover_image_uri book_title book_details format publication_info authorlink author num_pages genres rating_distribution
count 16225 16225 16177 16225 16225 16225 16225 16225 16225 16225
unique 16120 15491 16018 3104 5369 7615 7615 1083 13773 16093
top https://dryofg8nmyqjw.cloudfront.net/images/no... The Cheat Code Libro usado en buenas condiciones, por su anti... ['288 pages, Paperback'] ['First published January 1, 2008'] https://www.goodreads.com/author/show/3389.Ste... Stephen King [None] [] {'5': '0', '4': '0', '3': '0', '2': '0', '1': ...
freq 38 7 6 142 360 79 79 274 325 12

Data Preprocessing

1. Checking missing values¶

In [8]:
books_data.isna().sum()
Out[8]:
Unnamed: 0              0
book_id                 0
cover_image_uri         0
book_title              0
book_details           48
format                  0
publication_info        0
authorlink              0
author                  0
num_pages               0
genres                  0
num_ratings             0
num_reviews             0
average_rating          0
rating_distribution     0
dtype: int64
In [9]:
# There are missing values in just one column- book_details

2. Removing Missing values¶

In [10]:
# As the missing values are present in book_details(string), it's difficult to impute them in any way.
# Therefore, it's better to get rid of them.
In [11]:
books_data = books_data.dropna(subset = 'book_details')
In [12]:
# Verifying missing values
books_data.isna().sum()
Out[12]:
Unnamed: 0             0
book_id                0
cover_image_uri        0
book_title             0
book_details           0
format                 0
publication_info       0
authorlink             0
author                 0
num_pages              0
genres                 0
num_ratings            0
num_reviews            0
average_rating         0
rating_distribution    0
dtype: int64

3. Checking duplicates in Book Title column¶

In [13]:
# As the core column of book recommender system is "book_title". Therfore, it shouldn't have any duplicate values.

books_data.duplicated(subset='book_title').sum()
Out[13]:
734

4. Removing duplicates¶

In [14]:
# We should get rid of these duplicate rows

books_data = books_data.drop_duplicates(subset='book_title')
In [15]:
# Verifying duplicates
books_data.duplicated(subset='book_title').sum()
Out[15]:
0

Renaming columns¶

In [16]:
# In order to ensure better readability, it is preferred to rename inconsistent column names.

books_data = books_data.rename(columns = {"cover_image_uri": "image_url","book_title": "title", 
                                          "book_details" : "description", "genres": "genre"})
In [17]:
books_data.head(2)
Out[17]:
Unnamed: 0 book_id image_url title description format publication_info authorlink author num_pages genre num_ratings num_reviews average_rating rating_distribution
0 0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince It is the middle of the summer, but there is a... ['652 pages, Paperback'] ['First published July 16, 2005'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['652'] ['Fantasy', 'Young Adult', 'Fiction', 'Magic',... 3292516 58398 4.58 {'5': '2,244,154', '4': '775,028', '3': '219,8...
1 1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix Harry Potter is about to start his fifth year ... ['912 pages, Paperback'] ['First published June 21, 2003'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['912'] ['Young Adult', 'Fiction', 'Magic', 'Childrens... 3401709 64300 4.50 {'5': '2,178,760', '4': '856,178', '3': '293,2...

Shape of cleaned dataset¶

In [18]:
shape = books_data.shape
print(f'There are {shape[0]} rows and {shape[1]} columns in the dataset')
There are 15443 rows and 15 columns in the dataset

Exploratory Data Analysis

Top 10 frequent Genres¶

In [19]:
top_10_genres = books_data['genre'].value_counts()[1:10]
genre_df=pd.DataFrame(top_10_genres).reset_index().rename(columns= {"index":'genre', "genre": 'frequency'})
In [20]:
sns.barplot(x = 'genre', y = 'frequency', data = genre_df, palette = 'rocket_r')
plt.xticks(rotation=90)
plt.show()

Top 10 Authors with highest number of books¶

In [21]:
top_10_authors = books_data['author'].value_counts()[:10]
adf=pd.DataFrame(top_10_authors).reset_index().rename(columns= {"index":'Author', "author": 'Frequency'})
In [22]:
sns.barplot(x = 'Author', y = 'Frequency', data = adf, palette = 'rocket_r')
plt.xticks(rotation=90)
plt.show()

Checking unique values of each column to ensure consistency of data¶

In [23]:
# Number of unique values in each column
books_data.nunique()
Out[23]:
Unnamed: 0             15443
book_id                15443
image_url              15420
title                  15443
description            15418
format                  3034
publication_info        5266
authorlink              7494
author                  7494
num_pages               1076
genre                  13509
num_ratings            12503
num_reviews             6146
average_rating           264
rating_distribution    15365
dtype: int64

Defining a function to list all the unique values of a column¶

In [24]:
def unique_values(col):
    values = list(books_data[col].unique())
    return values

1. title column¶

In [25]:
print(unique_values('title'))
['Harry Potter and the Half-Blood Prince', 'Harry Potter and the Order of the Phoenix', "Harry Potter and the Sorcerer's Stone", 'Harry Potter and the Prisoner of Azkaban', 'Harry Potter and the Goblet of Fire', 'Harry Potter Boxed Set, Books 1-5', 'Harry Potter Collection', 'The Hitchhiker’s Guide to the Galaxy', 'The Ultimate Hitchhiker’s Guide to the Galaxy', 'A Short History of Nearly Everything', 'In a Sunburned Country', "I'm a Stranger Here Myself: Notes on Returning to America After Twenty Years Away", 'The Lost Continent: Travels in Small-Town America', 'Neither Here nor There: Travels in Europe', 'Notes from a Small Island', 'The Mother Tongue: English and How It Got That Way', 'J.R.R. Tolkien 4-Book Boxed Set: The Hobbit and The Lord of the Rings', 'The Lord of the Rings', 'The Fellowship of the Ring', 'Hatchet', 'Changeling', 'The Changeling', 'The Known World', 'Coming Into the Country', 'Heidi', 'Chapterhouse: Dune', 'Children of Dune', 'Heretics of Dune', 'The Power of One', 'Wrinkles in Time', 'I Am Charlotte Simmons', 'Tropic of Cancer', 'Tropic of Capricorn', 'Sexus', 'The Air-Conditioned Nightmare', 'The Portrait of a Lady', 'The Lover', 'The Broken Wings', 'Treasure Island', 'Daniel Deronda', 'One Hundred Years of Solitude', 'Perfume: The Story of a Murderer', 'The Door Into Summer', 'Stranger in a Strange Land', 'Starman Jones', 'Time Enough for Love', 'Job: A Comedy of Justice', 'The Long Dark Tea-Time of the Soul', 'The Salmon of Doubt: Hitchhiking the Galaxy One Last Time', "Dirk Gently's Holistic Detective Agency", 'The Phantom Tollbooth', 'Libra', 'Mao II', 'The Names', 'Against the Day', 'Mason & Dixon', 'Gravity’s Rainbow', 'The White Album', 'A Book of Common Prayer', 'Slouching Towards Bethlehem', 'Democracy', 'Play It As It Lays', 'The New York Trilogy', 'The Brooklyn Follies', 'Moon Palace', 'Timbuktu', 'Travels in the Scriptorium', 'Leviathan', 'Collapse: How Societies Choose to Fail or Succeed', 'Bowling Alone: The Collapse and Revival of American Community', 'My Inventions', 'Killing Yourself to Live: 85% of a True Story', 'Sex, Drugs, and Cocoa Puffs: A Low Culture Manifesto', 'Zen and the Art of Motorcycle Maintenance: An Inquiry Into Values', 'No Logo', 'War and Peace', 'The Kingdom of God Is Within You', 'Atlas Shrugged', 'The Virtue of Selfishness: A New Concept of Egoism', 'Anthem', 'We the Living', 'Sailing Alone Around the Room: New and Selected Poems', 'Natural Cures "They" Don\'t Want You to Know about', "More Natural ''Cures'' Revealed: Previously Censored Brand Name Products That Cure Disease", 'The Natural', 'Digging to America', 'The Plot Against America', "America (The Book): A Citizen's Guide to Democracy Inaction", 'Naked Pictures of Famous People', 'Collected Stories', 'Memories of My Melancholy Whores', '3 Nights in August: Strategy, Heartbreak, and Joy Inside the Mind of a Manager', 'Cryptonomicon', 'The Confusion', 'Quicksilver', 'Zodiac', "The Diamond Age: Or, a Young Lady's Illustrated Primer", 'Snow Crash', 'The Design of Everyday Things', 'The Alchemist', 'Fullmetal Alchemist, Vol. 3', 'Fullmetal Alchemist, Vol. 1', 'Of Mice and Men', 'The Westing Game', 'Memoirs of a Geisha', 'Angels & Demons', 'The Da Vinci Code', 'Deception Point', "The Millionaire Next Door: The Surprising Secrets of America's Wealthy", 'Trump: Think Like a Billionaire: Everything You Need to Know About Success, Real Estate, and Life', 'Trump: The Art of the Deal', 'Trump: How to Get Rich', 'Trump: The Way to the Top: The Best Business Advice I Ever Received', 'The Richest Man in Babylon', 'Shibumi', 'Trevanian: Four Complete Novels: The Eiger Sanction / The Loo Sanction / The Main / Shibumi', '1776', 'The Good Earth', 'Fast Food Nation: The Dark Side of the All-American Meal', 'Snow Flower and the Secret Fan', 'The Broker', 'The Power Broker: Robert Moses and the Fall of New York', 'Freakonomics: A Rogue Economist Explores the Hidden Side of Everything', 'The Shadow of the Wind', 'A Million Little Pieces', 'Men Are from Mars, Women Are from Venus', 'The Clan of the Cave Bear', 'Moneyball', 'The 48 Laws of Power', 'Gates of Fire', 'The War of Art: Winning the Inner Creative Battle', 'The Histories', 'The Iliad', 'The Iliad / The Odyssey', 'The Odyssey', 'Hamlet', 'The Compleat Works of Wllm Shkspr', 'Warrior of the Light', 'The Zahir', 'By the River Piedra I Sat Down and Wept', 'The Fifth Mountain', 'Eleven Minutes', 'Veronika Decides to Die', 'Iphigenia in Aulis', 'The Oresteia: Agamemnon, The Libation Bearers, The Eumenides', 'The Oedipus Cycle: Oedipus Rex, Oedipus at Colonus, Antigone', 'Oedipus Rex', 'Lysistrata', 'Night', 'The Curious Incident of the Dog in the Night-Time', 'A Midsummer Night’s Dream', 'West with the Night', 'Twelfth Night', 'Brokeback Mountain', 'Getting Things Done: The Art of Stress-Free Productivity', 'Sobre héroes y tumbas', 'Metamorphoses', 'Guns, Germs, and Steel: The Fates of Human Societies', 'Into the Wild', 'Wild Swans: Three Daughters of China', 'Wild Fire', 'The Call of the Wild', 'Nickel and Dimed: On (Not) Getting By in America', 'The History of Sexuality, Volume 1: An Introduction', 'The History of Sexuality, Volume 2: The Use of Pleasure', 'Pride and Prejudice', 'Into Thin Air: A Personal Account of the Mt. Everest Disaster', 'The World Is Flat: A Brief History of the Twenty-first Century', 'Little Women', 'A Tale of Two Cities', 'Martin Chuzzlewit', 'The Dosadi Experiment', 'Whipping Star', 'The High Window', 'Farewell, My Lovely', 'The Big Sleep', 'The Long Goodbye', 'Breaking the Spell: Religion as a Natural Phenomenon', "Darwin's Dangerous Idea: Evolution and the Meanings of Life", 'Freedom Evolves', 'The Mind’s I: Fantasies and Reflections on Self and Soul', 'A Briefer History of Time', 'The Universe in a Nutshell', 'Atlas Shrugged & The Fountainhead', 'The Fountainhead', 'Flesh and Blood', 'The Jane Austen Book Club', 'Persuasion', 'Confessions of an Economic Hit Man', 'The Old Man and the Sea', 'Madame Bovary', 'Sentimental Education', 'Middlesex', 'Team of Rivals: The Political Genius of Abraham Lincoln', 'John Adams', 'Way of the Peaceful Warrior: A Book That Changes Lives', "It's Not About the Bike: My Journey Back to Life", 'Truman', 'Other Voices, Other Rooms', 'Tandia', "Matthew Flinders' Cat", 'Jessica', 'Tommo and Hawk', 'The Great Bridge: The Epic Story of the Building of the Brooklyn Bridge', 'The Bone Collector', 'Witches Abroad', 'The Time Machine', 'The War of the Worlds', 'My Name Is Red', 'Blindness', 'All the Names', 'Baltasar and Blimunda', 'The Cave', 'The Stone Raft', 'The Year of the Death of Ricardo Reis', 'The Madman', 'The Prophet', 'Aké: The Years of Childhood', 'The Long Tail: Why the Future of Business is Selling Less of More', 'The Tipping Point: How Little Things Can Make a Big Difference', 'Great Expectations', 'To Kill a Mockingbird', 'The Bonfire of the Vanities', 'A Modest Proposal and Other Satirical Works', "Gulliver's Travels / A Modest Proposal", 'The Canterbury Tales', 'The Book of Salt', 'Cities of Salt', 'The Years of Rice and Salt', 'The Lost Boy', 'Anansi Boys', 'Microserfs', 'The Denial of Death', 'A People’s History of the United States', 'Ways of Seeing', 'The Crying of Lot 49', 'Bridge to Terabithia', 'Girl with a Pearl Earring', 'Falling Angels', 'The Virgin Blue', 'Bleach, Vol. 1', 'The Pigeon', 'The Story of Mr Sommer', 'Winterdance: The Fine Madness of Running the Iditarod', 'Robinson Crusoe', 'The Adventures of Huckleberry Finn', 'The Secret Garden', 'A Little Princess', 'Economics in One Lesson: The Shortest & Surest Way to Understand Basic Economics', 'Black Rednecks and White Liberals', 'Sir Gawain and the Green Knight', 'The Fixer', 'The Enchanted April', 'A Room with a View', 'Maurice', "The Omnivore's Dilemma: A Natural History of Four Meals", 'Assassination Vacation', 'The Bridge on the Drina', "Moloka'i", 'Minds, Brains and Science', 'Inés of My Soul', 'City of the Beasts', 'Generation X: Tales for an Accelerated Culture', 'All Families are Psychotic', 'Hey Nostradamus!', 'Girlfriend in a Coma', 'Corelli’s Mandolin', "The War of Don Emmanuel's Nether Parts", 'Birds Without Wings', 'The Troublesome Offspring of Cardinal Guzmán', 'The Thorn Birds', 'The Grass Crown', 'The Five People You Meet in Heaven', 'If I Die in a Combat Zone, Box Me Up and Ship Me Home', 'Going After Cacciato', 'In the Lake of the Woods', 'The Rescue', 'A Bend in the Road', 'True Believer', 'Three Weeks With My Brother', 'The Wedding', 'The People of Sparks', 'A Walk to Remember', 'Icy Sparks', 'Message in a Bottle', 'Special Topics in Calamity Physics', 'Twelve Sharp', 'Emily of New Moon', 'A Tangled Web', 'The Complete Anne of Green Gables', 'Sherlock Holmes: The Complete Novels and Stories, Volume I', 'The Complete Sherlock Holmes: Volume II', 'The Adventures of Sherlock Holmes', 'The Giver', "The Emperor's Children", 'The Sea', 'The Book of Evidence', 'Where Angels Fear to Tread', 'On Beauty', 'A Great and Terrible Beauty', 'Black Beauty', 'Truth & Beauty', 'The Power and the Glory', 'The Heart of the Matter', 'The Quiet American', 'The Tenth Man', 'The Autograph Man', 'White Teeth', 'The Long Secret', 'Moonraker', 'Casino Royale', 'Goldfinger', 'Diamonds Are Forever', 'From Russia With Love', 'The Corrections', 'Original Sin', 'Death in Holy Orders', 'The Lighthouse', 'The Black Tower', 'Don Quixote', 'Heat and Dust', 'Holy Cow: An Indian Adventure', 'The History of Love', 'A Brief History of Time', 'A History of the World in 6 Glasses', 'A History of God: The 4,000-Year Quest of Judaism, Christianity, and Islam', 'The Sun Also Rises', 'Olympos', 'Ilium', 'The Terror', 'Endymion', 'Song of Kali', 'From the Mixed-Up Files of Mrs. Basil E. Frankweiler', 'The Amazing Adventures of Kavalier & Clay', 'The Pilgrimage', 'The Devil and Miss Prym', 'Nine Stories', 'Lunar Park', 'Life After Death: The Burden of Proof', 'The Burden of Proof', 'Godless: The Church of Liberalism', 'Godless', 'Man’s Search for Meaning', 'I Like You: Hospitality Under the Influence', 'Holidays on Ice', 'Me Talk Pretty One Day', 'Naked', 'The David Sedaris Box Set', 'Barrel Fever: Stories and Essays', 'The Cold Six Thousand', 'Life of Pi', 'How to Be Good', 'About a Boy', 'Dreamland', 'Dispatches', 'Maximum City: Bombay Lost and Found', 'First They Killed My Father: A Daughter of Cambodia Remembers', 'Fahrenheit 451', 'Living to Tell the Tale', 'The Grapes of Wrath', 'East of Eden', 'American Gods', 'A Prayer for Owen Meany', 'Marina', 'Olivia Joules and the Overactive Imagination', 'The View from Saturday', 'Extremely Loud & Incredibly Close', 'Genome: The Autobiography of a Species in 23 Chapters', 'Carter Beats the Devil', 'Moo', 'The Complete Short Stories of Ernest Hemingway', 'To Have and Have Not', 'A Moveable Feast', 'Islands in the Stream', 'Death in the Afternoon', 'The Fourth Hand', 'Setting Free the Bears', 'A Widow for One Year', 'The Great Gatsby', 'The Cider House Rules', 'The Physician', 'A Spot of Bother', 'The Beautiful and Damned', 'The Winter of Our Discontent', 'Cannery Row', 'Longitude: The True Story of a Lone Genius Who Solved the Greatest Scientific Problem of His Time', 'Mayflower: A Story of Courage, Community, and War', 'Shalimar the Clown', 'Shame', 'Haroun and the Sea of Stories', 'Fury', 'How to Win Friends and Influence People', 'How to Stop Worrying and Start Living: Time-Tested Methods for Conquering Worry', 'Who Moved My Cheese?', 'Blue Ocean Strategy: How to Create Uncontested Market Space and Make the Competition Irrelevant', 'Heart of Darkness', 'Teacher Man', "'Tis", 'Three Men in a Boat', 'Kafka on the Shore', 'The Brothers Karamazov', 'The Very Hungry Caterpillar', 'What Is the What', 'A Heartbreaking Work of Staggering Genius', 'You Shall Know Our Velocity!', 'How We Are Hungry: Stories', 'Year of Wonders', 'Wolves of the Calla', 'A Man Without a Country', 'Breakfast of Champions', 'Slaughterhouse-Five', 'The Sirens of Titan', 'Welcome to the Monkey House', 'Jailbird', 'The Red Tent', "Anita Diamant's The Red Tent: A Reader's Guide", 'Saturday', 'The Pillars of Creation', 'The Pillars of the Earth', 'Code to Zero', 'The Man from St. Petersburg', 'Jackdaws', 'World Without End', 'Last Orders', 'My Life in France', 'The Dark Tower', 'Dark Tower Boxed Set', 'Song of Susannah', 'The Drawing of the Three', 'Wizard and Glass', 'The Catcher in the Rye', 'Franny and Zooey', 'Raise High the Roof Beam, Carpenters & Seymour: An Introduction', 'The Doors of Perception / Heaven and Hell', 'Brave New World', 'Island', 'Point Counter Point', 'The Devil Wears Prada', 'A Separate Peace', 'Black and Blue', 'Here on Earth', 'The Deep End of the Ocean', 'Midwives', 'Cane River', 'Where the Heart Is', 'Drowning Ruth', 'Fall on Your Knees', 'While I Was Gone', 'The Rapture of Canaan', 'Breath, Eyes, Memory', 'The Book of Ruth', 'Open House', "The Pilot's Wife", 'Tara Road', 'A Lesson Before Dying', 'Paradise', 'She’s Come Undone', 'We Were the Mulvaneys', 'A Fine Balance', 'Ronald Reagan: How an Ordinary Man Became an Extraordinary Leader', 'Ethan Frome', 'Complete Works of Oscar Wilde', 'An Ideal Husband', 'The Picture of Dorian Gray', 'Travels with Charley: In Search of America', 'The Pearl', 'The Life and Times of Scrooge McDuck', 'A Christmas Carol', 'Hard Times', 'The Innocent Man: Murder and Injustice in a Small Town', 'The Last Juror', 'Bleachers', 'The Testament', 'The Rainmaker', 'The Partner', 'The Street Lawyer', 'The Summons', 'The Brethren', 'The Chamber', 'The King of Torts', 'Skipping Christmas', 'The Firm', 'The Client', 'A Painted House', 'Dragonfly in Amber', 'The Great Book of Amber', 'Forever Amber', 'The Amber Room', "The Last Stand of the Tin Can Sailors: The Extraordinary World War II Story of the U.S. Navy's Finest Hour", "'Salem's Lot", 'Interpreter of Maladies', 'Girls in Pants: The Third Summer of the Sisterhood', 'Forever in Blue: The Fourth Summer of the Sisterhood', 'The Second Summer of the Sisterhood', '1984', 'Animal Farm / 1984', 'Brave New World / Brave New World Revisited', 'Andrew Carnegie', 'Palace Walk / Palace of Desire / Sugar Street', 'Anne Frank Beyond the Diary: A Photographic Remembrance', 'A Raisin in the Sun', "A Raisin in the Sun and The Sign in Sidney Brustein's Window", 'Dear John', 'All the King’s Men', 'The Feynman Lectures on Physics', 'QED: The Strange Theory of Light and Matter', 'Six Easy Pieces: Essentials of Physics By Its Most Brilliant Teacher', 'The Creation of the American Republic, 1776-1787', 'The Wind in the Willows', 'Selected Stories of Anton Chekhov', 'Demons', 'The Complete Short Novels', 'Thousand Pieces of Gold', 'Rainbow Six', 'The Blank Slate: The Modern Denial of Human Nature', 'The Language Instinct: How the Mind Creates Language', 'Fight Club', 'The Aleph and Other Stories', 'Vanity Fair', 'V for Vendetta', 'V.', 'Bel Canto', 'A Bend in the River', 'A House for Mr Biswas', 'Half a Life', 'Regeneration', 'The Regeneration Trilogy', 'The Woman in White', 'The Hobbit', 'Twenty Love Poems and a Song of Despair', 'The Poetry of Pablo Neruda', "Anil's Ghost", 'In the Skin of a Lion', 'Narcissus and Goldmund', 'The Road Back', 'Byzantium: The Early Centuries', 'Byzantium: The Decline and Fall', 'The Moonstone', 'Beloved', 'Cry, the Beloved Country', 'Reservation Blues', 'The Border Trilogy: All the Pretty Horses, The Crossing, Cities of the Plain', 'Survival in Auschwitz', 'The Drowned and the Saved', 'If This Is a Man • The Truce', 'Wuthering Heights', 'Disgrace', 'Waiting for the Barbarians', 'Boyhood', 'Youth', 'Elizabeth Costello', 'Kristin Lavransdatter', 'An Imaginary Life', 'Birdsong', 'The Road', 'Howl’s Moving Castle', 'Howl and Other Poems', 'Charlie and the Chocolate Factory', 'The BFG', 'The Witches', 'Revolting Rhymes', 'The Best of Roald Dahl', 'Never Let Me Go', 'The Mystical Life of Jesus: An Uncommon Perspective on the Life of Christ', 'Exploring the Levels of Creation', 'Christmas in Heaven', 'Father God: Co-creator to Mother God', "Life on the Other Side: A Psychic's Tour of the Afterlife", 'Phenomenon: Everything You Need to Know About the Paranormal', "Sylvia Browne's Book of Dreams", 'Angels & Guides Healing Meditations', 'Angels, Guides, and Ghosts', 'Spirit of Animals', 'Animals on the Other Side', 'Prophecy : What the Future Holds For You', 'If You Could See What I See: The Tenets of Novus Spiritus', 'Past Lives, Future Healing: A Psychic Reveals the Secrets to Good Health and Great Relationships', 'Secrets and Mysteries of the World', "Sylvia Browne's Book of Angels", "Sylvia Browne's Journey of the Soul", "Sylvia Browne's Lessons For Life", 'Spiritual Connections: How to Find Spirituality Throughout All the Relationships in Your Life', 'Mother God: The Feminine Principle to Our Creator', 'Four to Score', 'High Five', 'Seven Up', 'Hard Eight', 'Two for the Dough', 'Ivanhoe', 'His Excellency: George Washington', 'The Bell Jar', 'Book of the Dead', 'Predator', 'Postmortem', 'Portrait of a Killer: Jack the Ripper - Case Closed', 'The Body Farm', 'Cause of Death', 'Herzog', 'Darkness', 'Suffer the Children', 'The Big Bad Wolf', 'The Four Agreements', 'Four Blondes', 'Lipstick Jungle', 'The Big Over Easy', 'Le Divorce', 'The Divine Comedy', 'Boy: Tales of Childhood', 'The Enormous Crocodile', 'The Magic Finger', 'The Wonderful Story of Henry Sugar and Six More', 'Going Solo', 'Charlie and the Great Glass Elevator', 'James and the Giant Peach', 'Danny the Champion of the World', 'My Uncle Oswald', 'Fantastic Mr. Fox', 'Little Altars Everywhere', 'The Power of Now: A Guide to Spiritual Enlightenment', 'Practicing the Power of Now: Essential Teachings, Meditations, and Exercises From The Power of Now', "A Supposedly Fun Thing I'll Never Do Again: Essays and Arguments", 'Oblivion: Stories', 'The Broom of the System', 'Consider the Lobster and Other Essays', 'Brief Interviews with Hideous Men', 'Infinite Jest', 'Ghostwritten', 'Number9Dream', 'One for the Money', 'Three to Get Deadly', 'Three Plums In One', 'Hot Six', 'Amsterdam', 'Atonement', 'Enduring Love', 'The Comfort of Strangers', 'Papillon', 'Tuesdays with Morrie', 'Like Water for Chocolate', 'Emma', 'The Mermaid Chair', 'Morality for Beautiful Girls', 'The Kalahari Typing School for Men', 'Tears of the Giraffe', 'The Tale of Genji', 'In the Company of Cheerful Ladies', 'The Good Husband of Zebra Drive', "The No. 1 Ladies' Detective Agency", 'The World According to Garp', "The Android's Dream", 'Do Androids Dream of Electric Sheep?', 'The Big Money', 'The Count of Monte Cristo', 'Crime and Punishment', 'La Dame aux Camélias', 'The Three Musketeers', 'The Club Dumas', 'The Way the Crow Flies', 'As the Crow Flies', 'As The Crow Flies', 'Blue Like Jazz: Nonreligious Thoughts on Christian Spirituality', 'The Poisonwood Bible', 'Unfinished Tales of Númenor and Middle-Earth', 'The Silmarillion', 'The Shipping News', 'Pardonable Lies', 'Naked Lunch', 'The Electric Kool-Aid Acid Test', 'The Glass Castle', 'Sex and the City', 'Founding Brothers: The Revolutionary Generation', "Suzanne's Diary for Nicholas", 'The Beach House', 'Even Cowgirls Get the Blues', 'A Portrait of the Artist as a Young Man', 'Reading Lolita in Tehran: A Memoir in Books', 'Lolita', 'Animal Farm', 'The Time Quartet Box Set', 'Lord of the Flies', 'The Good Soldier', 'The Good Soldier Švejk', 'Next', 'Airframe', 'Rising Sun', 'Timeline', 'The Andromeda Strain', 'Congo', 'Eaters of the Dead', 'Disclosure', 'Jurassic Park', 'The Great Train Robbery', 'Holy the Firm', 'Pygmalion', 'The Metamorphosis and Other Stories', 'Antigone', 'Gulliver’s Travels', "Ahab's Wife, or The Star-Gazer", 'Fear and Loathing in Las Vegas', "Fear and Loathing on the Campaign Trail '72", 'The Joy Luck Club', 'One Fish, Two Fish, Red Fish, Blue Fish', 'Horton Hears a Who!', 'The Lorax', 'I Can Read With My Eyes Shut!', 'The Cat in the Hat and Other Dr. Seuss Favorites', 'Pale Fire', "Nabokov's Pale Fire: The Magic of Artistic Discovery", 'A Friend of the Earth', 'The Year of Magical Thinking', 'Seduction and Betrayal: Women and Literature', 'Dead Cities: And Other Tales', 'The Bourne Identity', 'On the Banks of Plum Creek', 'The Betsy-Tacy Treasury', 'Betsy Was a Junior', 'Heaven to Betsy', 'Betsy-Tacy', 'Treason', 'Sarah', 'Speaker for the Dead', 'Enchantment: A Classic Fantasy with a Modern Twist', 'Taggerung', 'The Bellmaker', 'Pearls of Lutra', 'The Long Patrol', 'Salamandastron', 'The Legend of Luke', 'Mariel of Redwall', 'Rakkety Tam', 'Redwall', 'Castaways of the Flying Dutchman', 'Outcast of Redwall', 'Marlfox', 'Triss', 'Cloudy With a Chance of Meatballs', 'Deerskin', 'Sunshine', 'Anne of Green Gables', 'The Stories of Vladimir Nabokov', 'Laughter in the Dark', 'The Luzhin Defense', 'A Woman of Substance', 'West from Home: Letters of Laura Ingalls Wilder, San Francisco, 1915', 'Laura: The Life of Laura Ingalls Wilder', 'By the Shores of Silver Lake', 'Farmer Boy', 'Little Town on the Prairie', 'The Long Winter', 'Little House in the Big Woods', 'Eats, Shoots & Leaves: The Zero Tolerance Approach to Punctuation', 'Crow Lake', 'Shadow of the Giant', 'Xenocide', 'The Lost World', 'Fierce Invalids Home from Hot Climates', 'Jitterbug Perfume', 'Life, the Universe and Everything', 'The Restaurant at the End of the Universe', 'Last Chance to See', 'An Inconvenient Truth: The Planetary Emergency of Global Warming and What We Can Do About It', 'Lincoln', 'Creation', 'Julian', 'Burr', 'Comfort Me with Apples: More Adventures at the Table', 'The Red Pony', 'The Last Temptation of Christ', 'Desert Flower', 'I Feel Bad About My Neck, And Other Thoughts on Being a Woman', 'The White Masai', 'The Story of a Seagull and the Cat Who Taught Her to Fly', 'The Wanting Seed', 'The Doctor is Sick', 'Earthly Powers', 'Wind, Sand and Stars', 'Night Flight', 'Macbeth', 'A Year in the Life of William Shakespeare: 1599', 'World War Z: An Oral History of the Zombie War', 'The Hound of the Baskervilles', 'Sons of Destiny', 'Lord of the Shadows', 'The Lake of Souls', 'Killers of the Dawn', 'Freak the Mighty', 'Word Freak: Heartbreak, Triumph, Genius, and Obsession in the World of Competitive Scrabble Players', 'Tunnels of Blood', 'Vampire Mountain', 'Cirque du Freak: A Living Nightmare', 'Hunters of the Dusk', 'Jesus Freaks: Stories of Those Who Stood for Jesus, the Ultimate Jesus Freaks', "The Vampire's Assistant", 'Allies of the Night', 'Trials of Death', 'The Vampire Prince', 'I Hope They Serve Beer in Hell', 'Long Walk: The True Story of a Trek to Freedom', 'The Long Walk', 'The Smoke Jumper', "Rachel's Holiday", 'The Other Side of the Story', 'Fullmetal Alchemist, Vol. 5', 'The House of the Spirits', 'Until I Find You', 'Skinny Legs and All', 'Fried Green Tomatoes at the Whistle Stop Cafe', 'Confessions of a Shopaholic', 'Shopaholic and Sister', 'Shopaholic Takes Manhattan', 'Shopaholic Ties the Knot', 'Shopaholic & Baby', 'Phenomenology of Spirit', 'Plato: Complete Works', 'Midnight for Charlie Bone', "Devil's Embrace", 'Saving Fish from Drowning', 'Persepolis: The Story of a Childhood', 'Persepolis 2: The Story of a Return', 'Shadow Divers', 'Peter and the Shadow Thieves', "Ender's Shadow", 'The Poe Shadow', 'Shadow of the Hegemon', 'The Shadow Rising', 'Cast in Shadow', 'Shadows of the Empire', 'The Elephant Vanishes', 'Sputnik Sweetheart', 'Still Life with Woodpecker', 'Half Asleep in Frog Pajamas', 'Villa Incognito', 'Another Roadside Attraction', 'Mother Night', 'Galápagos', 'Timequake', 'Slapstick, or Lonesome No More!', 'Player Piano', 'Bluebeard', 'From the Dust Returned', 'Homage to Catalonia', 'Keep the Aspidistra Flying', 'Burmese Days', 'Fear of Flying', 'Love in the Time of Cholera', 'The Unbearable Lightness of Being', 'The Audacity of Hope: Thoughts on Reclaiming the American Dream', 'Mao: The Unknown Story', "Oracle Bones: A Journey Between China's Past and Present", 'The God of Small Things', 'Women in Love', 'A Walk in the Woods: Rediscovering America on the Appalachian Trail', 'The Fortress of Solitude', 'The Baron in the Trees', 'Italian Folktales', 'Invisible Cities', 'Six Memos for the Next Millennium', 'The Nonexistent Knight & The Cloven Viscount', 'Ten Days in the Hills', 'Crossing to Safety', 'Mrs. Frisby and the Rats of NIMH', 'King Rat', 'Blind Willow, Sleeping Woman', 'The Bookseller of Kabul', 'Prep', 'The End of Poverty: Economic Possibilities for Our Time', 'The Ground Beneath Her Feet', "The Moor's Last Sigh", 'East, West', 'Angels', 'Already Dead: A California Gothic', 'The Rules of Attraction', 'Glamorama', 'The Informers', 'Less Than Zero', 'The Grass Harp, Including A Tree of Night and Other Stories', 'The Cement Garden', 'The Woman in the Dunes', 'The Box Man', 'The Face of Another', 'Oracle Night', 'Homo Faber', 'The Wall', 'Being and Nothingness', 'The Age of Reason', 'No Exit and Three Other Plays', 'Youth in Revolt: The Journals of Nick Twisp, Book One', 'Flags of Our Fathers', 'Wayside School Is Falling Down', 'A Long Way Down', 'Mountain of Black Glass', 'Queen of Scots: The True Life of Mary Stuart', 'The Six Wives of Henry VIII', 'The Autobiography of Henry VIII: With Notes by His Fool, Will Somers', 'The Memoirs of Cleopatra', 'Dress Your Family in Corduroy and Denim', 'View with a Grain of Sand: Selected Poems', 'Jane Eyre', 'The Far Pavilions', 'Mountains Beyond Mountains: The Quest of Dr. Paul Farmer, a Man Who Would Cure the World', 'The Pleasure of Finding Things Out: The Best Short Works of Richard P. Feynman', 'The March of Folly', "FDR's Folly: How Roosevelt and His New Deal Prolonged the Great Depression", 'Folly', 'The Last of the Really Great Whangdoodles', 'Where the Red Fern Grows', 'Summer of the Monkeys', 'Hard-Boiled Wonderland and the End of the World', "He's Just Not That Into You: The No-Excuses Truth to Understanding Guys", "The Memory Keeper's Daughter", 'Ballet Shoes', 'Desolation Angels', 'The Mysterious Flame Of Queen Loana', 'History of Beauty', 'The Island of the Day Before', 'Baudolino', 'The Art of War', 'The Life and Times of the Thunderbolt Kid', 'Memoirs and Selected Letters', "Lisey's Story", 'Cell', 'On Writing: A Memoir of the Craft', 'King Dork', 'A Clash of Kings', 'The Colorado Kid', 'Roadwork', "Everything's Eventual", 'Pet Sematary', 'Desperation', 'Insomnia', 'Nightmares and Dreamscapes', 'Bag of Bones', 'Carrie', 'The Regulators', 'Cujo', 'Thinner', 'Black House', 'The Eyes of the Dragon', 'Misery', 'The Bachman Books', 'Rose Madder', 'Night Shift', 'Christine', 'When Genius Failed: The Rise and Fall of Long-Term Capital Management', 'The Historian', 'God Knows', 'Something Happened', 'The Moviegoer', 'The Garden of Eden', 'A Farewell to Arms', 'Recapitulation', 'Here Is New York', 'Under the Banner of Heaven: A Story of Violent Faith', "In Search of Captain Zero: A Surfer's Road Trip Beyond the End of the Road", 'Shopgirl', "Hell's Angels", 'Benjamin Franklin: An American Life', 'Einstein: His Life and Universe', 'Traveling Mercies: Some Thoughts on Faith', 'Harvesting the Heart', 'The Tenth Circle', 'Second Glance', 'Keeping Faith', 'Songs of the Humpback Whale', 'Salem Falls', 'The Pact', 'My Sister’s Keeper', 'Cold Mountain', 'For One More Day', 'The Virgin Suicides', 'Sophie’s World', 'Outlander', 'A Breath of Snow and Ashes', 'The Fiery Cross', 'The Sound and the Fury', 'Light in August', 'Selected Short Stories', 'The Town', 'Voyager', 'Lord John and the Private Matter', 'Eleven on Top', 'Dubliners', 'Finnegans Wake', 'The Flanders Panel', 'Henry and June: From "A Journal of Love": The Unexpurgated Diary of Anaïs Nin, 1931-1932', 'Delta of Venus', 'The Sex Lives of Cannibals: Adrift in the Equatorial Pacific', 'The Working Poor: Invisible in America', 'Digital Fortress', 'The Chronicles of Narnia', 'In the Time of the Butterflies', 'How the García Girls Lost Their Accents', 'The Sea, the Sea', 'The Unicorn', 'A Severed Head', 'The Wind-Up Bird Chronicle', 'The Hollow Man', 'Summer of Night', 'Carrion Comfort', 'The Rise of Endymion', 'Children of the Night', 'Norwegian Wood', 'A Wild Sheep Chase', 'After the Quake', 'The Dark Is Rising Sequence', 'Silver on the Tree', 'Under the Net', 'Song of Solomon', 'The Bluest Eye', '100 Love Sonnets', 'Sula', 'Tar Baby', "It Can't Happen Here", 'Main Street', "Captivating: Unveiling the Mystery of a Woman's Soul", 'Redeeming Love', 'Forever', 'Reunion', 'Redemption', "Where I'm Calling From: New and Selected Stories", 'What We Talk About When We Talk About Love', 'Short Cuts: Selected Stories', 'Will You Please Be Quiet, Please?', 'Cathedral', "In Pharaoh's Army: Memories of the Lost War", 'Old School', "This Boy's Life", 'We Wish to Inform You That Tomorrow We Will Be Killed with Our Families', 'The Color Purple', "Humboldt's Gift", 'The Promise', 'My Name Is Asher Lev', 'Mine', "Usher's Passing", 'Swan Song', 'Danse Macabre', 'The Girl Who Loved Tom Gordon', 'The Green Mile', 'Dreamcatcher', 'The Dead Zone', 'The Body', 'The Shining', '’Salem’s Lot', 'The Dark Half', 'Hearts in Atlantis', 'The Running Man', 'The Unabridged Journals of Sylvia Plath', 'American Pastoral', 'I Married a Communist', "Sabbath's Theater", 'The Counterlife', 'Terrorist', 'Couples', 'The Stories of John Cheever', 'Istanbul: Memories and the City', 'Snow', 'The Black Book', 'The White Castle', 'Vernon God Little', 'The English Patient', 'The Human Stain', 'Housekeeping', "All Aunt Hagar's Children: Stories", 'White Noise', 'End Zone', 'The Hotel New Hampshire', 'Missing Mom', 'Zombie', "Dicey's Song", 'The Hours', 'The Witching Hour', 'The Adventures of Augie March', 'Broken', 'Bitten', 'Haunted', 'Stolen', 'Moderato cantabile', 'Les jeux sont faits', 'The Myth of Sisyphus and Other Essays', 'The Plague', 'The Rebel', 'The Fall', 'I Who Have Never Known Men', 'Use of Weapons', 'The Algebraist', 'Excession', 'Complicity', 'Inversions', 'The Crow Road', 'An Accidental Man', 'Good Omens: The Nice and Accurate Prophecies of Agnes Nutter, Witch', 'Philosophical Investigations', 'Tractatus Logico-Philosophicus', 'Long Day’s Journey into Night', 'The Late Mattia Pascal', 'One, No One and One Hundred Thousand', 'Homecoming', 'Buried Child', 'Seven Plays', 'Memoirs of Hadrian', 'Ada, or Ardor: A Family Chronicle', 'Lord Jim', 'A Streetcar Named Desire', 'Saint Joan', 'Molloy / Malone Dies / The Unnamable', 'The Scarlet Letter', 'Beyond Good and Evil', 'The Partly Cloudy Patriot', 'The Lay of the Land', 'Journey to the End of the Night', 'Europe Central', "You Can't Go Home Again", 'Look Homeward, Angel', "Of Time and the River: A Legend of Man's Hunger in His Youth", 'The Naked and the Dead', "The Executioner's Song", 'The Armies of the Night: History as a Novel, the Novel as History', 'No Country for Old Men', 'The Idiot', 'Pilgrim at Tinker Creek', 'Plan B: Further Thoughts on Faith', 'Bird by Bird', "The Bonesetter's Daughter", "The Kitchen God's Wife", 'Tokyo-Montana Express', 'The Collected Stories', 'Losing Battles', 'Delta Wedding', 'The Spirit Catches You and You Fall Down: A Hmong Child, Her American Doctors, and the Collision of Two Cultures', 'Manufacturing Consent: The Political Economy of the Mass Media', 'The Source', 'Hawaii', 'Chesapeake', 'The Covenant', 'Marley and Me: Life and Love With the World’s Worst Dog', 'The Moon Is Down', 'The Transit of Venus', 'Du côté de chez Swann', 'A Kiss Before Dying', 'The Satanic Verses', 'The City of Falling Angels', 'A Separate Reality: Further Conversations with Don Juan', 'Journey to Ixtlan: The Lessons of Don Juan', 'The Art of Dreaming', 'The Gambler', 'Rebecca', 'Black Lamb and Grey Falcon', 'Operation Shylock: A Confession', 'Death of a Salesman', 'The Aeneid', 'The Castle of Otranto', 'Messenger', 'Gossamer', 'Gathering Blue', 'King Lear', 'The Turn of the Screw', 'The Turn of the Screw and Other Short Fiction', 'Much Ado About Nothing', 'Winter’s Tale', 'The Tempest', 'Othello', 'Julius Caesar', 'King Henry IV, Part 1', 'Alice in Wonderland', 'The Alexandria Quartet', 'Justine', 'Basket Case', 'Tourist Season', 'Sick Puppy', 'Flush', 'Double Whammy', 'Strip Tease', 'Skinny Dip', 'Hoot', 'The Celestine Prophecy', 'Cross', 'Judge & Jury', '3rd Degree', '2nd Chance', '1st to Die', "School's Out—Forever", 'Jack & Jill', 'Pop Goes the Weasel', 'Along Came a Spider', 'Kiss the Girls', 'London Bridges', 'The Angel Experiment', 'The Jester', 'When the Wind Blows', 'I Know Why the Caged Bird Sings', "All God's Children Need Traveling Shoes", 'What Was She Thinking? [Notes on a Scandal]', 'Eragon & Eldest', "James Joyce's Ulysses: A Study", 'A Complicated Kindness', 'The House of the Scorpion', 'Skeleton Crew', 'A Game of Thrones', 'A Feast for Crows', 'The Fairy Tales of Hermann Hesse', 'Son of a Witch', 'March', 'Tsubasa: RESERVoir CHRoNiCLE, Vol. 01', 'Death Note, Vol. 8: Target', 'Death Note, Vol. 1: Boredom', 'Death Note, Vol. 4: Love', 'Death Note, Vol. 5: Whiteout', 'Confluence', 'Death Note, Vol. 7: Zero', 'Death Note, Vol. 9: Contact', 'A Wizard of Earthsea', 'The Dispossessed: An Ambiguous Utopia', 'The Other Wind', 'Tales from Earthsea', 'Tehanu', 'The Tombs of Atuan', 'Catwings', 'The Farthest Shore', 'The Twelve Kingdoms: Sea of Shadow', 'Julie and Julia: 365 Days, 524 Recipes, 1 Tiny Apartment Kitchen', 'The Thousandfold Thought', 'Magician: Master', 'Magician: Apprentice', 'A Darkness At Sethanon', 'Lord of Light', 'The Doors of His Face, the Lamps of His Mouth', 'Terrier', 'The Woman Who Rides Like a Man', 'Alanna: The First Adventure', 'Emperor Mage', 'The Realms of the Gods', 'In the Hand of the Goddess', 'Wild Magic', 'Lioness Rampant', "The Botany of Desire: A Plant's-Eye View of the World", 'The Milly-Molly-Mandy Storybook', 'Geek Love', 'Knife of Dreams', 'A Crown of Swords', "Winter's Heart", 'The Fires of Heaven', 'A Beautiful Mind', 'Child of the Prophecy', 'The Well of Shades', 'Son of the Shadows', 'Daughter of the Forest', 'Wildwood Dancing', 'Foxmask', 'The Noonday Demon: An Atlas of Depression', 'One Good Knight', 'The Fairy Godmother', 'Arrows of the Queen', 'Phoenix and Ashes', 'Joust', "Arrow's Fall", 'Snow Country', 'Beauty and Sadness', 'Malgudi Days', 'The Art of Loving', 'The Three Stigmata of Palmer Eldritch', 'Jonathan Strange & Mr. Norrell', "The Liars' Club", 'Small Wonder', 'Prodigal Summer', 'Pigs in Heaven', 'English Passengers', "Iceland's Bell", 'No Great Mischief', 'So Long, See You Tomorrow', 'Carried Away: A Personal Selection of Stories', 'Runaway: Stories', 'Lives of Girls and Women', 'Almost Transparent Blue', 'Piercing', 'Coin Locker Babies', 'Black Swan Green', 'Chronicles, Volume One', 'Stranger in the Woods: A Photographic Fantasy', 'Rain of Gold', 'Bless Me, Ultima', 'Einstein’s Dreams', 'No Rest for the Wicked', 'A Hunger Like No Other', 'The spire, William Golding : notes', 'Kitty and the Midnight Hour', 'The Best Short Stories of O. Henry', 'Neverwhere', 'If Tomorrow Comes', 'Dangerous Angels', 'Echo', 'Eight Cousins', 'Please Kill Me: The Uncensored Oral History of Punk', 'A House Divided', 'Sons', 'The Red and the Black', 'The Charterhouse of Parma', "The King of Elfland's Daughter", 'Faust, First Part', 'The God Delusion', 'Good in Bed', 'In Her Shoes', 'A Scanner Darkly', 'Midnight’s Children', 'Last Man Standing', 'Plain Truth', 'Vanishing Acts', 'Nineteen Minutes', 'A Tree Grows in Brooklyn', 'Pride and Prejudice, Mansfield Park, Persuasion', 'The Complete Novels', 'Sense and Sensibility', "Who's Afraid of Virginia Woolf?", 'Mrs. Dalloway', "A Writer's Diary", 'Eden Close', 'Where Or When', 'Light on Snow', 'A Trip to the Stars', 'Labyrinth', 'Star Wars: Labyrinth of Evil', 'Odd Thomas', 'Brother Odd', 'Conversations with God: An Uncommon Dialogue, Book 1', 'The Passion', 'Sexing the Cherry', 'Lighthousekeeping', 'Written on the Body', 'Oranges Are Not the Only Fruit', 'Five Quarters of the Orange', 'Blackberry Wine', 'Gentlemen and Players', 'The Collectors', 'Saving Faith', 'The Camel Club', 'Absolute Power', 'The Ladies of Grace Adieu and Other Stories', 'A Girl Named Zippy: Growing Up Small in Mooreland, Indiana', 'Bridge of Birds', 'The Complete Maus', "Maus I: A Survivor's Tale: My Father Bleeds History", "Maus II: A Survivor's Tale: And Here My Troubles Began", 'Radical Chic & Mau-Mauing the Flak Catchers', 'The Two Towers', 'The Laughing Corpse', 'Exquisite Corpse', "Bored of the Rings: A Parody of J.R.R. Tolkien's Lord of the Rings", 'The Last Days of Dogtown', 'Night Mare', 'Dragon on a Pedestal', 'The Source of Magic', 'Magic Kingdom for Sale/Sold', 'Morgawr', 'Ilse Witch', 'Wizard at Large', 'The Elf Queen of Shannara', 'The Wishsong of Shannara', 'The Druid of Shannara', 'The Sword of Shannara', 'Ferdydurke', 'Cosmos', "The Midwife's Apprentice", 'Billy Budd, Sailor', 'Haiku: This Other World', 'Native Son', 'Cyrano de Bergerac', 'Inferno', 'The Stranger Beside Me: Ted Bundy: The Shocking Inside Story', 'The Kindness of Strangers', 'Stranger in the Forest: On Foot Across Borneo', 'Strangers', 'Strangers on a Train', 'A Happy Death', 'Caligula', 'Marvel 1602', 'The Amateur Marriage', 'The Bourne Supremacy', 'Sideways Stories from Wayside School', 'Sideways', 'Charms for the Easy Life', 'The Dress Lodger', 'Fugitive Pieces', 'Relativity: The Special and the General Theory', 'Mirror Mirror', 'State of Fear', 'Harry Potter and the Chamber of Secrets', 'An Instance of the Fingerpost', 'At First Sight', 'The Guardian', 'Nights in Rodanthe', 'The Notebook', 'The Falls', "The Gravedigger's Daughter", 'Blonde', 'Paradise Lost', "The Magician's Assistant", "The Dive from Clausen's Pier", "Now I Can Die in Peace: How ESPN's Sports Guy Found Salvation, with a Little Help from Nomar, Pedro, Shawshank and the 2004", 'A Dance to the Music of Time: 1st Movement', 'A Dance to the Music of Time: 2nd Movement', 'Titan: The Life of John D. Rockefeller, Sr.', 'Alexander Hamilton', 'Empire of the Senseless', 'Dairy Queen', 'The Boleyn Inheritance', 'The Constant Princess', 'The Favored Child', "The Virgin's Lover", 'Meridon', 'Wideacre', 'Ella Minnow Pea: A Novel in Letters', 'The Hot Zone: The Terrifying True Story of the Origins of the Ebola Virus', 'Sister of My Heart', 'Case Histories', 'Tales of the City', 'The Intuitionist', 'John Henry Days', 'Why Are All The Black Kids Sitting Together in the Cafeteria?', 'The Magus', 'A Murder Is Announced', 'And Then There Were None', 'Sleeping Murder', 'The Hollow', 'Evil Under the Sun', 'Crooked House', 'The Big Four', 'The Body in the Library', 'Witness for the Prosecution and Selected Plays', 'The A.B.C. Murders', 'Death in the Clouds', 'The Murder of Roger Ackroyd', 'Murder at the Vicarage', 'The Moving Finger', 'The Mysterious Affair at Styles', "Hercule Poirot's Christmas", 'The Mysterious Mr. Quin', 'Murder in Mesopotamia', 'Appointment with Death', 'Endless Night', 'Carry On, Jeeves', 'Peril at End House', 'The Husband', 'Sole Survivor', 'Forever Odd', 'The Taking', 'Life Expectancy', "Patty Jane's House of Curl", 'Daughter of Fortune', 'My Invented Country: A Nostalgic Journey Through Chile', 'The Infinite Plan', 'The Book of Imaginary Beings', 'The Barrytown Trilogy: The Commitments / The Snapper / The Van', 'Democracy in America', 'Steppenwolf', 'The Glass Bead Game', 'The Sorrows of Young Werther', 'The Cat Who Walks Through Walls', 'The Man Who Sold the Moon', 'Citizen of the Galaxy', 'The Moon Is a Harsh Mistress', 'The Final Solution', 'The Mysteries of Pittsburgh', "The Yiddish Policemen's Union", 'Summerland', 'Gun, With Occasional Music', 'Beach Music', 'The Prince of Tides', "Michael Crichton's Jurassic World: Jurassic Park / The Lost World", 'Fragile Things: Short Fictions and Wonders', 'The Good Fairies of New York', 'Smoke and Mirrors: Short Fiction and Illusions', 'Death: The High Cost of Living', 'Stardust', 'A Single Man', 'The Love of the Last Tycoon', 'Walden', 'Children of God', 'When the Lion Feeds', 'Birds of Prey', '1632', 'Invisible Man', 'Kingdom Come', '13 Little Blue Envelopes', 'My Ishmael', 'Coraline', 'One Day in the Life of Ivan Denisovich', 'Go Tell It on the Mountain', 'Love and Louis XIV: The Women in the Life of the Sun King', 'My Ántonia', 'Marie Antoinette: The Journey', 'The Chocolate War', 'A Yellow Raft in Blue Water', 'The Invisible Man', 'The Friday Night Knitting Club', 'Starship Troopers', 'Darkly Dreaming Dexter', 'Dracula', 'The Crucible: A Play in Four Acts', 'Piercing the Darkness', 'This Present Darkness', 'Till We Have Faces', 'The Demon-Haunted World: Science as a Candle in the Dark', "Black Holes & Time Warps: Einstein's Outrageous Legacy", 'Misty of Chincoteague', 'Five Go to Mystery Moor', 'Five Go Adventuring Again', 'Five on a Treasure Island', 'The Faraway Tree Stories', 'The Enchanted Wood', 'A Girl of the Limberlost', 'Blues People: Negro Music in White America', 'All About Love: New Visions', 'The Penelopiad', 'The Robber Bride', 'The Tommyknockers', 'Dead Beat', "Franz Kafka's The Castle", 'The Trial', 'Waiting for Godot', 'Labyrinths: Selected Stories & Other Writings', 'The House of Mirth', "Treason's Harbour", 'In the Heart of the Sea: The Tragedy of the Whaleship Essex', 'South of the Border, West of the Sun', 'Dance Dance Dance', 'Underground: The Tokyo Gas Attack and the Japanese Psyche', 'After Dark', 'In the Miso Soup', 'Foucault’s Pendulum', 'Accelerando', 'Glasshouse', 'Notes from Underground, White Nights, The Dream of a Ridiculous Man, and Selections from The House of the Dead', "Fyodor Dostoyevsky's Crime and Punishment", 'Collected Fictions', "The Ancestor's Tale: A Pilgrimage to the Dawn of Evolution", 'The Code Book: The Science of Secrecy from Ancient Egypt to Quantum Cryptography', 'Right Ho, Jeeves', 'The World of Jeeves', 'His Dark Materials', 'The Amber Spyglass', 'A Wind in the Door', 'Romeo and Juliet', 'The Fugitive Game: Online with Kevin Mitnick', 'The Pillow Book', 'The Cyberiad', "Christianity for Modern Pagans: Pascal's Pensées - Edited, Outlined & Explained", 'Oliver Twist', 'Gargantua and Pantagruel', 'Critique of Pure Reason', 'The Anti-Christ', 'It', 'Flowers for Algernon', 'The Death of Ivan Ilych', 'The Lost Years of Merlin', 'The Dante Club', 'Gone with the Wind', 'The Wind Done Gone', 'Utopia', 'The Left Hand of Darkness', 'The Rule of Four', 'The Painted Bird', 'Frankenstein', 'The Return of the King', 'A Room of One’s Own', 'Dr. Faustus', 'Rosencrantz and Guildenstern Are Dead', 'The Cay', 'Summer of My German Soldier', "Touching the Void: The True Story of One Man's Miraculous Survival", 'The Player of Games', 'Brick Lane', 'Half of a Yellow Sun', "Beauty's Punishment", 'I, Claudius', 'I, Claudius/Claudius the God', 'In Search of Lost Time', 'The Guermantes Way', 'Sodom and Gomorrah', 'The Captive / The Fugitive', 'Money', 'Dead Babies', 'Orlando', 'The Years', 'Three Guineas', 'The Rum Diary', 'The Warrior Prophet', 'Polgara the Sorceress', 'The Forest House', 'Confessions of an Ugly Stepsister', 'Homicide: A Year on the Killing Streets', 'The Honourable Schoolboy', 'Absolute Friends', "Smiley's People", 'The Constant Gardener', 'A Perfect Spy', 'The Little Drummer Girl', 'What the Bleep Do We Know!?: Discovering the Endless Possibilities for Altering Your Everyday Reality', 'I Am the Messenger', 'The Book Thief', 'The Nicomachean Ethics', 'Politics', 'Middlemarch', 'Fathers and Sons', 'Moral Politics: How Liberals and Conservatives Think', 'The Divine Comedy of Dante Alighieri, Volume 2: Purgatorio', 'Opened Ground', 'New Selected Poems 1966-1987', 'Pippi Longstocking', 'Pippi in the South Seas', 'The Children of Noisy Village', 'The Brothers Lionheart', "Ronia, the Robber's Daughter", 'The Tale of Peter Rabbit', 'The Complete Tales', 'The Tale of Jemima Puddle-Duck', 'The Epic of Gilgamesh', 'Candide', 'The Decline and Fall of the Roman Empire', "They Cage the Animals at Night: The True Story of an Abandoned Child's Struggle for Emotional Survival", 'All-American Girl', 'Ready or Not', 'The Face on the Milk Carton', 'In the Country of Last Things', 'The Music of Chance', 'The Spy Who Came In from the Cold', 'Eat, Pray, Love', 'The Schopenhauer Cure', 'The Mandarins', 'Les Mandarins: Tome 1', 'The Brothers K', 'Where the Wild Things Are', 'Koko', 'Shadowland', 'Ghost Story', 'Birds of America: Stories', 'Such a Long Journey', 'Family Matters', 'Without Remorse', 'Debt of Honor', 'The Teeth of the Tiger', 'Executive Orders', 'The Bear and the Dragon', 'The Hunt for Red October', 'Red Rabbit', 'The Echo Maker', 'The Last Lion: Winston Spencer Churchill: Visions of Glory, 1874-1932', 'Riddle-Master', "Dragon's Fire", "A Child's Garden of Verses", 'Have Space Suit—Will Travel', 'Adam Bede', 'The Mill on the Floss', 'Halloween', 'The Art of Seduction', 'When Nietzsche Wept', 'Crown Duel', 'The Bloody Crown of Conan', 'Le deuxième sexe, I', 'Flash Fire', 'Already Dead', 'Caught Stealing', 'Fables: 1001 Nights of Snowfall', 'Fables, Vol. 4: March of the Wooden Soldiers', 'Fables, Vol. 1: Legends in Exile', 'Prodigal Son', 'The Five Dysfunctions of a Team', 'Aesop’s Fables', 'Cat & Mouse', 'The Winds of War', 'The Forever War', 'Forever Peace', 'Mystic River', 'A Drink Before the War', 'Shutter Island', 'The Black Dahlia', 'Triptych', 'Blindsighted', 'Kisscut', 'A Faint Cold Fear', 'The Ruins', 'A Simple Plan', 'Without Fail', 'The Princess Bride', 'The Devil in the White City', 'The Sicilian', 'Omerta', 'The Godfather', 'From a Buick 8', "Imperial Life in the Emerald City: Inside Iraq's Green Zone", 'Culture and Imperialism', 'Strange Pilgrims: Twelve Stories', 'Gossip Girl', 'Count Zero', 'This Lullaby', 'Lullaby', 'Lullabies for Little Criminals', 'Stargirl', 'Veronica', 'Diary', 'Rant: An Oral Biography of Buster Casey', 'Clown Girl', 'Invisible Monsters', 'Life After God', 'Shampoo Planet', 'Pattern Recognition', 'Spook Country', 'Burning Chrome', 'The Miracle Worker: A Play', 'Neuromancer', 'The Wolves in the Walls', 'We3', 'Batman: Arkham Asylum - A Serious House on Serious Earth', 'Transmetropolitan, Vol. 1: Back on the Street', 'Transmetropolitan, Vol. 3: Year of the Bastard', 'The Fabric of the Cosmos: Space, Time, and the Texture of Reality', 'The Origin of Species', 'The Origin of Consciousness in the Breakdown of the Bicameral Mind', 'Sit, Walk, Stand', 'Lies, Inc.', 'Flow My Tears, the Policeman Said', 'Ubik', 'The Collected Stories of Philip K. Dick 1: The Short Happy Life of the Brown Oxford', 'Simulacra and Simulation', 'Existentialism and Human Emotions', 'The Perks of Being a Wallflower', 'The Trial and Death of Socrates', 'Bookends', 'Summer Sisters', 'The Gap Into Vision: Forbidden Knowledge', 'Skylight Confessions', 'Incantation', 'Practical Magic', 'The Complete Stories', 'Amerika', "The Complete Grimm's Fairy Tales", 'La casa de Bernarda Alba', "Prisoner's Dilemma", 'The Gold Bug Variations', 'Plowing the Dark', "Time's Arrow", 'Night Train', 'How to Travel With a Salmon & Other Essays', 'The River Why', 'Size 12 Is Not Fat', 'How to Be Popular', 'Valentine Princess', "Every Boy's Got One", 'Darkest Hour', 'Boy Meets Boy', "Naomi and Ely's No Kiss List", "Tailchaser's Song", 'The Consolations of Philosophy', 'The Art of Travel', 'Miracle at St. Anna', 'Dragons of Winter Night', "The Alchemist's Daughter", 'Mythology', 'From Hell', 'Love Is a Dog from Hell', 'The Truth with Jokes', 'Lies & the Lying Liars Who Tell Them: A Fair & Balanced Look at the Right', 'Rush Limbaugh is a Big Fat Idiot', 'Oh, the Things I Know!: A Guide to Success, or, Failing That, Happiness', 'Sir Gawain and the Green Knight, Pearl, and Sir Orfeo', 'Nausicaä of the Valley of the Wind, Vol. 6', 'Nausicaä of the Valley of the Wind, Vol. 5', 'Nausicaä of the Valley of the Wind, Vol. 7', 'The Absolute Sandman, Volume 1', 'The Sandman, Vol. 1: Preludes & Nocturnes', 'Green Eggs and Ham', 'The Silence of the Lambs', "King Solomon's Mines", 'The Infinite', 'Nightmare House', 'Breeder', 'El coronel no tiene quien le escriba', 'Of Love and Other Demons', 'Chronicle of a Death Foretold', 'The General in His Labyrinth', 'The Autumn of the Patriarch', 'The Complete Poems', 'The Marriage of Heaven and Hell', 'The Complete Stories and Poems', 'Nova Express', 'The Soft Machine', 'Junky', 'Queer', 'Trainspotting: A Screenplay', 'Trainspotting', 'Marabou Stork Nightmares', 'Filth', 'Crabwalk', 'Street Magic', 'Wolf-Speaker', 'The Golden Notebook', 'Gödel, Escher, Bach: An Eternal Golden Braid', 'The Merchant of Venice', 'Catherine, Called Birdy', 'Charlotte’s Web', 'The Runaway Jury', 'Alice’s Adventures in Wonderland / Through the Looking-Glass', 'The Black Ice', 'Skellig', 'Les Misérables', 'The Trumpet of the Swan', 'Ella Enchanted', 'The Bronze Bow', 'Peony in Love', 'Chuck Klosterman IV: A Decade of Curious People and Dangerous Ideas', 'The Place of Dead Roads', 'The Complete Aubrey/Maturin Novels', 'The Adventures of Tom Sawyer and Adventures of Huckleberry Finn', 'The Adventures of Tom Sawyer', 'The Art of Living: The Classical Manual on Virtue, Happiness and Effectiveness', 'The Prose Edda: Norse Mythology', "Don't Let's Go to the Dogs Tonight: An African Childhood", 'Without a Hero: Stories', 'T.C. Boyle Stories', 'Drop City', 'Water Music', 'East Is East', 'The Tortilla Curtain', 'Riven Rock', 'Descent of Man', 'The Road to Wellville', 'If the River Was Whiskey', 'Greasy Lake & Other Stories', 'Budding Prospects: A Pastoral', 'So Yesterday', 'Specials', 'The Secret Hour', 'Touching Darkness', 'Pretties', 'Blue Noon', 'Uglies', 'The Castle of Llyr', 'The Book of Three', 'The High King', 'Taran Wanderer', 'The Black Cauldron', 'Paula', 'Zorro', 'House of Leaves', 'The Areas of My Expertise: An Almanac of Complete World Knowledge Compiled with Instructive Annotation and Arranged in Useful Order', 'The Complete Calvin and Hobbes', 'The Calvin and Hobbes Tenth Anniversary Book', "It's a Magical World", 'The Indispensable Calvin and Hobbes', 'The Days Are Just Packed', 'The Illustrated Man', 'The Sot-Weed Factor', 'The Floating Opera / The End of the Road', 'Demian. Die Geschichte von Emil Sinclairs Jugend', "Dragon's Kin", 'The Masterharper of Pern', 'Interstellar Pig', 'The Mouse and His Child', 'City of God', 'The March', 'Lost', 'Greenwitch', 'Either/Or: A Fragment of Life', "Lincoln's Dreams", 'Doomsday Book', 'The Map That Changed the World: William Smith and the Birth of Modern Geology', 'The Professor and the Madman: A Tale of Murder, Insanity and the Making of the Oxford English Dictionary', 'Mrs. Piggle-Wiggle', 'Liberalism is a Mental Disorder', "The Sandman, Vol. 2: The Doll's House", 'The Sandman, Vol. 3: Dream Country', 'The Sandman, Vol. 4: Season of Mists', 'The Sandman, Vol. 5: A Game of You', "The Sandman, Vol. 8: Worlds' End", 'The Sandman, Vol. 10: The Wake', 'The Sandman, Vol. 7: Brief Lives', 'The Sandman, Vol. 6: Fables & Reflections', 'The Fuck-Up', 'Uzumaki: Spiral into Horror, Vol. 1', 'Uzumaki: Spiral into Horror, Vol. 2.', 'Uzumaki: Spiral Into Horror, Vol. 3', 'Blankets', 'A Personal Matter', 'Silence', 'The Dark Mirror', 'March Upcountry', 'The Moons of Jupiter', 'Out of the Dust', 'Out of Egypt', 'Out of the Silent Planet', 'Bastard Out of Carolina', 'Out', 'Grotesque', "Nick & Norah's Infinite Playlist", "The Dirt: Confessions of the World's Most Notorious Rock Band", 'The Orange Girl', 'Through a Glass, Darkly', 'Escape from Freedom', 'Sellevision', "How the Irish Saved Civilization: The Untold Story of Ireland's Heroic Role from the Fall of Rome to the Rise of Medieval Europe", 'An Inquiry into the Nature and Causes of the Wealth of Nations', 'The Collected Stories of Isaac Bashevis Singer', 'The Slave', 'The Postman Always Rings Twice', 'The Road to Jerusalem', 'Beneath the Wheel', 'Lost Illusions', 'Bright Lights, Big Ass', "Morrigan's Cross", 'Angels Fall', 'Slowness', 'The Joke', 'Emotional Intelligence: Why It Can Matter More Than IQ', 'Out of Africa / Shadows on the Grass', 'The Music of Dolphins', 'Sisters', 'Lightning', 'The Claiming of Sleeping Beauty', 'The Darling', 'The Sweet Hereafter', 'The Custom of the Country', 'Something Rotten', 'Lost in a Good Book', 'The Well of Lost Plots', 'First Among Sequels', 'The Eyre Affair', 'Confessions', 'Ten Thousand Light-Years from Home', 'Bitter Is the New Black: Confessions of a Condescending, Egomaniacal, Self-Centered Smartass, Or, Why You Should Never Carry A Prada Bag to the Unemployment Office', 'The Third Policeman', 'Pope Joan', 'Glass Houses', 'Hiroshima', 'Silent Spring', 'Back Bay', 'The Death of Virgil', 'Leaves of Grass', 'The Liberated Bride', 'State of Denial', 'Left Behind', 'Armageddon: The Cosmic Battle of the Ages', 'Desecration', 'Nicolae', 'The Remnant', 'A Tale of Love and Darkness', "Bury the Chains: Prophets and Rebels in the Fight to Free an Empire's Slaves", 'The Wicked Day', 'The Moon-Spinners', 'Nine Coaches Waiting', 'Living My Life, Vol. 2', 'The Neverending Story', 'Rhinocéros', 'Eugene Onegin', 'Postcards', 'Accordion Crimes', 'The Sacred and the Profane: The Nature of Religion', 'The Birth of Venus', 'Gabriel García Márquez: One Hundred Years of Solitude', 'The Know-It-All', 'Blue Shoes and Happiness', 'The Sea of Monsters', 'The Lightning Thief', 'Inkheart', 'Inkspell', 'And the Band Played On: Politics, People, and the AIDS Epidemic', 'The Fermata', 'Dark Star Safari: Overland from Cairo to Cape Town', 'Last of the Wilds', 'Voice of the Gods', 'Priestess of the White', "The Magicians' Guild", 'The High Lord', 'Election', "Life: A User's Manual", 'The Hawk Is Dying', 'And to Think That I Saw It on Mulberry Street', 'The Blue Flowers', 'Dead Souls', 'Diary of a Madman and Other Stories', 'In the Shadow of Young Girls in Flower', 'Remembrance of Things Past: Volume II - The Guermantes Way & Cities of the Plain', 'Time Regained', 'Germinal', "The Ladies' Paradise", 'J R', 'Dragon Wing', 'Sculpting in Time', 'The Soulforge', 'Dragonsong', 'Dragonsinger', 'Dragondrums', 'Immortality', 'The Art of the Novel', 'American Psycho', 'Stone of Farewell', 'To Green Angel Tower', 'The War of the Flowers', "Caliban's Hour", 'City of Golden Shadow', 'Falling Man', 'Cosmopolis', 'Take a Thief', "Magic's Price", 'In Persuasion Nation', 'The Cheese Monkeys', "Magic's Pawn", "Magic's Promise", 'The Last Herald-Mage', "His Master's Voice", 'Fiasco', 'Eden', 'Ballad of the Whiskey Robber: A True Story of Bank Heists, Ice Hockey, Transylvanian Pelt Smuggling, Moonlighting Detectives, and Broken Hearts', 'Influence: The Psychology of Persuasion', 'The Varieties of Religious Experience', 'The Gospel According to Jesus Christ', 'The Prince', 'The Raven Prince', 'Dark Prince', 'The Princes of Ireland', 'Dragonology: The Complete Book of Dragons', "His Majesty's Dragon", 'Red Dragon', 'Lamb: The Gospel According to Biff, Christ’s Childhood Pal', 'A Pale View of Hills', 'The Remains of the Day', 'An Artist of the Floating World', 'When We Were Orphans', 'Behind the Scenes at the Museum', 'Emotionally Weird', 'Cruddy', 'The Twelve Caesars', 'Twelve Angry Men', 'The Secret History', 'Choke', 'More Than a Mistress', 'The Last Unicorn', "The Color of Water: A Black Man's Tribute to His White Mother", "The Weight Loss Cure They Don't Want You to Know About", 'Make Way for Ducklings', "Charlie Wilson's War: The Extraordinary Story of How the Wildest Man in Congress and a Rogue CIA Agent Changed the History of our Times", 'Animal Liberation', 'Our Band Could Be Your Life: Scenes from the American Indie Underground 1981-1991', "Cursor's Fury", "Sharpe's Fury", 'Furies of Calderon', 'Woken Furies', "Self-Made Man: One Woman's Journey Into Manhood and Back Again", 'Baghdad without a Map and Other Misadventures in Arabia', 'Candy', 'The End of Faith: Religion, Terror, and the Future of Reason', 'Conspiracy of Fools', 'Everyone Worth Knowing', 'The History of the Siege of Lisbon', 'Foundation', 'Second Foundation', 'Foundation and Empire', 'Foundation and Earth', 'Down and Out in the Magic Kingdom', 'The End of the Affair', 'Postwar: A History of Europe Since 1945', 'My Life as a Man', 'Patrimony', 'Goodbye, Columbus', 'The Dying Animal', 'The Ministry of Special Cases', 'One Day in September: The Full Story of the 1972 Munich Olympics Massacre and the Israeli Revenge Operation "Wrath of God"', "The Pilgrim's Progress", "Scott Pilgrim's Precious Little Life", 'Scott Pilgrim vs. The World', "Little Pilgrim's Progress: From John Bunyan's Classic", 'Famous Last Words', 'The Wars', 'The Rising Tide', 'Rise to Rebellion', 'Illusions: The Adventures of a Reluctant Messiah', "There's No Such Place As Far Away", 'The Bridge Across Forever: A True Love Story', 'The Island of Dr. Moreau', 'The Maltese Falcon', 'Red Harvest', 'Prelude to Foundation', 'The Naked Sun', 'Elric of Melniboné', 'A River Runs Through It and Other Stories', 'The Book of the Dead', 'The Walking Dead, Book One', 'The Brief History of the Dead', 'Gloriana', "Rediscovering God in America: Reflections on the Role of Faith in Our Nation's History and Future", 'A Light in the Attic', 'Where the Sidewalk Ends', 'Falling Up', 'The Missing Piece', 'The Missing Piece Meets the Big O', 'Lafcadio, the Lion Who Shot Back', 'Marked', 'Divine By Mistake', 'Cast in Courtlight', "Brighid's Quest", 'Goddess of the Rose', 'Goddess of Spring', 'Goddess of the Sea', "Elphame's Choice", "Mistral's Kiss", 'The Harlequin', 'A Stroke of Midnight', 'Micah', 'A Caress of Twilight', 'Bloody Bones', 'Burnt Offerings', 'Seduced by Moonlight', 'The Killing Dance', 'Cerulean Sins', 'Blue Moon', 'Narcissus in Chains', 'For a Few Demons More', 'A Fistful of Charms', 'The Good, the Bad, and the Undead', 'Every Which Way But Dead', 'Dead Witch Walking', 'Incubus Dreams', 'The Lunatic Cafe', 'Circus of the Damned', 'Guilty Pleasures', 'The Republic', 'Blood and Chocolate', 'In the Forests of the Night', 'Falcondance', 'Hawksong', 'Demon in My View', 'Shattered Mirror', 'Midnight Predator', 'The Communist Manifesto', 'Paddy Clarke Ha Ha Ha', 'Why Orwell Matters', 'Shooting an Elephant', 'Ape and Essence', 'Pnin', 'Speak, Memory', 'The Hunchback of Notre-Dame', 'Readings for Meditation and Reflection', 'Space Trilogy: Out of the Silent Planet / Perelandra / That Hideous Strength', 'Meditations', 'Darkness at Noon', 'Up in the Air', 'The Complete Essays', 'The Great Indian Novel', 'The Woman Warrior', 'The Bean Trees', 'Brideshead Revisited', 'The Loved One', 'Under the Volcano', 'The Life and Death of Anne Boleyn', 'Lila: An Inquiry Into Morals', 'Mr. Maybe', 'The Dew Breaker', 'I Capture the Castle', 'Shirley', 'Villette', 'Back When We Were Grownups', 'Breathing Lessons', 'The Razor’s Edge', 'The Matarese Circle', 'Bleak House', 'Our Mutual Friend', 'Little Dorrit', 'The Bourne Ultimatum', 'Nemesis', 'Dance of the Gods', 'Theatre', 'Blood Canticle', 'The Vampire Armand', 'Violin', 'Cry to Heaven', 'The Tale of the Body Thief', 'Blackwood Farm', 'Memnoch the Devil', 'Lasher', 'Blood And Gold', 'Pandora', 'Lovelock', 'Children of the Mind', 'Maps in a Mirror: The Short Fiction of Orson Scott Card', 'With No One as Witness', 'A Great Deliverance', 'For the Sake of Elena', 'The Twits', 'Far From the Madding Crowd', 'The Rainbow', 'Of Human Bondage', 'Romancero gitano', 'Blow Fly', 'Innocent Erendira and Other Stories', 'The Will to Power', "The Story of Philosophy: The Lives and Opinions of the World's Greatest Philosophers", 'Walking the Bible: A Journey by Land Through the Five Books of Moses', 'Lady Chatterley’s Lover', 'Sons and Lovers', "Albion's Seed: Four British Folkways in America", 'All Creatures Great and Small', 'All Creatures Great and Small / All Things Bright and Beautiful', 'Stiff: The Curious Lives of Human Cadavers', 'Horse Heaven', 'White Oleander', 'The Mephisto Club', 'Vanish', 'The Sinner', 'Body Double', 'Tess of the D’Urbervilles', 'The Surgeon', 'The Dragons of Eden: Speculations on the Evolution of Human Intelligence', "A Primate's Memoir: A Neuroscientist's Unconventional Life Among the Baboons", 'Mutant Message Down Under', 'Dry', 'Hannibal Rising', 'Hannibal', 'Velocity', 'Watchers', 'The Bad Place', 'Fear Nothing', 'Phantoms', 'Intensity', 'The Good Guy', 'The Door to December', 'Alone With the Horrors: The Great Short Fiction, 1961-1991', 'The Pelican Brief', 'Angels Flight', 'Blood Work', 'The Closers', 'The Poet', 'The Black Echo', 'Alone', 'A Time to Kill', 'The Fall of the House of Usher and Other Tales', 'Hunger', 'Pan', 'Books of Blood: Volumes One to Three', 'The Great and Secret Show', 'The Thief of Always', 'Sacrament', 'The Return of the Native', 'Clear and Present Danger', 'Patriot Games', "Gerald's Game", 'The Diary of Ellen Rimbauer: My Life at Rose Red', 'At the Mountains of Madness', 'At the Mountains of Madness and Other Tales of Terror', 'From the Earth to the Moon', 'Journey to the Center of the Earth', 'The Mysterious Island', 'Communion: The Female Search for Love', 'Goodnight Moon', 'Sister Outsider: Essays and Speeches', 'The Secret of the Old Clock', 'Underworld: Evolution', 'Murder in the Cathedral', 'Paint it Black', 'Kitchen Confidential: Adventures in the Culinary Underbelly', 'The Hidden Messages in Water', 'Jennifer Government', 'Parallel Worlds: A Journey through Creation, Higher Dimensions, and the Future of the Cosmos', 'Fluke: Or, I Know Why the Winged Whale Sings', 'You Suck', 'Island Sequined Love Nun', 'A Dirty Job', 'Practical Demonkeeping', 'The Lust Lizard of Melancholy Cove', 'Comics and Sequential Art', 'The Coming of Conan the Cimmerian', 'Twenty Thousand Leagues Under the Sea', 'One Thousand White Women: The Journals of May Dodd', 'The Elements of Style', 'Hell House', 'A Stir of Echoes', 'What Dreams May Come', 'That Was Then, This Is Now', 'Tex', 'Shantaram', 'Katherine', '4th of July', 'Saving the World and Other Extreme Sports', 'The Undomestic Goddess', 'Can You Keep a Secret?', 'Welcome to Temptation', 'Faking It', "The Lion's Game", 'Plum Island', 'By the Rivers of Babylon', 'Gold Coast', 'Thirteen Moons', 'Story of a Girl', 'The Namesake', "The Girls' Guide to Hunting and Fishing", 'The 9/11 Commission Report: Final Report of the National Commission on Terrorist Attacks Upon the United States', 'Citizen Girl', 'Just So Stories', 'Captains Courageous', 'Jimmy Corrigan: The Smartest Kid on Earth', 'The Waste Land', 'The Waste Lands', 'Peter and the Starcatchers', 'Peter Pan in Scarlet', 'Peter Pan', 'The Pinhoe Egg', 'Echoes', 'Silver Wedding', 'The Glass Lake', 'The Copper Beech', 'The School Skeleton', 'Gertrude', 'Henry IV, Part Two', 'Doctor Faustus', 'Many Lives, Many Masters: The True Story of a Prominent Psychiatrist, His Young Patient, and the Past Life Therapy That Changed Both Their Lives', 'In Praise of Shadows', 'Small Gods', 'Wintersmith', 'The Wee Free Men', 'The Color of Magic', 'The Truth: Stage Adaptation', 'Sourcery', 'A Hat Full of Sky', 'Soul Music', 'The Last Hero', 'Wyrd Sisters', 'The Light Fantastic', 'Equal Rites', 'Interesting Times: The Play', 'Moving Pictures', 'Monstrous Regiment', 'Reaper Man', 'Only You Can Save Mankind', 'Feet of Clay', 'Lords and Ladies', 'Hogfather', 'The Amazing Maurice and His Educated Rodents', 'Carpe Jugulum', 'If Chins Could Kill: Confessions of a B Movie Actor', 'Treasure of Khan', 'The Damnation Game', 'All I Really Need to Know I Learned in Kindergarten', 'The Dragon Reborn', "My Father's Dragon", 'The Sum of All Fears', 'Der Richter und sein Henker', 'Battle Cry of Freedom', "Splinter of the Mind's Eye", 'Rashōmon and Seventeen Other Stories', 'How to Talk to Anyone: 92 Little Tricks for Big Success in Relationships', 'The Red Badge of Courage & The Veteran', 'The Red Badge of Courage', 'Lord of Chaos', 'Dirt Music', 'Remember', 'Star Wars: Allegiance', 'Path of Destruction', 'The Star Wars Trilogy', 'Star Wars: Revenge of the Sith', 'Traitor', 'Black Elk Speaks: Being the Life Story of a Holy Man of the Oglala Sioux', 'Cash', 'Without Feathers', 'The Language of God: A Scientist Presents Evidence for Belief', 'Coming to Peace with Science: Bridging the Worlds Between Faith and Biology', 'Pathways to Bliss: Mythology and Personal Transformation', 'The Power of Myth', 'The Beatles: The Biography', "The Love You Make: An Insider's Story of the Beatles", 'Lover Eternal', 'The Tin Drum', 'The Capture', 'Lair of the White Worm', 'The Lady of the Shroud', 'Ghost in the Shell', 'My Horizontal Life: A Collection of One-Night Stands', 'The Big Nowhere', 'My Dark Places', 'American Tabloid', 'The 7 Habits of Highly Effective People: Powerful Lessons in Personal Change', 'The Speed of Trust: The One Thing that Changes Everything', "The Ghost Map: The Story of London's Most Terrifying Epidemic—and How It Changed Science, Cities, and the Modern World", 'Black Sun Rising', 'Tales of H.P. Lovecraft', 'The Best of H.P. Lovecraft: Bloodcurdling Tales of Horror and the Macabre', 'Wonderful Life: The Burgess Shale and the Nature of History', 'Narrative of the Life of Frederick Douglass', 'The Wolves of Willoughby Chase', 'The Woman in Black', 'The Shell Seekers', 'The Miraculous Journey of Edward Tulane', 'The Tiger Rising', 'The Tale of Despereaux', 'Rules of Prey', 'Certain Prey', "If I Have a Wicked Stepmother, Where's My Prince?", 'The Heart Is a Lonely Hunter', 'Playing in the Dark: Whiteness and the Literary Imagination', 'Their Eyes Were Watching God', 'Little Children', 'The Secret Life of Bees', 'Wicked: The Life and Times of the Wicked Witch of the West', 'The Other Boleyn Girl', 'Happiness', 'Henry V', 'The Lost Colony', 'Evelina', 'The Call of the Wild / White Fang', 'Are You There God? It’s Me, Margaret', 'Blubber', 'Tales of a Fourth Grade Nothing', 'Forever...', 'Wifey', 'Things Fall Apart', "A Doll's House", 'Letters from the Earth: Uncensored Writings', 'The Long Hard Road Out of Hell', "White Man's Justice, Black Man's Grief", 'Orlando Furioso', 'Alas, Babylon', 'On the Beach', 'The Art of Happiness', 'Moll Flanders', 'The Last of the Mohicans', 'Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets', 'Black Hole: A Graphic Novel', 'Ring', "Fermat's Enigma", 'The Handmaid’s Tale', "Tell Me How Long the Train's Been Gone", 'Giovanni’s Room', 'If Beale Street Could Talk', 'Another Country', 'Starring Sally J. Freedman as Herself', 'Women', 'Ham on Rye', 'Notes of a Dirty Old Man', 'Tales of Ordinary Madness', 'Hollywood', 'Bite Me If You Can', 'Love Bites', 'A Quick Bite', 'Magic Bites', 'The Stolen Child', 'Sixth Grade Secrets', 'Holes', 'All Things Bright and Beautiful', 'Collected Plays 1944-1961', 'Pedro Páramo', 'Follow Your Heart', 'The Princess Diaries', 'Fun Home: A Family Tragicomic', 'Dedication', '1491: New Revelations of the Americas Before Columbus', 'Deep Storm', 'The Wheel of Darkness', 'Reliquary', 'The Cabinet of Curiosities', 'Still Life With Crows', 'The Gormenghast Novels', 'Titus Groan', 'The Milagro Beanfield War', 'Minion', 'Different Seasons', 'Rita Hayworth and Shawshank Redemption', 'Mockingbird Wish Me Luck', 'The Return of the Dancing Master', 'One Step Behind', 'The White Lioness', 'The Beauty Myth', 'How to Read Literature Like a Professor', 'Reading Like a Writer: A Guide for People Who Love Books and for Those Who Want to Write Them', 'Matilda', 'Matilda Bone', 'The Boy in the Striped Pajamas', 'The Alienist', 'Thunderstruck', 'Sacred Games', 'Riding the Bus with My Sister: A True Life Journey', 'Blink: The Power of Thinking Without Thinking', 'The Goat, or Who is Sylvia?', 'The Unconsoled', 'Dermaphoria', 'The Queen of Attolia', 'The King of Attolia', "Are You There, Vodka? It's Me, Chelsea", 'A Year in Provence', 'The Crimson Petal and the White', "Kushiel's Justice", "Kushiel's Avatar", 'Wyrms', 'Seventh Son', 'Pastwatch: The Redemption of Christopher Columbus', 'This Is The Way The World Ends', 'Lost Boys', 'Lean Mean Thirteen', 'To the Nines', 'The Chessmen of Mars', 'The Warlord of Mars', 'Thuvia, Maid of Mars', 'A Princess of Mars', 'Tarzan of the Apes', 'The Thirteenth Tale', 'Altered Carbon', 'Thirteen', 'Cities of the Plain', 'Outer Dark', 'Harvest', "Histoire d'O | Story of O", 'The Valley of Horses', 'How Green Was My Valley', 'Time and Again', 'Downsize This!', 'Stupid White Men', 'Mindset: The New Psychology of Success', 'Tales of the Dying Earth', 'The Demon Princes, Volume One: The Star King, The Killing Machine, The Palace of Love', "Suldrun's Garden", 'Madouc', 'Theodore Rex', 'The Rise of Theodore Roosevelt', 'Shadow & Claw', 'From Bauhaus to Our House', "The Rotters' Club", 'The Penultimate Truth', 'Stand on Zanzibar', 'World of Wonders', 'A Thousand Acres', 'Possession', 'Magnificat', 'As Nature Made Him: The Boy Who Was Raised as a Girl', 'Beauty: A Retelling of the Story of Beauty and the Beast', 'Inside My Heart: Choosing to Live With Passion And Purpose', 'The Prestige', 'The Stones of Summer', 'My Side of the Mountain', 'The Jungle', 'The Jungle Books', 'The Key to Rebecca', 'Atlantis Found', 'Sahara', 'I, Robot', 'The Robots of Dawn', 'The Caves of Steel', 'The Gods Themselves', 'Robot Visions', 'Twilight', 'Fantastic Beasts and Where to Find Them', 'The Children of Men', 'Scarlet Feather', 'The Lilac Bus', 'Nights of Rain and Stars', 'Light a Penny Candle', 'Evening Class', 'Circle of Friends', 'Solo', "Shakespeare's Sonnets", 'Richard III', 'Outside the Dog Museum', 'The Land of Laughs', 'Baby Proof', 'Something Blue', 'Something Borrowed', 'P.S. Longer Letter Later', 'The Christmas Shoes', 'Karlsson on the Roof', "Band of Brothers: E Company, 506th Regiment, 101st Airborne from Normandy to Hitler's Eagle's Nest", 'God Emperor of Dune', "In Harm's Way: The Sinking of the USS Indianapolis and the Extraordinary Story of Its Survivors", 'Betsy and Tacy Go Downtown', 'Cotton in My Sack', 'We Were Soldiers Once... and Young: Ia Drang - The Battle that Changed the War in Vietnam', 'The Autobiography of Martin Luther King, Jr.', 'Black Like Me', 'As You Like It', 'Resurrection', 'The Fall of Berlin 1945', 'The Haj', 'Mila 18', 'Trinity', 'Exodus', 'Lover Revealed', 'Dark Lover', 'Lover Awakened', 'All Things Wise and Wonderful', 'Tai-Pan', 'Alaska', 'War and Remembrance', 'A Long Way Gone: Memoirs of a Boy Soldier', 'White Fang', 'The Call of the Wild, White Fang and Other Stories', 'The Sea Wolf', 'The Essential Calvin and Hobbes: A Calvin and Hobbes Treasury', 'A Picture Book of Anne Frank', 'Who Was Anne Frank?', 'Nations and Nationalism since 1780: Programme, Myth, Reality', 'Not Without My Daughter', 'Unspeakable Truths and Happy Endings: Human Cruelty and the New Trauma Therapy', 'Are You Afraid of the Dark?', 'Nothing Lasts Forever', 'Tell Me Your Dreams', 'The Sky is Falling', 'Rage of Angels', 'Master of the Game', 'Where Are the Children?', 'You Belong To Me', 'God Is Not Great: How Religion Poisons Everything', 'Thomas Jefferson: Author of America', 'Forty Stories', 'Flowers in the Attic', 'Criss Cross', 'Raven', 'Music in the Night', 'Runaways', 'The Strange Case of Dr. Jekyll and Mr. Hyde and Other Stories', 'The Once and Future King', 'American Splendor: The Life and Times of Harvey Pekar', 'Ice Haven', 'The People of Paper', 'The Gunslinger', 'Water for Elephants', 'The Master', 'Structure and Interpretation of Computer Programs', 'The Queen of the Damned', 'Interview with the Vampire', 'Vampire Chronicles: Interview with the Vampire, The Vampire Lestat, The Queen of the Damned (Anne Rice)', 'Merrick', 'The Feast of All Saints', 'The Vampire Lestat', 'When Christ and His Saints Slept', 'The Monk Who Sold His Ferrari: A Fable About Fulfilling Your Dreams and Reaching Your Destiny', 'The Monk Who Sold His Ferrari', 'Phantom', 'Debt of Bones', 'Chainfire', "The Sword of Truth, Boxed Set I: Wizard's First Rule, Blood of the Fold, Stone of Tears", "Wizard's First Rule", 'Blood of the Fold', 'Naked Empire', 'Shadow of a Dark Queen', 'Magician', 'Faerie Tale', 'Promise Me', 'Deal Breaker', 'Gone for Good', 'The Woods', 'Tell No One', 'Suite Française', 'Portnoy’s Complaint', 'The Quiet Game', 'Small Island', 'Shield of Thunder', 'Odes to Common Things', "The Winter's Tale", 'The Looking Glass Wars', 'The Looking Glass War', 'Monster', 'The Monster at the End of this Book', 'The Civil War: A Narrative', 'The Civil War, Vol. 1: Fort Sumter to Perryville', 'Reading in the Dark', 'The Friendship Test', 'Alphabet Weekends', 'Velvet Elvis: Repainting the Christian Faith', 'Switch Bitch', 'Kissing the Witch: Old Tales in New Skins', 'Slammerkin', 'Life is Elsewhere', 'Fablehaven', 'Pawn of Prophecy', "The Belgariad Boxed Set: Pawn of Prophecy / Queen of Sorcery / Magician's Gambit / Castle of Wizardry / Enchanters' End Game", "Enchanters' End Game", "Magician's Gambit", 'The Moon and Sixpence', "Time's arrow, or, The nature of the offence", 'Code Orange', 'The Glass Books of the Dream Eaters', 'Mansfield Park', 'Ship of Magic', 'The Mad Ship', 'Ship of Destiny', "Fool's Fate", 'Golden Fool', 'The Shape of Snakes', 'Fingersmith', 'Five Children and It', 'A Passage to India', 'I Never Promised You a Rose Garden', 'The Neutronium Alchemist 2: Conflict', 'The Reality Dysfunction', 'Judas Unchained', "Pandora's Star", 'Fallen Dragon', 'Arthur & George', 'Love, etc.', 'The Supernaturalist', 'The Wish List', "Undaunted Courage: The Pioneering First Mission to Explore America's Wild Frontier", 'Poor People', 'The Canterville Ghost', 'Girl With Curious Hair', 'The Ballad of the Sad Café and Other Stories', 'The Anatomy of Peace: Resolving the Heart of Conflict', 'Borderlands/La Frontera: The New Mestiza', 'The Blind Owl', 'The Book of Disquiet', 'Eldest', 'The Skull Beneath the Skin', 'The White Hotel', 'The Waves', 'Tender Is the Night', 'This Side of Paradise', 'For Whom the Bell Tolls', 'Julio Cortázar: Rayuela', 'In Watermelon Sugar', 'Getting the Love You Want: A Guide for Couples', 'Love Is a Mix Tape: Life and Loss, One Song at a Time', 'Letters to a Young Poet', 'Magic Study', 'An Invisible Sign of My Own', 'The Ox-Bow Incident', 'The Chaneysville Incident', 'Ask the Dust', 'The Portable Dorothy Parker', 'Suvashun', 'Cat and Mouse', 'The Divan', 'The Complete Fairy Tales', 'Funny in Farsi: A Memoir of Growing Up Iranian in America', 'The Last Templar', "The Women's Room", 'Call for the Dead', 'A Small Town in Germany', 'The Chemistry of Death', 'The Orchard Keeper', 'The Shelters of Stone', 'An Echo in the Darkness', "Survivor's Quest", 'The Foundation Trilogy', 'Alexander and the Terrible, Horrible, No Good, Very Bad Day', 'Bad Childhood---Good Life: How to Blossom and Thrive in Spite of an Unhappy Childhood', 'A Journal of the Plague Year', 'Surfacing', 'Oryx and Crake', '100 Strokes of the Brush Before Bed', 'Tithe', 'Uncle Tom’s Cabin', 'Go Ask Alice', 'Wasted: A Memoir of Anorexia and Bulimia', 'Waiting Period', 'The Demon', 'Requiem for a Dream', 'The Taming of the Shrew', "St. Lucy's Home for Girls Raised by Wolves", 'Dinosaurs: Dead or Alive?', 'La Santa Muerte', 'Storm Front', 'Number the Stars', 'The Freedom Writers Diary', 'Man and Boy', 'Chocolat', 'The Tough Guide to Fantasyland', 'Castle in the Air', "Archer's Goon", 'Year of the Griffin', 'Drawing Blood', 'Mister Monday', 'The Abhorsen Trilogy Box Set', 'Lirael', "Shade's Children", 'Born in Blood and Fire: A Concise History of Latin America', 'The Day I Swapped My Dad for Two Goldfish', 'The Sandman: Endless Nights', 'I Know What You Did Last Summer', 'I Wish Someone Were Waiting for Me Somewhere', 'Hunting and Gathering', 'Charlie Bone and the Beast', 'Charlie Bone and the Hidden King', 'The Tricksters', 'Obernewtyn', 'Empress of the World', 'The Black Jewels Trilogy: Daughter of the Blood, Heir to the Shadows, Queen of the Darkness', 'The Invisible Ring', 'Daughter of the Blood', 'Heir to the Shadows', 'Queen of the Darkness', 'Jumper', 'How to Breathe Underwater', 'Night Watch', 'Jingo', 'The Last Continent', 'Thief of Time', 'Carmilla', 'Skeleton Man', 'My Family and Other Animals', 'Hell', 'A Lost Lady', 'The Song of the Lark', 'The Solitaire Mystery', 'Revolutionary Road', 'The Easter Parade', 'Young Hearts Crying', 'Collected Works: Wise Blood / A Good Man Is Hard to Find / The Violent Bear It Away / Everything That Rises Must Converge / Essays and Letters', 'A Good Man Is Hard to Find and Other Stories', 'Wise Blood', 'The Violent Bear It Away', 'Blindsight', 'The Spell of the Sensuous: Perception and Language in a More-Than-Human World', 'The No Spin Zone: Confrontations with the Powerful and Famous in America', 'How to Bring Your Children to Christ... & Keep Them There: Avoiding the Tragedy of False Conversion', 'The Tao of Pooh', 'The Diary of a Young Girl', 'Travels with My Aunt', 'Brighton Rock', 'I Am the Cheese', 'By Grand Central Station I Sat Down and Wept', 'The Darkest Hour', 'The Bloody Chamber and Other Stories', 'New Moon', 'My Life', 'The Third Chimpanzee: The Evolution and Future of the Human Animal', "The Unabridged Devil's Dictionary", 'The Selected Writings of Edgar Allan Poe', 'The Concrete Blonde', 'The Last Coyote', 'El psicoanalista', "Three Cups of Tea: One Man's Mission to Promote Peace ... One School at a Time", 'Notes from Underground', 'Those Who Save Us', 'A Conspiracy of Paper', 'The Coffee Trader', 'The Bride of Lammermoor', 'Rise and Shine', 'Les Liaisons dangereuses', 'The Stranger', 'Ten Thousand Lovers', 'The Ten Thousand Things', 'Ten Thousand Lives', 'a', 'The Secret Adversary', 'Cloud Atlas', 'The Napoleon of Notting Hill', 'BUtterfield 8', 'The Pride of the Peacock', 'In a Free State', 'Whale Talk', 'An Abundance of Katherines', "Building Harlequin's Moon", 'The Mammoth Hunters', 'A Sound of Thunder and Other Stories', 'Homeland', 'Dandelion Wine', 'The Contender', 'The Complete Robot', 'Big Sur', 'Kitchen', 'F. Scott Fitzgerald: The Great Gatsby', 'The House on the Strand', 'Song of the Silent Snow', 'The Room', 'Last Exit to Brooklyn', 'The Complete Far Side, 1980–1994', 'A Suitable Boy', 'An Equal Music', 'Northanger Abbey', 'Hot Water Music', 'Burning in Water, Drowning in Flame', "'night, Mother", 'Farewell Waltz', 'The Book of Illusions', 'Little Big Man', 'Everyman', 'You Slay Me', "A Girl's Guide to Vampires", 'Jude the Obscure', 'Jude', 'Mister God, This is Anna', 'Dombey and Son', "Farnham's Freehold", 'Between Planets', 'The Number of the Beast', 'Candyfreak: A Journey through the Chocolate Underbelly of America', 'The Mark', 'East of the Mountains', 'Cat’s Eye', 'The Griffin & Sabine Trilogy', 'The Growing Pains of Adrian Mole', 'The Secret Diary of Adrian Mole, Aged 13 3/4', 'Adrian Mole and the Weapons of Mass Destruction', 'The Last Song of Dusk', 'Black Spring', 'The Wisdom of the Heart', 'Tam Lin', "The Samurai's Garden", 'Women of the Silk', 'Yearnings: Embracing the Sacred Messiness of Life', 'Letter to a Christian Nation', 'Misquoting Jesus: The Story Behind Who Changed the Bible and Why', 'Rebel Angels', 'The Rebels of Ireland', 'Dr. Jekyll and Mr. Hyde', 'The Strange Case of Dr. Jekyll and Mr. Hyde and Other Tales of Terror', "Wittgenstein's Mistress", 'The Sluts', 'Closer', 'Frisk', 'My Loose Thread', 'Guide', 'Johnny Got His Gun', 'DMT: The Spirit Molecule', 'Food of the Gods: The Search for the Original Tree of Knowledge', 'Living My Life', 'Mythologies', 'Raising Cain: Protecting the Emotional Life of Boys', 'The Truth About Forever', 'Just Listen', 'The Conquest of Happiness', 'Religion and Science', 'The Decameron', 'Capitalism and Freedom', 'Thus Spoke Zarathustra', 'Speech Acts: An Essay in the Philosophy of Language', 'Tenderness', "Old Man's War", 'Existentialism is a Humanism', 'Siddhartha', 'Ten Days that Shook the World', 'Eichmann in Jerusalem: A Report on the Banality of Evil', 'Strength to Love', 'Claudius the God and His Wife Messalina', 'The Price of Salt, or Carol', 'The Autobiography of Benjamin Franklin', 'Wild Seed', 'The Stepford Wives', 'Beowulf', 'Batman: The Dark Knight Strikes Again', 'Parable of the Sower', 'The Painted Drum', 'The Secret', 'The Sunlight Dialogues', 'The Hellbound Heart', 'Weaveworld', 'The Woman Who Walked Into Doors', 'Seize the Day', 'Henderson the Rain King', 'Tartuffe', 'Varjak Paw', 'Flight', 'The Lone Ranger and Tonto Fistfight in Heaven', 'The Toughest Indian in the World', 'Indian Killer', 'The Ogre', 'The Collected Poems of W.B. Yeats', 'Hiroshima mon amour', 'Death in Venice', 'Death in Venice and Other Tales', 'Gates of Paradise', 'Nightwood', 'Duino Elegies and The Sonnets to Orpheus', 'Duino Elegies', "The Children's Hospital", 'I Have a Dream: Writings and Speeches That Changed the World', 'Hopscotch', '62: A Model Kit', 'Libro de Manuel', 'Cronopios and Famas', 'El túnel', 'Walk Two Moons', 'Zorba the Greek', 'Hacia la Fundación', "Hellstrom's Hive", 'The Great Dune Trilogy', 'Maktub', "What's So Amazing About Grace?", 'Disappointment with God', 'The Age of Innocence', 'The War of the End of the World', 'Travesuras de la niña mala', 'The Feast of the Goat', 'Conversation in the Cathedral', 'The Green House', 'Endgame & Act Without Words', 'The Double', 'Among the Believers : An Islamic Journey', 'Mein Kampf', 'When Hitler Stole Pink Rabbit', 'Around the World in Eighty Days', 'Contacting Your Spirit Guide', 'The Prisoner of Zenda', 'The Man in the Iron Mask', 'Falling Leaves', 'Silas Marner', 'Streets of Laredo', 'Texasville', 'Oil!', "She's Not There: A Life in Two Genders", 'Cockpit', 'Levels of the Game', 'Encounters with the Archdruid', 'La catedral del mar', 'The Tin Roof Blowdown', 'Live from New York: An Uncensored History of Saturday Night Live', 'The Piano Tuner', 'The Mask of Command', 'Intellectuals: From Marx and Tolstoy to Sartre and Chomsky', 'Modern Times: The World from the Twenties to the Nineties', 'Woody Allen: A Biography', 'House of Chains', 'Gardens of the Moon', 'Deadhouse Gates', 'Black Hawk Down: A Story of Modern War', 'Goodbye to All That', 'The Crimson Labyrinth', 'Jealousy & In the Labyrinth', 'The Last Lion: Winston Spencer Churchill: Alone, 1932-40', 'Beyond Freedom and Dignity', 'A Maggot', 'The French Lieutenant’s Woman', 'Living History', 'Sweet Thursday', 'In Dubious Battle', 'The Anatomy Lesson', 'The Proper Care and Feeding of Husbands', 'Gone For Soldiers', 'Love and Respect: The Love She Most Desires; The Respect He Desperately Needs', 'Strengths Finder 2.0', 'The Gift of Fear: Survival Signals That Protect Us from Violence', "The Traveler's Gift: Seven Decisions that Determine Personal Success", 'The Purpose Driven Life: What on Earth Am I Here for?', 'A Severe Mercy: A Story of Faith, Tragedy, and Triumph', 'Double Indemnity', 'Stumbling on Happiness', 'Empire of the Sun', 'You Are Special', 'The New Strong-Willed Child', 'The Mayor of Casterbridge', 'Fatherland', 'Aura', 'La tregua', 'Downbelow Station', 'País de las sombras largas', 'Fools Crow', 'Jayber Crow', 'Giants in the Earth', 'The Treasure of the Sierra Madre', 'L.A. Confidential', "The Moon's a Balloon", 'Tao Te Ching', '365 Tao: Daily Meditations', 'Battle Royale', 'Lonesome Traveler', 'The Illuminatus! Trilogy', 'Seven Pillars of Wisdom: A Triumph', 'Swords and Deviltry', 'The Watchman', 'Alias Grace', 'Grave Sight', 'The Sight', 'Fire Bringer', 'Eulalia!', 'For Colored Girls Who Have Considered Suicide / When the Rainbow Is Enuf', 'No Time to Say Goodbye: Surviving The Suicide Of A Loved One', "Fish: A Memoir of a Boy in a Man's Prison", 'Promise at Dawn', 'From Dawn to Decadence: 500 Years of Western Cultural Life, 1500 to the Present', 'چراغ\u200cها را من خاموش می\u200cکنم', 'The Elementary Particles', 'The Awakening', 'Whatever', 'Journals', 'A Beleaguered City: and Other Tales of the Seen and the Unseen', 'David Copperfield', 'The Ghost of the Lantern Lady', 'Bartleby & Co.', "Sandry's Book", "Tris's Book", 'The Runaway Bunny', 'Trunk Music', 'Zalacaín, el aventurero', "Crossworld: One Man's Journey into America's Crossword Obsession", 'Dear and Glorious Physician', 'A Pillar of Iron', 'Eugénie Grandet', 'Père Goriot', 'Chess Story', 'La metamorfosis', 'The Talisman', "The Golem's Eye", "Ptolemy's Gate", 'The Bartimaeus Trilogy Boxed Set', 'The Terror and Other Stories', 'The Three Impostors and Other Stories', 'Los años con Laura Díaz', "A Skeleton Key to Finnegans Wake: Unlocking James Joyce's Masterwork", 'The Lost Steps', 'El siglo de las luces', 'The Poor Mouth', 'The Best of Myles', 'The Emperor: Downfall of An Autocrat', 'Lapidarium', 'The Authoritative Calvin and Hobbes: A Calvin and Hobbes Treasury', 'To the Lighthouse', 'Vineland', 'Cosmicomics', 'Jewels of the Sun', 'Valley of Silence', 'Dance Upon the Air', 'The Gift', 'Special Delivery', 'The Ghost', 'Sunset in St. Tropez', 'Wings', 'Secrets', 'Remembrance', 'Second Chance', 'Family Album', 'Accident', 'Safe Harbour', 'The Ranch', 'Wanderlust', 'Thurston House', 'The Telling', 'Changes', 'The Lathe of Heaven', 'The Sound of the Mountain', '300', 'Batman: The Dark Knight Returns', 'Batman: Year One', 'Tomorrow in the Battle Think on Me', 'Lucia, Lucia', 'Mapp and Lucia', 'The Collected Ghost Stories of E.F. Benson', 'Groundwork of the Metaphysics of Morals', 'Mr.Palomar', 'La ciudad y los perros', 'Ozma of Oz', 'The Haunted Vagina', 'The Shadow of the Torturer', 'Peace', 'The Urth of the New Sun', 'Halo: The Fall of Reach', 'Corazón tan blanco', 'Winner of the National Book Award', 'The Ruins of Gorlan', 'Love in the Ruins', 'Coming Home', 'Poison Study', 'El camino', 'Las ratas', 'A Month in the Country', 'A Summons to Memphis', 'A Child Called "It"', 'The Accidental Tourist', 'Blood Brothers', 'Fledgling', "Lilith's Brood", 'Dawn', 'Kindred', 'Parable of the Talents', 'Possessing the Secret of Joy', 'The Temple of My Familiar', 'Now Is the Time to Open Your Heart', 'A Language Older Than Words', 'Endgame, Vol. 1: The Problem of Civilization', 'Endgame, Vol. 2: Resistance', 'The Country Under My Skin: A Memoir of Love and War', 'Autobiography of Red', 'Ringworld', 'Silk', 'Novecento. Un monologo', 'The Winter Queen', 'A Little History of the World', 'The Selfish Gene', 'The Extended Phenotype: The Long Reach of the Gene', 'The Structure of Scientific Revolutions', "Mr. Popper's Penguins", 'The Open Society and Its Enemies - Volume Two: Hegel and Marx', 'The Poverty of Historicism', 'The Varieties of Scientific Experience: A Personal View of the Search for God', 'Pale Blue Dot: A Vision of the Human Future in Space', 'Billions & Billions: Thoughts on Life and Death at the Brink of the Millennium', 'Contact', 'Bonjour tristesse', 'La colmena', 'La vida de Lazarillo de Tormes', 'A Night to Remember', 'Memory', 'Komarr', 'The Curse of Chalion', 'Beguilement', 'A Civil Campaign', 'Shards of Honour', 'Paladin of Souls', 'Barrayar', "The Warrior's Apprentice", 'Mirror Dance', 'Young Miles', "Freedom's Choice", 'All the Weyrs of Pern', "Freedom's Landing", 'The Rowan', 'Dragonsblood', 'Moreta: Dragonlady of Pern', 'Crystal Line', 'Dragonflight', 'Jack of Shadows', 'A Night in the Lonesome October', "The Queen's Gambit", 'The City of Dreaming Books', 'The 13½ Lives of Captain Bluebear', 'Rumo & His Miraculous Adventures', 'The Swiss Family Robinson', 'In the Company of the Courtesan', 'The Singing Creek Where the Willows Grow', 'A Storm of Swords', 'Sword in the Storm', 'Tirano Banderas', 'The Prince and the Pauper', "The Icewind Dale Trilogy Collector's Edition", 'Thud!', 'The Keep', 'Conservatives Without Conscience', 'American Power and the New Mandarins: Historical and Political Essays', 'On Power and Ideology: The Managua Lectures', 'Spring Snow', 'Confessions of a Mask', 'Patriotism', 'The Temple of the Golden Pavilion', 'Sun & Steel', 'The Sound of Waves', 'Forbidden Colors', "Shakey: Neil Young's Biography", 'The Human Factor', 'Ghost World', 'La vieja sirena', 'The Time Ships', '2666', 'The Savage Detectives', 'The Man Who Laughs', 'Fernando Pessoa and Co.: Selected Poems', 'Poems of Fernando Pessoa', 'Niebla', 'The Dunwich Horror and Others', 'Lizard Music', '3001: The Final Odyssey', 'Popular Music from Vittula', 'Message From Nam', 'The Man Who Mistook His Wife for a Hat and Other Clinical Tales', 'The Fifth Elephant', 'The Last Report on the Miracles at Little No Horse', 'Trout Fishing in America', 'The Irresistible Revolution: Living as an Ordinary Radical', 'Spark of Life', 'Sorcery & Cecelia: or The Enchanted Chocolate Pot', 'Guards! Guards!', 'Pyramids', 'Eric', 'Going Postal', 'The White Mountains', 'Another Fine Myth', 'Galileo', 'The Good Woman of Setzuan', 'A Northern Light', 'An Anthropologist on Mars: Seven Paradoxical Tales', 'The Family Tree', 'A World Out of Time', 'The Forge of God', 'Dancing Wu Li Masters: An Overview of the New Physics', 'Reflex', 'D is for Deadbeat', 'A Is for Alibi', "Time's Eye", 'Whispers', 'Midnight', 'Confessions of a Crap Artist', 'Amok and Other Stories', 'A Dog Year: Twelve Months, Four Dogs, and Me', 'A Good Dog: The Story of Orson, Who Changed My Life', 'The Frog Princess', 'The Penultimate Peril', 'The Grim Grotto', 'The End', 'The Complete Wreck', 'The Hostile Hospital', 'The Miserable Mill', 'Christ Stopped at Eboli: The Story of a Year', 'Adolf Hitler', 'Love Comes Softly', 'The Magician’s Nephew', 'The Silver Chair', 'Kallocain', 'Anne of Windy Poplars', 'The Perfect Husband', 'From the Corner of His Eye', 'Across Five Aprils', 'The Postcard', 'The Crossroad', 'A Crackup at the Race Riots', 'Flow: The Psychology of Optimal Experience', 'Rage', 'Gitanjali', 'Starfish', 'Die for Love', 'Sharp Objects', 'Necroscope', 'Magic for Beginners', 'Stranger Things Happen', 'The Crystal Shard', 'Sojourn', 'I, Lucifer', 'Evolution', 'Moab Is My Washpot', 'Only the Paranoid Survive: How to Exploit the Crisis Points that Challenge Every Company and Career', "L'anno di Don Camillo", 'Trans-Atlantyk', 'The Wretched of the Earth', 'Los renglones torcidos de Dios', 'Relic', 'By Possession', 'Contempt', 'Dead Poets Society', 'Our Knowledge of the External World', 'The Love Poems of Rumi', 'Tonto, muerto, bastardo e invisible', 'The Third Wave', 'Touch the Dark', 'The Collected Poems of Emily Dickinson', 'The Last of the Wine', 'Fire from Heaven', 'The Persian Boy', 'Let Your Life Speak: Listening for the Voice of Vocation', 'The Outsider', 'Sybil: The Classic True Story of a Woman Possessed by Sixteen Personalities', 'The Analyst', 'The Birthday of the World and Other Stories', 'The Earthsea Quartet', 'Death at La Fenice', 'Die Krone der Welt', 'The Swarm', 'Gilead', 'Beggars in Spain', 'Dragons of Spring Dawning', 'Dragonlance Chronicles', 'Bitten & Smitten', "The Dark Elf Trilogy Collector's Edition", 'Elantris', 'The Final Empire', 'The Well of Ascension', 'Pani Jeziora', 'Czas pogardy', 'The Vor Game', 'Swordspoint', "Fool's Errand", 'Perdido Street Station', 'Un Lun Dun', 'The Scar', 'The Winter King', 'Excalibur', 'Enemy of God', 'Lords of the North', 'The Last Kingdom', 'The Pale Horseman', "The Archer's Tale", 'The Clone Republic', 'The Green Pearl', 'Brida', 'And the Ass Saw the Angel', 'Espedair Street', 'Girl, Interrupted', 'Momo', 'The Power of Your Subconscious Mind', 'The Clown', 'The Man Who Loved Clowns', 'The Book of Lost Things', 'The Lost Thing', 'Made to Stick: Why Some Ideas Survive and Others Die', 'Milkweed', 'Z for Zachariah', 'The Wanderer', 'A Far Cry from Kensington', 'The Girls of Slender Means', 'The Third Witch', 'Rich Dad, Poor Dad', 'A Small Place', 'Bomarzo', 'El astillero', 'Set in Darkness', 'The Lost Honor of Katharina Blum', 'Billiards at Half-Past Nine', 'The Train Was on Time', 'Konfidenz', 'Small World', 'The Immoralist', 'The Counterfeiters', 'Running Wild', 'Crash', 'Concrete Island', 'Cocaine Nights', 'Super-Cannes', 'On the Road', 'Absurdistan', '2001: A Space Odyssey', '2010: Odyssey Two', 'The Gulag Archipelago 1918–1956', 'Territory', 'The Bicentennial Man and Other Stories', 'The Dice Man', 'Northern Lights', "Dracula's Guest and Other Weird Tales", 'The Graduate', 'Black Mass', 'The Sandman, Vol. 9: The Kindly Ones', 'Push', 'Stupeur et tremblements', 'Grand Expectations: The United States, 1945-1974', 'New and Selected Poems, Volume One', 'Uniform Justice', 'Jonathan Livingston Seagull', 'The Seekers', 'The Furies', 'At Home in Mitford', 'At Home in Mitford / A Light in the Window / These High, Green Hills / Out to Canaan / A New Song / A Common Life', 'Shepherds Abiding', 'In This Mountain', 'Moon Called', 'Sewer, Gas and Electric: The Public Works Trilogy', 'Set This House in Order', 'A Killing Frost', 'The Dead of Night', 'Tomorrow, When the War Began', 'The Funny Thing Is...', 'My Point... And I Do Have One', 'Ghost Wars: The Secret History of the CIA, Afghanistan, and Bin Laden from the Soviet Invasion to September 10, 2001', 'Angels in America', 'Free Culture: The Nature and Future of Creativity', 'Restless', 'Cat on a Hot Tin Roof', 'Off Armageddon Reef', 'The Worst Hard Time: The Untold Story of Those Who Survived the Great American Dust Bowl: A National Book Award Winner', 'Intruder in the Dust', 'When Darkness Comes', 'Living a Beautiful Life: 500 Ways to Add Elegance, Order, Beauty and Joy to Every Day of Your Life', 'Dalva', 'People of the Deer', 'The Sociopath Next Door', 'Wolf at the Door', 'Dream Man', 'Pedagogy of the Oppressed', 'Never Cry Wolf: The Amazing True Story of Life Among Arctic Wolves', 'Into the Wilderness', 'Baker Towers', 'Las formas del fuego', 'Affinity', 'Titus Andronicus', 'My Life and Hard Times', 'Fables for Our Time and Famous Poems Illustrated', 'Scarlett', 'It Had to Be You', 'American Bloomsbury: Louisa May Alcott, Ralph Waldo Emerson, Margaret Fuller, Nathaniel Hawthorne, and Henry David Thoreau: Their Lives, Their Loves, Their Work', 'Heaven, Texas', 'Kiss an Angel', 'Match Me If You Can', 'Dream a Little Dream', 'This Heart of Mine', 'The Case for Christ', 'The Scarlet Thread', 'A Knight in Shining Armor', 'The Clan of the Cave Bear, the Valley of Horses, the Mammoth Hunters, the Plains of Passage, The Shelters of Stone', 'The President', 'Men of Maize: The Modernist Epic of the Guatemalan Indians', 'Mulata', 'A Man Named Dave', 'Hood', 'Apology', 'Love Story', 'Saint Francis', 'Amusing Ourselves to Death: Public Discourse in the Age of Show Business', 'Ceremony in Death', 'Gantenbein', 'Le Petit Nicolas', 'Luck in the Shadows', "The Oracle's Queen", "Traitor's Moon", 'Stalking Darkness', 'The Clan of the Cave Bear, the Valley of Horses, the Mammoth Hunters, the Plains of Passage', 'The Plains of Passage', 'The Life and Extraordinary Adventures of Private Ivan Chonkin', 'The Deptford Trilogy', 'Fifth Business', 'Unless', "George's Marvellous Medicine", 'The Stupidest Angel: A Heartwarming Tale of Christmas Terror', 'Angel Sanctuary, Vol. 1', 'Five Go Off in a Caravan', 'The Magic Faraway Tree', 'The Templar Legacy', "Jarhead : A Marine's Chronicle of the Gulf War and Other Battles", 'Mystery and Manners: Occasional Prose', 'A Good Man Is Hard To Find', 'What the Koran Really Says: Language, Text, and Commentary', 'Slow Man', 'The Teammates: A Portrait of a Friendship', "Summer of '49", 'The End of Alice', 'The Seminar of Jacques Lacan: The Other Side of Psychoanalysis', 'Roma', "Hygiène de l'assassin", 'Métaphysique des tubes', 'The Closing of the American Mind', 'The Exploits of Sherlock Holmes', 'Son of Rosemary', 'We', "A New Earth: Awakening to Your Life's Purpose", 'Bury My Heart at Wounded Knee: An Indian History of the American West', 'The Girl Who Trod on a Loaf', 'The Emigrants', 'The Life and Opinions of Tristram Shandy, Gentleman', 'Watership Down', 'The Crime at Black Dudley', 'On a Pale Horse', 'A Spell for Chameleon', 'Forward the Foundation', "Foundation's Edge", 'Robots and Empire', "Jane and His Lordship's Legacy", 'A Fine and Private Place', 'The Collected Poems, 1957-1982', 'The Demolished Man', 'The Martian Chronicles', 'Godric', 'Cadillac Jukebox', 'Exile and the Kingdom', 'The Inklings: C.S. Lewis, J.R.R. Tolkien, Charles Williams, and Their Friends', "Good to Great: Why Some Companies Make the Leap... and Others Don't", 'A Darkness More Than Night', 'The Ghost at Skeleton Rock', 'The Short-Wave Mystery', 'April Morning', 'As I Lay Dying', 'The Glass Palace', 'Snow Falling on Cedars', 'Plainsong', 'Across the Nightingale Floor', 'Stones from the River', "Assassin's Apprentice", 'The Kite Runner', 'Andersonville', 'The Game', 'Animal Dreams', 'The Jungle Book', 'A Swiftly Tilting Planet', 'Battlestar Galactica', 'Independent People', 'Gift from the Sea', 'Aunt Julia and the Scriptwriter', 'Winter Rose', 'The Hero and the Crown', "Spindle's End", 'Anne of Avonlea', 'Anne of Ingleside', 'Anne of the Island', "Anne's House of Dreams", 'Rainbow Valley', 'Desolation Island', 'Master & Commander', 'Post Captain', 'Falls the Shadow', 'Here Be Dragons', 'Blessings', 'Let It Bleed', 'Green Mars', 'Red Mars', 'The Fate of the Earth', 'The Stone Diaries', 'The Fall of Hyperion', 'Hyperion', 'Fer-de-Lance', 'The Daughter of Time', 'A Fire Upon the Deep', 'Calvin and Hobbes', 'The Short Victorious War', 'Flag in Exile', 'Little House on the Prairie', 'These Happy Golden Years', 'To Say Nothing of the Dog', 'The Days of Abandonment', 'Brazzaville Beach', 'An Ice-Cream War', 'A Good Man in Africa', 'Any Human Heart', 'The Second Coming', 'Lancelot', 'Lost in the Cosmos: The Last Self-Help Book', 'And Quiet Flows the Don', 'Ramona the Pest', 'Killing Floor', 'Killing Hope: U.S. Military and C.I.A. Interventions Since World War II', 'Don Juan', 'The Teachings of Don Juan: A Yaqui Way of Knowledge', 'Quicksand', 'The Wayward Bus', 'The Bad Beginning', 'The Reptile Room', 'The Total Money Makeover: A Proven Plan for Financial Fitness', 'The Blind Assassin', "The River of Doubt: Theodore Roosevelt's Darkest Journey", 'Light from Heaven', 'Ignorance', 'Maskerade', 'Little Men', 'Good Wives', 'A Matter of Honor', 'Not a Penny More, Not a Penny Less', 'Kane & Abel', 'The Prodigal Daughter', 'First Among Equals', 'Snow in August', 'The Happy Prince', 'The Journeyer', 'Raptor', 'The Beloved Scoundrel', 'Violets Are Blue', 'The Heavenly Man: The Remarkable True Story of Chinese Christian Brother Yun', 'The Ice Man: Confessions of a Mafia Contract Killer', 'Letter to a Child Never Born', 'Through a Glass Darkly', 'Transbluesency: Selected Poems, 1961-1995', 'Dutchman & The Slave', 'White Flower Day', 'Moominvalley in November', 'Finn Family Moomintroll', 'The Summer Book', 'Moominpappa at Sea', "D'Aulaires' Book of Greek Myths", 'The Disappearance of Childhood', 'Apollyon', 'The Case of Comrade Tulayev', 'Magical Thinking: True Stories', 'The Passions of the Mind', 'The Greek Treasure', 'The Rising Sun: The Decline & Fall of the Japanese Empire, 1936-45', 'Divisadero', 'Coming Through Slaughter', 'The Golden Ass', 'True Spirituality: How to Live for Jesus Moment by Moment', 'The God Who Is There', 'He Is There and He Is Not Silent', 'Winesburg, Ohio', 'Distinction: A Social Critique of the Judgement of Taste', 'Discipline and Punish: The Birth of the Prison', 'Four Quartets', 'The Portable Nietzsche', 'The Future of an Illusion', 'Him Her Him Again the End of Him', 'Me & Emma', 'Little Earthquakes', 'Run', "Sam's Letters to Jennifer", 'Smashed: Story of a Drunken Girlhood', 'The Thin Man', 'Turning Angel', 'Blood Memory', 'Garlic and Sapphires: The Secret Life of a Critic in Disguise', 'We Need to Talk About Kevin', 'The Fifth Sacred Thing', 'The Hidden Diary of Marie Antoinette', 'The Traveler', 'Pyongyang: A Journey in North Korea', 'Buddenbrooks: The Decline of a Family', 'Kipps', 'The White Bone', 'The Forgotten Beasts of Eld', "Dude, Where's My Country?", "The Redneck Manifesto: How Hillbillies, Hicks, and White Trash Became America's Scapegoats", 'Infidel', 'The Dark Hills Divide', 'Neveryóna', 'The Symposium', 'God Speaks', 'Human Action: A Treatise on Economics', 'As a Man Thinketh', 'Singularity Sky', 'The Crystal Cave', 'The Satanic Bible', 'The Comedy of Errors', 'Richard II', 'Saving Francesca', 'Looking for Alibrandi', 'Things I Overheard While Talking to Myself', 'The China Garden', 'Tonio Kröger', 'Chinese Cinderella: The True Story of an Unwanted Daughter', 'Feeling Sorry for Celia', 'Johnny Angel', 'His Bright Light: The Story of My Son, Nick Traina', 'Zoya', 'Dom Casmurro', 'A Man', 'The Country Girls Trilogy and Epilogue', 'Lucky', 'Silence of the Grave', 'The Tartar Steppe', 'Tatiana and Alexander', 'The Bronze Horseman', 'Tully', 'Mr. Darcy Takes a Wife: Pride and Prejudice Continues', 'The Surrendered Wife: A Practical Guide To Finding Intimacy, Passion and Peace', 'Through the Looking-Glass and What Alice Found There', 'The Mysterious Benedict Society', 'A Sleeping Life', 'A Judgement in Stone', 'The Crystal Prison', 'Thomas', 'The Dark Portal', 'The Bridges of Madison County', 'Prey', 'A Treatise on White Magic: The Way of the Disciple', 'Désirée', 'The Stars Shine Down', 'The Horse and His Boy', 'The Dream-Hunter', 'Devil May Cry', 'Sins of the Night', 'Fantasy Lover', 'Unleash the Night', 'Kiss of the Night', 'Seize the Night', 'Dance with the Devil', 'Dark Side of the Moon', 'Night Pleasures', 'Night Play', 'Walking to Mercury', 'The Secret History of the Pink Carnation', 'The Importance of Living', 'The Last Battle', "What Got You Here Won't Get You There", 'The Firebrand', 'Priestess of Avalon', "Frenchman's Creek", 'Mary, Mary', "Zeno's Conscience", 'Amadeus', 'Tuck Everlasting', 'The Hot Kid', 'The Chess Garden', 'Unaccustomed Earth', 'Hour Game', 'The Book of Fate', 'Of Grammatology', 'Rabbit, Run', 'Term Limits', 'Friday Night Lights', 'Coma', 'The Lords of Discipline', 'The Great Santini', 'Tripmaster Monkey: His Fake Book', 'Mother Courage and Her Children', 'Gender Trouble: Feminism and the Subversion of Identity', 'Treason: Liberal Treachery from the Cold War to the War on Terrorism', 'Slander: Liberal Lies About the American Right', 'Dialectic of Enlightenment: Philosophical Fragments', 'Stars in My Pocket Like Grains of Sand', 'Nova', 'Tales of Nevèrÿon', 'Phallos', 'Flight from Nevèrÿon', 'Return to Nevèrÿon', 'The Indwelling', 'Portrait in Sepia', 'Princess Academy', 'Bright Lights, Big City', 'A Man in Full', 'Into the Forest', 'The Enchanted Forest Chronicles', 'Black Rose', 'The Elegant Gathering of White Snows', 'The Paul Street Boys', 'Fiasco: The American Military Adventure in Iraq', 'High Country', 'Blind Descent', 'The Path to Power', 'Master of the Senate', 'Rubáiyát of Omar Khayyám', 'Discourse on Colonialism', 'Mistress of the Art of Death', 'The Secret Agent', 'Ten Big Ones', 'City of Masks', 'Belle de Jour: Diary of an Unlikely Call Girl', 'Der Steppenwolf', 'Memórias Póstumas de Brás Cubas', 'Too Loud a Solitude', 'In-House Weddings', 'The Cherry Orchard', 'Tintin in the Land of the Soviets', 'Tintin in Tibet', 'The Private Memoirs and Confessions of a Justified Sinner', "Alfred Hitchcock's Monster Museum: Twelve Shuddery Stories for Daring Young Readers", 'PostSecret: Extraordinary Confessions from Ordinary Lives', 'Orthodoxy', 'Wish You Well', 'La ciudad de los prodigios', 'The Balkans: Nationalism, War and the Great Powers 1804 - 1999', 'A Soldier of the Great War', 'Mother', 'Dreams from My Father: A Story of Race and Inheritance', 'Agent to the Stars', 'Joseph and His Brothers', 'The Magic Mountain', 'Gravity and Grace', 'The Golden Spruce: A True Story of Myth, Madness, and Greed', 'Mrs. Kimble', 'The Assault', 'The Discovery of Heaven', 'Last Call', 'Life and Fate', 'Austerlitz', 'Forever Flowing', 'The Hunter', 'Platform', 'It Takes a Village: And Other Lessons Children Teach Us', 'Liberal Fascism: The Secret History of the American Left from Mussolini to the Politics of Meaning', 'The Celtic Book of Days: A Daily Guide to Celtic Spirituality and Wisdom', 'The Reluctant Fundamentalist', 'Messiah', 'The House of Sleep', 'Happiness Sold Separately', 'Water Like a Stone', 'Judgment in Death', 'Absolution Gap', 'Chasm City', 'Pushing Ice', 'Revelation Space', 'Redemption Ark', 'The Busconductor Hines', 'Augustus', 'Remembering Laughter', 'Blue Skies', 'Phantom Waltz', 'Summer Breeze', 'Only By Your Touch', 'The Tao of Pooh and The Te of Piglet', '90 Minutes in Heaven: A True Story of Death and Life', 'Heaven', "Fortune's Rocks", 'The Ramona Collection, Vol. 1:', 'Adrift on the Haunted Seas: The Best Short Stories', 'Six Moon Dance', 'The Revenants', 'C is for Corpse', 'The Dogs of Babel', 'Al Capone Does My Shirts', 'The Haunting of Hill House', 'Come Along With Me', 'The Lottery and Other Stories', 'We Have Always Lived in the Castle', 'Kira-Kira', 'Tangerine', 'Esperanza Rising', 'The Lady and the Unicorn', 'All-Night Party', 'The Map of Love', 'Secrets of the Flesh: A Life of Colette', 'The Pure and the Impure', 'Eventide', 'The Collected Macabre Stories', 'Three Junes', 'The House of the Seven Gables', 'The Brotherhood of the Grape', 'Ireland', 'Teen Idol', "Overthrow: America's Century of Regime Change from Hawaii to Iraq", 'City of the Dead', 'Little, Big', 'Ægypt', 'Imaginations', 'Only Revolutions', 'Dictee', 'The Unfortunates', 'Bring the Jubilee', 'Juniper Time', 'O Menino no Espelho', 'Doctors', 'Three Comrades', 'Beezus and Ramona', 'Ramona and Her Father', 'Ramona the Brave', 'Ramona Quimby, Age 8', 'Acquiring Genomes: A Theory Of The Origin Of Species', 'Symbiotic Planet: A New Look at Evolution', "The Hummingbird's Daughter", 'American Hair Metal', "The Devil's Arithmetic", "The Devil's Highway: A True Story", "The Devil's Teeth: A True Story of Obsession and Survival Among America's Great White Sharks", 'Four Souls', 'Love Medicine', 'Proven Guilty', 'White Night', 'Grave Peril', 'Fool Moon', 'Summer Knight', 'Death Masks', 'A Place of Execution', 'The Death of the Heart', 'Still Life', 'Kwaidan: Stories and Studies of Strange Things', 'Measure for Measure', "The Beekeeper's Apprentice", 'Revolutionary Suicide', 'Frida: A Biography of Frida Kahlo', 'Indochine', 'Jackaroo', 'Two or Three Things I Know for Sure', 'A Medicine for Melancholy and Other Stories', 'Final Exits: The Illustrated Encyclopedia of How We Die', 'The Myth of Sisyphus', 'The Dragonbone Chair', 'Black Powder War', 'The Autobiography of Malcolm X', 'Nine Princes in Amber', 'Bone: The Complete Edition', 'Map of Bones', 'London', 'Sarum: The Novel of England', 'Millennium Approaches', 'The Importance of Being Earnest', 'Being and Time', 'The Importance of Being Earnest and Other Plays', 'Eye of the Needle', 'Mysterious Skin', 'Whiteout', 'Lie Down with Lions', 'The Third Twin', 'Hornet Flight', 'The Sandman: Book of Dreams', 'The Thin Red Line', 'Prague', 'Solar Lottery', 'The Bridge of San Luis Rey', 'The Glass Menagerie', 'The Pesthouse', 'Quarantine', 'Four Ways to Forgiveness', "Rocannon's World", 'The Ones Who Walk Away from Omelas', 'The World to Come', 'The Darkangel', 'The Riddle-Master of Hed', 'Harpist in the Wind', 'Heir of Sea and Fire', 'Cold Comfort Farm', 'First King of Shannara', 'The Memory of Earth', "L'Assommoir", 'The Arabian Nights', 'One Thousand and One Arabian Nights', 'Paris Peasant', 'The Mysteries of Udolpho', 'The Italian', 'The Monk', 'The Manuscript Found in Saragossa', 'The Castle of Wolfenbach: A German Story', 'Bats Out of Hell', 'The October Country', 'The Legend of Sleepy Hollow', 'Earth Abides', 'King Arthur and His Knights of the Round Table', 'The Acts of King Arthur and His Noble Knights', 'Akira, Vol. 2', 'Akira, Vol. 1', 'Akira, Vol. 3', 'Akira, Vol. 4', 'Akira, Vol. 5', 'Something Like an Autobiography', 'The Notebooks of Malte Laurids Brigge', 'The End of Mr. Y', 'The White Plague', 'Shadow Touch', 'Dragon Seed', 'Gaudy Night', 'The Boy Next Door', 'Boy Meets Girl', 'Princess in Training', 'Project Princess', 'Princess in Love', 'Princess in Waiting', 'Anastasia: The Last Grand Duchess, Russia, 1914', 'War of the Twins', 'Emergency Room', 'Night Fall', 'The Messenger', 'The Kill Artist', 'The Cold Moon', 'Collected Poems, 1948-1984', 'A Letter of Mary', 'Locked Rooms', 'Simple Genius', 'The Interpretation of Dreams', 'Hitler: 1889-1936 Hubris', 'Q', 'Drop Dead Beautiful', 'River Town: Two Years on the Yangtze', 'Rainbow Boys', 'Geography Club', 'The Measure of Her Powers: An M.F.K. Fisher Reader', 'The Wind Dancer', 'Awareness: The Perils and Opportunities of Reality', 'Ark Angel', 'Death in the Andes', 'The Invention of Morel', 'La mort est mon métier', 'Blue Latitudes: Boldly Going Where Captain Cook Has Gone Before', 'The Gay Science: With a Prelude in Rhymes and an Appendix of Songs', 'Beneath a Marble Sky', "Ghost Soldiers: The Epic Account of World War II's Greatest Rescue Mission", 'Frog and Toad Together', 'H.R.H.', 'A Bend In The Road / The Rescue / Message In A Bottle', 'The Inheritance of Loss', 'American Colonies: The Settling of North America', 'Preacher, Volume 4: Ancient History', 'Preacher, Volume 2: Until the End of the World', "Leaving Microsoft to Change the World: An Entrepreneur's Odyssey to Educate the World's Children", 'Kick Me: Adventures in Adolescence', 'Solaris', 'Mark of the Lion Trilogy', 'A Voice in the Wind', 'As Sure as the Dawn', 'The Last Sin Eater', 'The Places in Between', 'The Blue Castle', 'Your Best Life Now: 7 Steps to Living at Your Full Potential', 'Anger: Wisdom for Cooling the Flames', 'The Rape of Nanking: The Forgotten Holocaust of World War II', 'The Poetry of Robert Frost', 'M. Butterfly', "Sammy's Hill", 'The Speed of Dark', 'Sea Glass', 'Vietnam: A History', 'All the President’s Men', 'At Swim, Two Boys', 'Crush', "Sheepfarmer's Daughter", 'The Deed of Paksenarrion', 'The Pickup', 'Batman: The Killing Joke', 'Desperate Characters', 'The Thief and the Dogs', 'Hope for the Flowers', 'Scar Tissue', 'Broken for You', 'The Simpsons Forever!: A Complete Guide to Our Favorite Family...Continued', 'I Want to Tell You: My Response to Your Letters, Your Messages, Your Questions', 'The Happiness Hypothesis: Finding Modern Truth in Ancient Wisdom', "Johnny the Homicidal Maniac: Director's Cut", 'Castle Roogna', 'Apathy and Other Small Victories', 'The Effect of Living Backwards', 'At Swim-Two-Birds', "Natasha's Dance: A Cultural History of Russia", 'Letters from a Stoic', 'On the Shortness of Life: Life Is Long if You Know How to Use It', 'The Strange Career of Jim Crow', 'The Crow', "Nice Girls Don't Get the Corner Office: 101 Unconscious Mistakes Women Make That Sabotage Their Careers", 'Then We Came to the End', 'Free to Choose: A Personal Statement', 'Beyond Tuesday Morning', 'The Full Cupboard of Life', 'An Ordinary Man: An Autobiography', 'Archangel', 'Mystic and Rider', 'Gridlinked', 'The Passion of Artemisia', "The General's Daughter", 'The Female Eunuch', 'Harold and the Purple Crayon', 'Edwin Mullhouse: The Life and Death of an American Writer 1943-1954 by Jeffrey Cartwright', 'Marie Antoinette: Princess of Versailles, Austria, France, 1769', 'Subterranean', 'Here Lies: The Collected Stories of Dorothy Parker', 'Why We Want You To Be Rich: Two Men, One Message', 'The Bastard of Istanbul', 'Father and Son', 'Omon Ra', 'Lord Brocktree', 'Winnie-the-Pooh', 'The Complete Tales and Poems of Winnie-the-Pooh', 'The World of Winnie-the-Pooh', 'The Monkey Wrench Gang', 'The Machine Crusade', 'The Butlerian Jihad', 'The Harry Potter Collection 1-4', 'The Yellow Wallpaper and Other Stories', 'A Whole New Mind: Why Right-Brainers Will Rule the Future', 'The History of Tom Jones, a Foundling', 'Blood Rites', 'The Secret Life of Plants: A Fascinating Account of the Physical, Emotional and Spiritual Relations Between Plants and Man', 'Heaven Cent', 'Confessions of Felix Krull, Confidence Man: The Early Years', 'La loba de Francia', 'El rey de hierro', 'Looking for Alaska', 'The Best Laid Plans', 'A Density of Souls', 'The Painted Veil', 'Island in the Sea of Time', 'The Golem', 'The Boys from Brazil', 'The Bhagavad Gita', 'Bhagavad Gita', 'Objectivism: The Philosophy of Ayn Rand', 'As a Driven Leaf', 'Monkey: The Journey to the West', 'A Short Guide to a Happy Life', 'Assata: An Autobiography', 'Protector', "The Mote in God's Eye", 'A Book Dragon', 'The Captive', 'Dragon Rider', 'The Sea of Trolls', 'Troll: A Love Story', 'The Game-Players of Titan', 'A World Undone: The Story of the Great War, 1914 to 1918', 'The First Day on the Somme', 'The Lion, the Witch and the Wardrobe', 'Perelandra', 'That Hideous Strength', 'A Certain Age', 'The Secret of Shadow Ranch', 'Stonehenge', 'The Famished Road', 'The Toy Collector', 'What Makes Sammy Run?', "Alton Brown's Gear for Your Kitchen", 'Mistress', 'The Reader', 'Remainder', 'The Gallery of Regrettable Food', 'The Mango Season', 'Nectar in a Sieve', 'The Case of the Toxic Spell Dump', 'Noninterference', 'Mount Analogue', 'The Mutiny on the Bounty Trilogy', 'The Atrocity Archives', 'A Place of Greater Safety', 'In Yana, the Touch of Undying', 'The Erasers', 'Repetition', 'Jealousy', 'Musashi', 'A Rendezvous in Averoigne', 'The Bottoms', 'Mucho Mojo', 'Our Lady of Darkness', 'The Forgotten Soldier', 'Postern of Fate', 'N or M?', 'Swamp Thing, Vol. 1: Saga of the Swamp Thing', 'Armor', 'The Blue Last', 'The Mysterious Stranger', 'A Mist of Prophecies', 'Another Day of Life', 'Born in Death', 'A Study in Scarlet', 'Scarlet Plume', 'Understanding Comics: The Invisible Art', "Preacher, Volume 8: All Hell's a-Coming", 'Preacher, Volume 5: Dixie Fried', 'Cabal', 'Restoration', 'The Forsyte Saga', 'The Vision of Emma Blau', 'Stolen Lives: Twenty Years in a Desert Jail', 'If Nobody Speaks Of Remarkable Things', 'The Spiderwick Chronicles Box Set', 'Coastliners', 'Stuart: A Life Backwards', 'The Prayer of Jabez: Breaking Through to the Blessed Life', 'Science, Order and Creativity', 'Stop-Time', 'Garfield at Large: His First Book', 'Zen in the Art of Writing: Releasing the Creative Genius Within You', 'Among the Enemy', 'Skeleton Key', 'A Song for Arbonne', 'The Summer Tree', 'Tigana', 'The Lions of Al-Rassan', 'Twilight Watch', 'Day Watch', 'Same Kind of Different as Me: A Modern-Day Slave, an International Art Dealer, and the Unlikely Woman Who Bound Them Together', 'Please Understand Me II: Temperament, Character, Intelligence', 'Peachtree Road', 'The House Next Door', 'Hill Towns', 'Grass', 'Keeping the Moon', 'That Summer', 'The Vagina Monologues', 'A Monstrous Regiment of Women', "All's Well That Ends Well", 'Antony and Cleopatra', 'Beloved Prophet: The Love Letters of Kahlil Gibran and Mary Haskell, and Her Private Journal', 'How to Know God', 'Journey of Souls: Case Studies of Life Between Lives', 'The Gates of Ivory', 'The Story of a Shipwrecked Sailor', "Vipers' Tangle", 'The Sneetches and Other Stories', 'Fox in Socks', 'Mr. Brown Can Moo! Can You?', 'Scandal in Spring', 'Five Point Someone: What Not to Do at IIT', 'One Night at the Call Center', 'Beyond the Deepwoods', 'Milk Glass Moon', 'The Big Sleep / Farewell, My Lovely', 'Batgirl: Year One', 'Meg', 'Primal Waters', 'Helter Skelter: The True Story of the Manson Murders', 'Dear Mr. Henshaw', 'Batman: The Long Halloween', 'Batman: Dark Victory', 'Masquerade', 'Death on the Installment Plan', 'Charlie Bone and the Invisible Boy', 'Charlie Bone and the Castle of Mirrors', 'Rule of the Bone', 'Bone, Vol. 1: Out from Boneville', 'Sarah, Plain and Tall', 'Freedom from Fear: The American People in Depression and War, 1929-1945', 'Bobos in Paradise: The New Upper Class and How They Got There', 'Enough Rope', 'The Coldest Winter Ever', 'The Transmigration of Timothy Archer', 'Amazing Grace: William Wilberforce and the Heroic Campaign to End Slavery', 'The Doomsday Conspiracy', 'Memories of Midnight', 'The Timeless Way of Building', 'The Intelligent Investor', 'Box Office Poison', 'The League of Extraordinary Gentlemen, Vol. 2', 'The League of Extraordinary Gentlemen: Black Dossier', 'Batman: A Death in the Family', 'Batman in the Seventies', 'Batman: Gotham by Gaslight', "Catwoman: Selina's Big Score", 'I Kissed Dating Goodbye', 'Needful Things', 'A Town Like Alice', 'If You Lived In Colonial Times', "Raven's Gate", 'Nightrise', 'Evil Star', 'The Prize', "Honor's Splendour", 'Ransom', 'The Bride', "The Lion's Lady", 'Bridge of Sighs', 'On the Edge of Reason', 'Still She Haunts Me: A Novel of Lewis Carroll and Alice Liddell', 'The Watsons Go to Birmingham - 1963', 'The Diary of Emily Dickinson', 'Poems', 'Coriolanus', 'The House: Uncorrected Proof', 'Finding the Heart of the Child', 'The Beginning of Spring', 'Ô Jérusalem', 'Bad Luck and Trouble', 'Cuckold', 'Survivor In Death', 'The Normal Heart & The Destiny of Me', 'Blood and Thunder: An Epic of the American West', 'The Negotiator', 'The Phantom of Manhattan', 'No Comebacks', 'I Am Not Myself These Days', 'Kolyma Tales', 'True History of the Kelly Gang', 'An Assembly Such as This', 'Mountain Man', 'Romancing Mister Bridgerton', 'To Sir Phillip, With Love', 'The Duke and I', "It's in His Kiss", 'When He Was Wicked', "I'm Not Scared", 'The Lake House', 'Living Dead in Dallas', 'The Redemption of Althalus', 'Seeress of Kell', 'Seabiscuit: An American Legend', 'Catechism of the Catholic Church: Complete and Updated', 'Pemberley: Or Pride and Prejudice Continued', 'Thérèse Raquin', 'The Looming Tower: Al-Qaeda and the Road to 9/11', 'My Oedipus Complex and Other Stories', 'House Made of Dawn', 'Loot and Other Stories', 'No Longer at Ease', "McSweeney's Mammoth Treasury of Thrilling Tales", 'The Fat Man in History', 'Hateship, Friendship, Courtship, Loveship, Marriage: Stories', 'Friend of My Youth', 'Perfect Match', 'Innocent Traitor', 'To a God Unknown', 'Jacob', 'Quidditch Through the Ages', 'The Iceman Cometh', 'The Last Convertible', 'Checkmate', 'The Game of Kings', 'Niccolò Rising', "Queens' Play", 'The Unicorn Hunt', 'The Memory of Running', 'The Complete Poems of Emily Dickinson', 'The Art of Computer Programming, Volumes 1-3 Boxed Set', 'The Art of Computer Programming, Volume 1: Fundamental Algorithms', 'The Whisper of the River', 'The Lost: A Search for Six of Six Million', 'Dauntless', 'Saint Maybe', "The People's Act of Love", 'Il visconte dimezzato', 'Rama Revealed', "Winter's Bone", 'Rendezvous with Rama', 'The Last King of Scotland', 'Hollywood Wives', 'Darkfever', 'Spell of the Highlander', 'The Immortal Highlander', 'Kiss of the Highlander', 'The Dark Highlander', 'To Tame a Highland Warrior', 'The Everlasting Man', 'Gandhi: An Autobiography', 'Once Upon a Crime', 'In the Bleak Midwinter', 'A Death in the Family', 'First Blood', 'The Winner', 'Heart of a Dog', 'The Thief Lord', 'The Eight', 'No One Belongs Here More Than You', 'Crossroads of Twilight', 'Eragon', 'The Day of the Locust', 'Last Days of Summer', 'How to Kill a Rock Star', 'Varieties of Disturbance', 'The Goal: A Process of Ongoing Improvement', 'How the Grinch Stole Christmas!', 'The Divide', 'Midnight Bayou', 'High Noon', 'Blue Dahlia', 'Secrets of a Summer Night', 'Devil in Winter', 'From the Heart: Tonight and Always / Endings and Beginnings / A Matter of Choice', "Because You're Mine", 'Medical Apartheid: The Dark History of Medical Experimentation on Black Americans from Colonial Times to the Present', 'Bartleby the Scrivener', 'The Little House Collection', 'The Manticore', 'A Sport and a Pastime', 'The Mind of the South', 'The Lady With the Little Dog and Other Stories, 1896-1904', 'Wall and Piece', 'The Dragon and the George', 'The Opal Deception', 'The Arctic Incident', 'The Ruby in the Smoke', 'Valencia', 'Love Walked In', 'A Stranger in the Mirror', 'Nostromo', 'The New American Bible', 'Carolina Moon', 'Walden & Civil Disobedience', 'September', 'From Here to Eternity', 'The Education of Little Tree', 'The System of the World', 'Making Money', 'Book Lust: Recommended Reading for Every Mood, Moment, and Reason', 'Dies the Fire', 'Rowan of Rin', 'So You Want to Be a Wizard', 'Why Did I Ever', 'The Blind Watchmaker: Why the Evidence of Evolution Reveals a Universe Without Design', 'Hamlet: Screenplay, Introduction And Film Diary', 'Walking in Circles Before Lying Down', 'See, I Told You So', 'Rush Hudson Limbaugh and His Times: Reflections on a Life Well Lived', 'The Trouble With Being Born', 'On the Heights of Despair', 'Raptor Red', 'The Master and Margarita', 'Imperial Earth', 'Moscow to the End of the Line', 'The Animal Family', 'A Day No Pigs Would Die', 'Mahabharata', 'What Is Philosophy?', 'Sixty Stories', 'The Dead Father', 'The Love Song of J. Alfred Prufrock and Other Poems', 'The Bedbug and Selected Poetry', "The Fool's Progress", 'This Kind of War: A Study in Unpreparedness', 'The Raging Quiet', 'The Ninth Life of Louis Drax', 'The Paper Eater', 'Walt Disney: The Triumph of the American Imagination', 'The One from the Other', 'The Reckoning', 'American Born Chinese', 'Light Before Day', 'The Name of the Rose', 'My Losing Season: A Memoir', 'The Great Brain', 'The Feast of Love', 'The Golden Compass', 'The Sands of Time', 'Windmills of the Gods', 'The Secret Diary of Laura Palmer', 'Return to Del', 'The Other End of the Leash: Why We Do What We Do Around Dogs', 'The Seat of the Soul', 'The Sunne in Splendour', 'Survival of the Sickest: A Medical Maverick Discovers Why We Need Disease', 'The Black Prince', 'The Lake of Dead Languages', 'I Had Trouble in Getting to Solla Sollew Yellow Back Book', 'Oscar et la dame rose', 'My Last Sigh', 'Higglety Pigglety Pop! or There Must Be More to Life', 'Grapefruit: A Book of Instructions and Drawings', 'Jason & Kyra', 'Petals of Blood', 'Faith of the Fallen', 'Baby', 'Skylark', 'Adrift: Seventy-Six Days Lost at Sea', 'Unclaimed Treasures', 'Waldo and Magic, Inc', 'A Door Into Ocean', "Mrs. McGinty's Dead", 'Death Comes as the End', 'Lord Edgware Dies', 'Five Little Pigs', 'Surprised by Joy: The Shape of My Early Life', 'Prince Caspian', 'The Transall Saga', 'Tennis Shoes Among the Nephites', "Julie's Wolf Pack", 'A Woman of No Importance', "Lady Windermere's Fan", 'My Brother Sam Is Dead', 'A Walk Across America', 'Dragonwyck', 'Midnight Magic', 'Return of the Guardian-King', 'A Shepherd Looks at Psalm 23', 'The Ghost Writer', 'Hotel World', 'Under the Skin', 'Vanilla Bright Like Eminem: Stories', 'In a Dark Wood Wandering: A Novel of the Middle Ages', "Algernon, Charlie, And I: A Writer's Journey", 'The Knowledge of the Holy', 'Black Notice', 'Boundary Waters', 'The Book of Lies', 'A Case of Conscience', 'The Dark Child', 'The Radiance of the King', 'Essays and Lectures', 'No Exit', 'Henry James: A Life in Letters', 'The Wings of the Dove', 'The Last Mughal: The Fall of a Dynasty: Delhi, 1857', 'White Mughals: Love and Betrayal in Eighteenth-Century India', "Smilla's Sense of Snow", 'Created to be His Help Meet', 'The Secret Pearl', 'Pages for You', 'The Day After Tomorrow', 'The Evening News', 'The Final Diagnosis', 'Swallows and Amazons', 'The Palm at the End of the Mind: Selected Poems and a Play', 'Barchester Towers', 'The Attack', 'The Beginning', 'The Indian in the Cupboard', 'The Indian In The Cupboard Trilogy', 'The Night in Lisbon', 'What I Loved', 'The True Story of the 3 Little Pigs', 'The Half Brother', 'Goosebumps #56: The Curse of Camp Cold Lake', 'Welcome to Dead House', 'Piano Lessons Can Be Murder', 'Night of the Living Dummy', 'Shadows Over Baker Street', 'Industrial Magic', 'Dime Store Magic', 'White: The Great Pursuit', 'Black: The Birth of Evil', 'Skin', "Heaven's Wager", 'Thr3e', 'Ghost Road Blues', 'Daily Readings from Your Best Life Now: 90 Devotions for Living at Your Full Potential', 'Starting Your Best Life Now: A Guide for New Adventures and Stages on Your Journey', 'Holidays in Hell: In Which Our Intrepid Reporter Travels to the World\'s Worst Places and Asks, "What\'s Funny about This?"', 'Charity Girl', 'Kaffir Boy: An Autobiography', 'The Christmas Train', 'Mythago Wood', 'Jaws', 'Purple Hibiscus', 'Spellsinger', 'Lost Light', 'Appointment in Samarra', 'Death of a Red Heroine', 'Sister Carrie', 'The Nine Tailors', 'The Double Bind', 'The Ginger Man', 'The Sweet Far Thing', 'Invasion of the Body Snatchers', 'The Skies of Pern', 'Dragonquest', 'The White Dragon', 'The Accidental', 'Point of Impact', 'Two Old Women: An Alaskan Legend of Betrayal, Courage and Survival', 'The Icebound Land', 'North River', 'A Thousand Splendid Suns', 'Carry On, Mr. Bowditch', "The Pianist: The Extraordinary Story of One Man's Survival in Warsaw, 1939–45", 'The Pigman', 'Evidence of Things Unseen', 'The Nature of Good and Evil', 'Islam, Liberty and Development', 'Complete Works', 'A Season in Hell and The Drunken Boat', 'The Yacoubian Building', 'Bare Bones', 'Deadly Decisions', 'Cross Bones', 'Death du Jour', 'Bones to Ashes', 'Fatal Voyage', 'The Unvanquished: The Corrected Text', 'The Spellman Files', 'The Well of Loneliness', 'The Case of Charles Dexter Ward', 'Taking Charge of Your Fertility: The Definitive Guide to Natural Birth Control, Pregnancy Achievement, and Reproductive Health', 'Little House in the Highlands', 'Train Wreck: The Life and Death of Anna Nicole Smith', "Annie Freeman's Fabulous Traveling Funeral", 'You Can Heal Your Life', 'Double Standards', 'Something Wonderful', 'Perfect', 'Until You', 'A Kingdom of Dreams', 'Once and Always', 'Almost Heaven', 'Mastering the Art of French Cooking', 'Red Earth and Pouring Rain', 'The King in Yellow and Other Horror Stories', "The Boy Who Was Raised as a Dog: And Other Stories from a Child Psychiatrist's Notebook", 'China Men', 'The Water Is Wide', 'Moon Tiger', 'An Enquiry Concerning Human Understanding', 'Gather Together in My Name', 'Birdman', 'High Rhulain', 'Peter the Great: His Life and World', 'North', 'Doctor Zhivago', 'The Mosquito Coast', 'Old Yeller', 'Universal Principles of Design', "I'm Watching You", 'The Shroud of the Thwacker', 'The Austere Academy', 'Hangsaman', "The Bird's Nest", 'The Sundial', 'Life Among the Savages', 'Death on the Nile', 'Murder Is Easy', 'Talking to the Dead', 'An American Dream', 'Ancient Evenings', 'The Cat Ate My Gymsuit', 'Tarantula', 'Body of Evidence', 'The Psychopathology of Everyday Life', 'Totem and Taboo', 'On the Genealogy of Morals / Ecce Homo', 'Fire in the Heart: A Spiritual Guide for Teens', "Every Young Woman's Battle: Guarding Your Mind, Heart, and Body in a Sex-Saturated World", 'The Seven Spiritual Laws for Parents: Guiding Your Children to Success and Fulfillment', 'A Time to Love and a Time to Die', 'Vengeance in Death', 'Tales Too Ticklish to Tell: Bloom County', "Morte D'Urban", 'Hangover Square', 'Saving Grace', 'Four Past Midnight', 'Our Man in Havana', 'Centennial', 'The Edible Woman', 'The Whale Rider', 'The Things They Carried', 'Everyone Poops', 'The Little Disturbances of Man', "Academ's Fury", 'Lucky Man', 'Those Left Behind', 'Glorious Appearing: The End of Days', 'The Sunflower: On the Possibilities and Limits of Forgiveness', 'The Sunflower', 'The Collected Poems', 'Charlotte Gray', 'Washington Square', 'Bill Peet: An Autobiography', 'Between the Bridge and the River', 'An End to Evil: How to Win the War on Terror', 'The Life and Loves of a She Devil', 'Living with Joy: Keys to Personal Power and Spiritual Transformation', 'The Marvelous Land of Oz', 'The Art of Practicing: A Guide to Making Music from the Heart', 'Cat’s Cradle', 'In the Shadow of Man', 'Shakespeare: The World as Stage', 'Ecstasy', 'The Scarlet Pimpernel', 'The Other Side of Midnight', 'Helen Keller', "The Giant's House", 'Lying Awake', 'Harry Potter and the Deathly Hallows', 'Thunderhead', 'Brimstone', 'Dance of Death', 'Tyrannosaur Canyon', "Domu: A Child's Dream", 'Stormbreaker', 'The Places That Scare You: A Guide to Fearlessness in Difficult Times', "Don't Bite the Hook: Finding Freedom from Anger, Resentment, and Other Destructive Emotions", 'The Little Lady Agency', 'The Bumblebee Flies Anyway', 'Lovers & Players', 'Will in the World: How Shakespeare Became Shakespeare', 'Great Tales of Terror and the Supernatural', 'Divine Secrets of the Ya-Ya Sisterhood', 'The Potato Factory', 'Whisper of Death', 'The Last Vampire', 'The Season of Passage', 'Road to Nowhere', 'The Cold One', 'Sloppy Firsts', 'Catch Me If You Can: The True Story of a Real Fake', 'The Great Game: The Struggle for Empire in Central Asia', 'The Walking Dead, Vol. 1: Days Gone Bye', 'Once in a Lifetime', 'Dark Fire', 'Sovereign', 'Dissolution', "Moscow 1812: Napoleon's Fatal March", 'Follow the River', 'Creating Affluence: The A-to-Z Steps to a Richer Life', 'The Way of the Wizard: Twenty Spiritual Lessons for Creating the Life You Want', 'Quantum Healing: Exploring the Frontiers of Mind Body Medicine', 'The Path to Love: Spiritual Strategies for Healing', 'Stuart Little', 'Monsignor Quixote', 'Los ojos del perro siberiano', "Endurance: Shackleton's Incredible Voyage", 'The Line of Beauty', 'The Quiche of Death', 'The House on Mango Street', 'Empress Orchid', 'This Perfect Day', 'A Kiss of Shadows', 'The Silver Kiss', 'Maniac Magee', 'Stone Butch Blues', 'The Icarus Girl', 'Knowing God', "The Collected Poems of Frank O'Hara", 'Lunch Poems', 'The Snow Queen', 'All Together Dead', 'Dead to the World', 'Grave Surprise', 'Definitely Dead', 'Club Dead', 'An Ice Cold Grave', 'Destiny of Souls: New Case Studies of Life Between Lives', 'Loamhedge', 'Issola', 'The Voyage of the Dawn Treader', 'The Haunting of Alaizabel Cray', 'The Dark Horse Book of Hauntings', '4:50 from Paddington', 'Absent in the Spring', 'Three Act Tragedy', 'The Terrors of Ice and Darkness', 'The Black Company', 'O Pioneers!', 'The Path of Daggers', 'Ramayana', 'Arsène Lupin, Gentleman-Thief', 'A Hunger Artist', 'The Woman Destroyed', 'A Sunday at the Pool in Kigali', 'Failure is Not an Option: Mission Control From Mercury to Apollo 13 and Beyond', 'Pulp', 'This Is Your Brain on Music', 'Cities in Flight', 'Autumn in Peking', "L'Écume des jours", 'This Thing of Darkness', 'Collected Poems, 1909-1962', 'The Inverted World', 'The Inspector General', 'The Anubis Gates', 'Samarkand', 'Flashman', 'Flashman in the Great Game', 'Flashman at the Charge', 'The Empty Chair', 'The Hollow Kingdom', 'The Master Butchers Singing Club', 'The Great Fire', 'Wolf by the Ears', 'The 13 Clocks', 'Moon Deluxe', 'War in Heaven', 'The Place of the Lion', 'The Three Sisters', 'The Gift of the Magi', 'Tiger Eyes', 'Churchill: A Biography', 'Shadow Man', 'Pirates!', 'The Horseman on the Roof', 'Freedom from the Known', 'When a Crocodile Eats the Sun: A Memoir of Africa', 'Pokémon Diamond & Pearl - The Official Pokémon Scenario Guide', 'The Hostage Bride', 'The Burning Bridge', 'The Battle for Skandia', 'The Floating Opera', 'Fire by Night', 'Contest', 'Ice Station', 'Seven Deadly Wonders', 'Temple', 'Area 7', 'The Raw Shark Texts', 'The Velveteen Rabbit', 'The Tender Bar: A Memoir', 'The Cellar', 'After Midnight', 'Best Ghost Stories of J.S. Le Fanu', 'Shosha', 'Improbable', 'The Essays of Warren Buffett : Lessons for Corporate America', 'Crossing California', 'Jesus Land: A Memoir', "Red Rackham's Treasure", 'The Unsettling of America: Culture and Agriculture', 'Martin Dressler: The Tale of an American Dreamer', 'American Brutus: John Wilkes Booth and the Lincoln Conspiracies', "Manhunt: The 12-Day Chase for Lincoln's Killer", "The Book of Sand and Shakespeare's Memory", 'Dreamtigers', '4.48 Psychosis', 'Render Unto Caesar: A Novel', 'The Jewel in the Crown', 'Time Travellers Strictly Cash', 'Touching Spirit Bear', 'The Good German', 'Franklin and Winston: An Intimate Portrait of an Epic Friendship', 'Miss Nelson Is Missing!', 'Black Water', "The High King's Tomb", 'Green Rider', "First Rider's Call", 'Star of the Sea', 'Love, Rosie', 'A Storm of Swords 2: Blood and Gold', 'The Drowning Tree', 'alphabet', 'Escape from Reason', 'Plum Boxed Set 2', 'Plum Boxed Set 3', "Walking to Martha's Vineyard: Poems", 'The Night World and the Word Night', 'The Essence of Christianity', 'Elephants Can Remember', 'Waterland', 'The Fourth Bear', 'The Fountains of Paradise', 'Tales from the White Hart', 'A Fall of Moondust', 'Reach for Tomorrow', 'The Sentinel', 'So Big', 'Dr. Strangelove, or, How I Learned to Stop Worrying and Love the Bomb', 'The Italian Secretary', 'Eva Luna', 'The Science of Mind', 'The Stand', 'Silverthorn', 'Mrs. Pollifax Unveiled', 'Chicago Loop', 'Outcast', 'The Odessa File', 'Night Without End', 'Fear is the Key', 'Ice Station Zebra', 'HMS Ulysses', 'Mary Anne', 'The Vile Village', 'Selected Poems', 'The Dream Songs', 'His Toy, His Dream, His Rest', 'Plainwater: Essays and Poetry', 'The Beauty of the Husband: A Fictional Essay in 29 Tangos', 'If Not, Winter: Fragments of Sappho', 'Collected Short Stories: Volume 1', 'Proof', 'Rabbit-Proof Fence', 'Dealing with Dragons', 'Freedom Road', 'Weimar Culture: The Outsider as Insider', 'Titus Alone', 'Many Waters', 'So Long a Letter', 'Cosmic Connection: An Extraterrestrial Perspective', 'The Skystone', "They Shoot Horses, Don't They?", 'All Men Are Mortal', 'Mary Poppins', 'Steps to an Ecology of Mind: Collected Essays in Anthropology, Psychiatry, Evolution, and Epistemology', 'Incidents in the Life of a Slave Girl', "What's Eating Gilbert Grape", 'An Episode in the Life of a Landscape Painter', 'Death and the Penguin', "Kushiel's Scion", "Kushiel's Dart", 'Heart-Shaped Box', 'Into the Dark Lands', 'Children of the Blood', 'The Passion According to G.H.', 'The Quest for Christa T.', 'Cassandra', 'The 39 Steps', 'Leo Africanus', 'The Little House', 'Mike Mulligan and His Steam Shovel', 'Evening Clouds', 'Seven Types of Ambiguity', 'Moby-Dick or, The Whale', 'The Soccer War', 'Bloodhound', 'Magic Steps', 'Shatterglass', 'The Will of the Empress', 'First Test', 'Page', 'Protector of the Small', 'Cold Fire', 'Squire', 'The Immortals', 'Lady Knight', 'And Never Said a Word', 'Mona Lisa Overdrive', 'The Discovery of India', 'Introduction to Objectivist Epistemology', 'The Town and the City', 'Consent to Kill', 'The Death of Ahasuerus', 'Superman: Red Son', 'Double Identity', 'Something from the Nightside', 'The Stone of Laughter', 'Notable American Women', 'Mrs. Mike', 'A Field Guide to the Birds of Eastern and Central North America', 'The Conqueror Worms', 'Tales of Mystery and Imagination', 'Mandie and the Secret Tunnel', "Omensetter's Luck", 'The Universal Baseball Association, Inc., J. Henry Waugh, Prop.', 'The Public Burning', 'Eureka Street', 'The Elephant Man', 'The True History of the Elephant Man: The Definitive Account of the Tragic and Extraordinary Life of Joseph Carey Merrick', 'Winter in the Blood', 'Psycho', 'Sing the Four Quarters', 'Y: The Last Man, Vol. 1: Unmanned', 'North and South', 'Midnight in Ruby Bayou', 'Counter-Clock World', 'The Collected Stories of Philip K. Dick 4: The Minority Report', 'Diaspora', 'Teranesia', 'Once Upon a Marigold', 'The Most Dangerous Game', 'Dream Story', 'Gorilla, My Love', 'Shahnameh: The Persian Book of Kings', 'The Little Prince', 'If You Could See Me Now', 'Wiseguy', 'The Pendragon Legend', 'Immortal Wife', 'Alcoholics Anonymous', 'Captain Blood', 'The Twelve Chairs', 'Three Kingdoms', 'Romance of the Three Kingdoms, Vol. 1 of 2', "Eve's Daughters", 'Free Fall', 'Love and War', 'The Yearling', 'Queen of This Realm', 'In the Shadow of the Crown', 'The Dhammapada', 'Pledged - Secret Life Of Sororities', 'The Call of Cthulhu and Other Weird Stories', 'Ordinary People', 'Pokemon Graphic Novel, Vol. 1: The Electric Tale Of Pikachu!', 'A Bear Called Paddington', 'Shadow Moon', 'Greenmantle', 'Lanark', 'Good Night, Mr. Tom', "My Own Country: A Doctor's Story", 'Shakespeare: An Oxford Guide', 'Three Lives', 'How I Live Now', 'The Tail of Emily Windsnap', 'Emily Windsnap and the Castle in the Mist', 'Common Sense', 'A Spectacle of Corruption', 'The Midwich Cuckoos', 'Chocky', 'East', 'Pretty Little Liars', 'Such a Pretty Girl', 'Flawless', 'The Sailor Who Fell from Grace with the Sea', 'Extinction', 'Just Ella', 'The Case-Book of Sherlock Holmes', "A Connecticut Yankee in King Arthur's Court", 'Ka: Stories of the Mind and Gods of India', 'The Patience of the Spider', 'Conquest: Sexual Violence and American Indian Genocide', 'All But My Life', 'Peaches', 'Full Tilt', 'Tortilla Flat', 'Memoirs of a Dutiful Daughter', 'A Canticle for Leibowitz', 'The Railway Children', 'Slawter', 'Lord Loss', 'Diagnostic and Statistical Manual of Mental Disorders DSM-IV-TR', 'Vampire Blood Trilogy', 'The Rice Mother', 'Anybody Out There?', 'Ride the Wind', 'Eye in the Sky', 'In Milton Lumky Territory', 'Computer Networks', 'Between a Rock and a Hard Place', 'The Sandman: The Dream Hunters', 'Stoner', 'The Black Heralds (Lannan Literary Selections)', 'Trilce', 'Across Realtime', "Tarzan of the Apes, Three Complete Novels: Tarzan of the Apes / The Son of Tarzan / Tarzan at the Earth's Core", 'A Season in Hell', 'The Mabinogion Tetralogy', 'In Cold Blood', 'Catch-22', 'In Desert and Wilderness', 'The Journal of William Thomas Emerson: A Revolutionary War Patriot, Boston, Massachusetts, 1774', 'The Prize: The Epic Quest for Oil, Money, and Power', 'Botchan', 'Twenty Thousand Streets Under the Sky', "Daughter of Persia: A Woman's Journey from Her Father's Harem Through the Islamic Revolution", "Bushwhacked: Life in George W. Bush's America", 'Babbitt', 'The Virginian', 'Feed', 'State of the Union', 'Ten Stupid Things Couples Do to Mess Up Their Relationships', 'Talking to Dragons', 'Calling on Dragons', "The King's Buccaneer", 'Seth Speaks: The Eternal Validity of the Soul', 'Dead as a Doornail', "Don't Sweat the Small Stuff ... and It's All Small Stuff: Simple Ways to Keep the Little Things From Taking Over Your Life", 'All Around the Town', 'Weep No More, My Lady', 'Loves Music, Loves to Dance', 'Love and Garbage', 'A Mango-Shaped Space', 'The Sea of Fertility', 'The Birth House', 'Wit', 'Rosario Tijeras', 'Songs of Innocence and of Experience', 'The Ipcress File', 'Bomber', 'Alamut', 'A Brief Life', 'The Ersatz Elevator', 'The Library of Babel', 'The Motorcycle Diaries: Notes on a Latin American Journey', 'Full Moon Rising', "Devil's Waltz", 'An Irish Country Doctor', 'In the Wake of the Plague: The Black Death and the World It Made', 'The Divine Conspiracy: Rediscovering Our Hidden Life in God', 'The Ragamuffin Gospel', 'A Course in Miracles: Combined Volume - Volume I : Text, Volume II: Workbook for Students, Volume III: Manual for Teachers', "Over the Edge of the World: Magellan's Terrifying Circumnavigation of the Globe", "You Can't Win", 'House of Glass', 'Il cavaliere inesistente', "What to Expect When You're Expecting", 'The Cost of Discipleship', 'Eagle Strike', 'The Seven Storey Mountain', 'The Return of the Prodigal Son: A Story of Homecoming', 'Every Dead Thing', 'My Utmost for His Highest', 'The Fall of the House of Usher and Other Writings', 'The Fall of the House of Usher', 'Memed, My Hawk', 'The Alleged "Nanking Massacre": Japan\'s Rebuttal to China\'s Forged Claims', 'Oathbreakers', 'Ragtime', 'Nehru: The Making of India', 'Iron Lake', 'The Living Great Lakes: Searching for the Heart of the Inland Seas', 'Memories of Ice', 'Nicholas on Vacation', 'The Problem Child', 'The Fairy-Tale Detectives', 'Dark Sister', 'The Book of Night with Moon', "Spock's World", 'The Secret Bedroom', 'The Face', 'Wraeththu', 'The Black Swan', 'The Oathbound', 'Brightly Burning', 'One True Thing', 'The Slaves of Solitude', 'The Meaning of Night', '102 Minutes: The Untold Story of the Fight to Survive Inside the Twin Towers', 'Room on the Broom', 'The Mirror of Her Dreams', 'A Time of Exile', 'The Ice Queen', 'Acorna: The Unicorn Girl', 'The Thirteenth Pearl', 'Tropic of Night', 'Slave: My True Story', 'Slave to Sensation', 'Excellent Women', 'The Real George Washington', 'The China Study: The Most Comprehensive Study of Nutrition Ever Conducted and the Startling Implications for Diet, Weight Loss, and Long-term Health', 'The Good Women of China: Hidden Voices', 'Annabel Lee', 'The Chronicles of Thomas Covenant, the Unbeliever', 'The Goose Girl', 'All My Sons', 'Dianetics: The Modern Science of Mental Health', 'Destination Moon', 'The Secret of the Unicorn', 'Animals', 'The Madonnas of Leningrad', 'The Simpsons Guide to Springfield', 'Artemisia', 'Revolt Against the Modern World', 'Imperialism: The Highest Stage of Capitalism', 'The State and Revolution', 'The Emerald City of Oz', 'Off Season', 'The Girl Next Door', 'The Exorcist', 'Awaken the Giant Within: How to Take Immediate Control of Your Mental, Emotional, Physical and Financial Destiny!', 'Dark Desire', 'Leadership and Self-Deception: Getting Out of the Box', 'Pinocchio', 'Lie Down in Darkness', 'Afternoon on the Amazon', 'The Forgotten Man', 'Sadako and the Thousand Paper Cranes', 'Mio, My Son', 'Monday Mourning', 'The Commanding Self', "The Minister's Daughter", 'Henry Reed, Inc.', 'Company Commander: The Classic Infantry Memoir of World War II', 'Brief einer Unbekannten', 'The Blue Girl', 'Cranford', 'Gothic Tales', 'False Memory', "Fortune's Favorites", 'An Indecent Obsession', 'The Last World', 'A Brief History of Neoliberalism', 'Night Light', 'Warlock', 'Thirsty', 'The Celery Stalks at Midnight', 'The Cruel Sea', 'Generations', 'The Two Princesses of Bamarre', 'The Princess Test', 'Fairest', 'Sandstorm', 'Steal This Book', 'My Life: An Attempt at an Autobiography', 'Crisis of the French Section 1935-36', 'Fascism: What It Is and How to Fight It', 'The Man Who Was Thursday: A Nightmare', 'The Innocence of Father Brown', 'Black Reconstruction in America 1860-1880', 'Belle du Seigneur', 'Transfer of Power', 'Memorial Day', 'The Third Option', 'Warchild', 'The Keys of the Kingdom', 'La sombra del viento', 'Virgin River', 'The revolution and the civil war in Spain,', 'Petersburg', 'Rubicon Beach', 'Doubt, a Parable', 'Η ζωή εν τάφω', 'Kiss Me, Judas', 'Time Bomb', 'The Web', 'The Name of the Wind', 'Peeps', 'Forrest Gump', "Inside Anne Frank's House : An Illustrated Journey Through Anne's World", 'Someplace to Be Flying', 'Memory and Dream', 'Dreams Underfoot', 'Brilliance of the Moon', 'Re: Colonised Planet 5, Shikasta', 'Empire Falls', 'Auntie Mame: An Irreverent Escapade', 'New Spring', 'Running with the Demon', 'Open Veins of Latin America: Five Centuries of the Pillage of a Continent', 'The Chosen', 'Auto da Compadecida', 'Cry No More', 'Letter to His Father', 'The Trial / America / The Castle / Metamorphosis / In the Penal Settlement / The Great Wall of China / Investigations of a Dog / Letter to His Father / The Diaries, 1910–23: Complete & Unabridged', 'Primal Fear', 'Labor and Monopoly Capital: The Degradation of Work in the Twentieth Century', 'Inside the Shadow City', 'Licit and Illicit Drugs; The Consumers Union Report on Narcotics, Stimulants, Depressants, Inhalants, Hallucinogens and Marijuana-Including Caffeine, Nicotine and Alcohol', 'Safe House', 'Avalon High', 'The German Ideology / Theses on Feuerbach / Introduction to the Critique of Political Economy', 'A House and Its Head', 'The Complete Sherlock Holmes', 'The Fox Woman', 'Love in a Fallen City', 'To Your Scattered Bodies Go', 'The Elfstones of Shannara', 'King of the Murgos', 'Conquered City', 'Obsidian Butterfly', 'The Last Samurai', 'Way Station', "Don't Let the Pigeon Drive the Bus!", 'Oh, the Places You’ll Go!', 'Giggle, Giggle, Quack', 'Bestiario', "God's Little Acre", 'Cakes and Ale', 'The Man Without Qualities: Volume I', 'Vector Prime', 'The Starter Wife', 'American Indian Stories', 'Outbound Flight', 'The Icarus Hunt', 'Candle in the Darkness', 'Whose Body?', 'The Towers of Trebizond', 'Lost Moon: The Perilous Voyage of Apollo 13', 'Representation and Reality', 'The Diving Bell and the Butterfly', 'What a Carve Up!', 'Legacy', 'The Return of Sherlock Holmes', 'The Memoirs of Sherlock Holmes', 'Hope Rising: Stories from the Ranch of Rescued Dreams', 'The Setting Sun', 'No Longer Human', 'Esio Trot', 'Understanding Power: The Indispensable Chomsky', 'The Perilous Gard', 'Reader’s Block', 'Aquamarine', 'Trumpet', 'Fray', 'On Rue Tatin: Living and Cooking in a French Town', 'The Truth About Stories: A Native Narrative', "Barney's Version", 'Skinny Bitch: A No-Nonsense, Tough-Love Guide for Savvy Girls Who Want to Stop Eating Crap and Start Looking Fabulous!', 'Skinny Bitch in the Kitch: Kick-Ass Recipes for Hungry Girls Who Want to Stop Cooking Crap', 'The English Teacher', 'A Piece of Cake', 'Xombies', 'The Night Before Christmas', 'Akhmatova: Poems', 'Are You My Mother?', 'Sunset', 'The Pigeon Finds a Hot Dog!', 'Pig Island', 'Freedom or Death', 'Moosewood Restaurant Cooks at Home: Fast and Easy Recipes for Any Day', 'Inca Gold', 'The Girl with the Silver Eyes', 'The Great Divergence: China, Europe, and the Making of the Modern World Economy', 'The End of Nature', 'Dersu Uzala', 'Oral History', 'Second Helpings', 'Sanctuary', 'Code Name Cassandra', 'Pants on Fire', 'Ninth Key', 'Wisconsin Death Trip', 'My Man Jeeves', 'Unbowed', 'Sold', 'Little Bear', 'Rapture in Death', 'Mossflower', 'Mattimeo', 'Martin the Warrior', 'The Wolfen', 'The Parasite', 'Night in the Lonesome October', 'City of Illusions', 'Flyboys: A True Story of Courage', 'In the Night Garden', 'The Finishing School', 'Les Fleurs du Mal', 'The Ship Who Sang', 'London Calling', 'The New Oxford Annotated Bible: New Revised Standard Version', 'Letter from the Birmingham Jail', 'Naruto, Vol. 1: Uzumaki Naruto', 'Naruto, Vol. 02: The Worst Client', 'Naruto, Vol. 03: Dreams', 'Naruto, Vol. 05: The Challengers', 'Freedom At Midnight', 'Split Second', 'The Masque of the Red Death', 'The Prince in Waiting', 'Auto-da-Fé', 'The Voices of Marrakesh', 'Ethics', "Your Blues Ain't Like Mine", 'Our Town', 'Fleshmarket Close', 'Caddie Woodlawn', 'The Pit and the Pendulum', 'The Lions of Lucerne', 'The Power of the Dog', 'Air', 'Dexter in the Dark', 'The Tibetan Book of Living and Dying', 'Mine to Take', 'Hop On Pop', 'The Prophet of Yonwood', 'Those Barren Leaves', 'Shiloh', 'Melmoth the Wanderer', 'Beyond Anne Frank: Hidden Children and Postwar Families in Holland', 'Claimed by Shadow', 'The Golden Age', 'The Winter Room', 'Jinx', 'The Waterworks', 'Exploits & Opinions of Dr. Faustroll, Pataphysician', 'Ocean Sea', 'Natural Right and History', 'The Man in the Brown Suit', 'Pavilion of Women', 'The Store', 'Di noi tre', 'Rivethead: Tales from the Assembly Line', 'Fieldwork', 'Apartment in Athens', 'Origin in Death', 'Against Nature', 'Return to the Secret Garden', 'The Dark Is Rising', 'A Sand County Almanac and Sketches Here and There', 'Living Green: A Practical Guide to Simple Sustainability', "The Russian Debutante's Handbook", 'The Reivers', "The Fires of Jubilee: Nat Turner's Fierce Rebellion", 'Kim', 'The Kingdom of the Cults', 'Abducted Heiress', 'The Tiger in the Well', 'The Shadow in the North', 'Mistress of Mellyn', 'Tsotsi', 'The Egyptologist', 'The Bedroom Secrets of the Master Chefs', 'The Rock of Tanios', 'Camping and Woodcraft: A Handbook for Vacation Campers and for Travelers in the Wilderness', 'Dreams Made Flesh', 'The Living', 'The Oxford History of Western Music: 6-Volume Set', 'Reform or Revolution', 'The Warrior Heir', 'Heir Apparent', 'How to Practice: The Way to a Meaningful Life', 'Life As We Knew It', 'Is Paris Burning?', 'The Magic Lantern', 'Witness in Death', "In an Instant: A Family's Journey of Love and Healing", 'The Last Season', "Hitler's War", 'Carry Me Home', 'The Case for Faith: A Journalist Investigates the Toughest Objections to Christianity', "Euclid's Elements", 'Desert Solitaire', 'The Dwarf', 'Leven Thumps and the Gateway to Foo', 'Dog Years', 'Two Serious Ladies', 'The Pilgrims of Rayne', 'The Quillan Games', 'The Reality Bug', 'The Rivers of Zadaa', 'The Lost City of Faar', 'Pay It Forward', 'Visions of Heat', 'In an Antique Land', 'Habibi', 'Shake Hands with the Devil', 'Ghoul', 'The Rising', 'Dead Sea', 'The World Jones Made', 'The Man in the High Castle', 'VALIS', 'The Divine Invasion', 'A Maze of Death', 'The Last Command', 'Dark Force Rising', 'August 1914', 'Spock Must Die!', 'Away', 'The Kingdom of Matthias: A Story of Sex and Salvation in 19th-Century America', 'Faserland', 'Devil Girls', 'The Witches of Eastwick', 'A Tomb for Boris Davidovich', 'Hourglass', 'Paddington Takes to TV', 'The Space Between Us', 'The Town That Forgot How to Breathe', 'Gateway', 'The History of Joseph Smith by His Mother', 'The Gripping Hand', "Lucifer's Hammer", 'The Last Witchfinder', 'The Hungry Moon', 'Everything That Rises Must Converge: Stories', "Callahan's Crosstime Saloon", 'In the Electric Mist With Confederate Dead', 'National Geographic Almanac of World History', "Lord Foul's Bane", 'The Other', 'The Pushcart War', 'The Tenant', 'Headhunter', 'The Virtu', 'The Mirador', 'The Bone Key: The Necromantic Mysteries of Kyle Murchison Booth', 'The Piano Teacher', 'The Robe', "Louder Than Words: A Mother's Journey in Healing Autism", "Adventures of a Psychic: The Fascinating and Inspiring True-Life Story of One of America's Most Successful Clairvoyants", 'Kürk Mantolu Madonna', 'The House on the Borderland', 'One Shot', 'Die Trying', 'Tripwire', 'JPod', 'A Tale of three Kings: A Study in Brokenness', 'By Arrangement', 'The Story of Art', 'City', "The Mad Scientists' Club", "The New Adventures of the Mad Scientists' Club", 'Rules', "The Legacy of Gird Omnibus: Surrender None/Liar's Oath", 'Passion: A Novel of the Romantic Poets', 'To Walk the Night', 'Cracker!: The Best Dog in Vietnam', "The Merchant and the Alchemist's Gate", 'Stories of Your Life and Others', 'Gods in Alabama', 'The Bell Curve: Intelligence and Class Structure in American Life', 'The General of the Dead Army', 'In His Steps', 'Stick It Up Your Punter!: The Uncut Story of the Sun Newspaper', 'Dead Man Rising', 'The Great Automatic Grammatizator And Other Stories', 'A Vindication of the Rights of Woman', 'Snakes And Earrings', 'Point Blank', 'Ghost Stories', 'Half Magic', 'The Nick Adams Stories', 'Green River, Running Red', 'Citadelle', 'The History of the Ancient World: From the Earliest Accounts to the Fall of Rome', 'A Deepness in the Sky', 'Tallgrass', 'The Omen', 'A Time of Omens', 'Becoming Myself: Reflections on Growing Up Female', 'Stasiland: Stories from Behind the Berlin Wall', 'A Hero of Our Time', 'Small Steps: The Year I Got Polio', "Comeback: A Mother and Daughter's Journey Through Hell and Back", 'The Simulacra', 'Radio Free Albemuth', 'The Zap Gun', 'Clans of the Alphane Moon', 'The Geography of Thought: How Asians and Westerners Think Differently... and Why', 'If There Be Thorns', 'Petals on the Wind', 'Total Control', 'Rigadoon', 'Bangkok Haunts', 'A Glass of Blessings', 'Hear the Wind Sing', 'La Maladie de la mort', 'Ishmael: An Adventure of the Mind and Spirit', 'Shortcomings', 'Bridget Jones’s Diary', 'Guitar Girl', "The Doctor's Wife", 'A Clockwork Orange', 'You Remind Me of Me', "The Rape of Europa: The Fate of Europe's Treasures in the Third Reich and the Second World War", 'Café Europa: Life After Communism', 'Peace Like a River', 'A Traitor to Memory', 'Prozac Nation', 'Among the Hidden', 'Shadow Children Boxed Set: Among the Hidden, Among the Impostors, Among the Betrayed, and Among the Barons', 'Running Out of Time', 'I Know This Much Is True', 'The Coffin Dancer', 'Affliction', 'Charlie Bone and the Time Twister', 'The Eternity Code', 'Jemima J', 'The House of Thunder', 'Tribulation Force', 'Soul Harvest: The World Takes Sides', 'Rosemary’s Baby', 'The Nanny Diaries', 'Anne Frank and the Children of the Holocaust', 'The Weight of Water', "Jay's Journal", 'Sophie’s Choice', 'Black Boy', 'The Eye of the World', 'Owl Moon', 'Doctor Who: The Fearmonger', "After You'd Gone", 'Rite of Passage', 'The Pickwick Papers', 'خرمگس', 'Ishi in Two Worlds: A Biography of the Last Wild Indian in North America', 'The Notebook, The Proof, The Third Lie: Three Novels', 'Mr. Nice', 'City of Saints and Madmen', 'Realty Check', 'The Principia : Mathematical Principles of Natural Philosophy', 'New American Standard Bible', 'Eye of the Oracle', 'The Enemy', 'Small Sacrifices', 'Déjà Dead', 'The Outsiders', 'The Wayfarer Redemption', 'Battleaxe', 'All That Remains', 'The Book of Bright Ideas', 'Dancer from the Dance', 'Neanderthal', 'Harriet the Spy', 'The Time of the Doves', 'The Shop on Blossom Street', 'The Cat in the Hat', 'I, Rigoberta Menchú: An Indian Woman in Guatemala', 'The Loneliness of the Long-Distance Runner', 'Slaves of New York', 'The Hidden Staircase', 'The Great Hunt', 'Firestarter', 'Father and I Were Ranchers', 'The PreHistory of The Far Side: A 10th Anniversary Exhibit', "Kristy's Great Idea", 'Island of the Blue Dolphins', 'Solar Storms', 'Sign of the Cross', 'Stone of Tears', 'Letters from Thailand', 'The Uplift War', 'Startide Rising', 'Time and Chance', 'Shadow Puppets', "Forever, Erma: Best-Loved Writing from America's Favorite Humorist", 'Someday This Pain Will Be Useful to You', 'Succubus Blues', 'Waiting', 'Driving with Dead People', "There's a Boy in the Girls' Bathroom", 'The Wonderful Wizard of Oz', 'Joseph Smith: Rough Stone Rolling', 'Naked Came the Stranger', 'March Violets', "I Won't Learn from You: And Other Thoughts on Creative Maladjustment", 'The 10th Kingdom', 'The War Prayer', 'In the Woods', 'So B. It', 'Leadership Secrets of Attila the Hun', 'Kafka', 'Holiday in Death', 'Immortal in Death', 'Seduction in Death', 'Purity in Death', 'Memory in Death', 'Yargo', "Megan Meade's Guide to the McGowan Boys", 'The Sleepwalkers', 'The Yosemite', 'My First Summer in the Sierra', 'Children of the River', 'In the Heart of the Country', 'Killashandra', 'Almost Like Being in Love', 'Find It, Fix It, Flip It!: Make Millions in Real Estate - One House at a Time', "Isaac's Storm: A Man, a Time, and the Deadliest Hurricane in History", 'Mycelium Running: How Mushrooms Can Help Save the World', 'The Ghost Brigades', 'Losing Nelson', "Why Men Don't Iron: The Fascinating and Unalterable Differences Between Men and Women", 'The Interesting Narrative of the Life of Olaudah Equiano', 'La hora violeta', 'The Paper Bag Princess', "God Don't Like Ugly", 'Big Mouth and Ugly Girl', 'The Skinner', 'Deliver Us from Evil: Defeating Terrorism, Despotism, and Liberalism', 'Storm of Steel', 'Tau Zero', 'The Book of Laughter and Forgetting', 'The moonlight sonata', 'When Crickets Cry', 'We Think the World of You', 'Clara Callan', 'The Fiery Angel', 'Women Who Run With the Wolves', 'The Last Detective', 'Running with Scissors', "The Physician's Tale", 'The Black Swan: The Impact of the Highly Improbable', "Maynard's House", 'Homeless Bird', 'The Tesseract', "The Coroner's Lunch", 'Brat Farrar', 'The Sheltering Sky', 'Imperium', 'A History of Western Philosophy', 'The Collector', 'Out of Control: The New Biology of Machines, Social Systems, and the Economic World', 'The Street of Crocodiles', 'Ask and It Is Given: Learning to Manifest Your Desires', 'Charmed Life', 'Fruits Basket, Vol. 16', 'Fruits Basket, Vol. 12', 'The Selected Works', 'Mairelon the Magician', 'An Enemy of the People', 'Gig: Americans Talk About Their Jobs', 'Strong Poison', 'The Deerslayer', 'Those Terrible Middle Ages!: Debunking the Myths', 'An Old-Fashioned Girl', 'The Year of Yes', 'The Mezzanine', 'Tales of E.T.A. Hoffmann', 'Child of All Nations', "Don't Tell", 'God-Shaped Hole', "It's Always Something", 'The Cry of the Icemark', 'River Secrets', 'Enna Burning', 'Austenland', 'Book of a Thousand Days', 'Companions of the Night', 'Belles on Their Toes', 'Juniper', 'Something Wicked This Way Comes', 'Killing Mister Watson', 'The Bull from the Sea', 'A Spy in the House of Love', "It's Kind of a Funny Story", 'Climbing Mount Improbable', 'The World Without Us', 'Berserk, Vol. 1', 'If You Want to Write: A Book about Art, Independence and Spirit', 'Darkness Visible: A Memoir of Madness', 'Darkness Visible', 'The Bridge', 'Artemis Fowl', 'The Green Man', 'The Wanderers', "Ladies' Man", 'The City and the Stars', 'City of Stars', 'Novel with Cocaine', 'The Vanishing Act of Esme Lennox', "Ain't I a Woman: Black Women and Feminism", 'Make Lemonade', 'Good Grief', 'The Invincible', 'Breakfast at Tiffany’s and Three Stories', 'Bee Season', 'A Three Dog Life', 'Outer Banks', 'The Velvet Promise', 'The Summerhouse', "The Queen's Fool", 'One Thousand and One Ghosts', 'Angela’s Ashes', 'The Devil in Love', "Lord Valentine's Castle", "The O'Reilly Factor: The Good, the Bad, and the Completely Ridiculous in American Life", "Who's Looking Out for You?", 'The Collected Tales of Nikolai Gogol', 'Temple of the Winds', 'Inherit the Wind: The Powerful Courtroom Drama in which Two Men Wage the Legal War of the Century', 'The Tracker: The True Story of Tom Brown Jr.', 'Positively 4th Street: The Lives and Times of Joan Baez, Bob Dylan, Mimi Baez Farina and Richard Farina', 'Happy Baby', 'The Black Sun', 'Oblomov', 'Cancer Ward', 'توپ مرواری', 'Battlefield of the Mind: Winning the Battle in Your Mind', 'Edges: O Israel, O Palestine', 'The Fifth Discipline: The Art & Practice of The Learning Organization', 'The New Dare to Discipline', 'Count Magnus and Other Ghost Stories', 'Lonesome Dove', 'Reflections from the North Country', 'The Singapore Grip', 'Troubles', 'Le Passé Simple', 'Everything is Illuminated', 'Curse of the Bane', 'City of Bones', 'Hadjí Murat', 'Lord of the Silver Bow', 'Raintree County', 'Stronghold', 'Shane', 'True Grit', 'The Go-Between', 'Killing Time', 'Kings Row', 'Knights of Dark Renown', 'Gormenghast', 'Lyddie', 'The Golden Bowl', 'The Ball and the Cross', 'Outbreak', 'The Encyclopedia of the Dead', 'Stuck in Neutral', 'Dragons of Autumn Twilight', 'The Principles of Quantum Mechanics', 'The Pursuit of Holiness', 'Eyeless in Gaza', "The Dead Girls' Dance", 'The Cask of Amontillado', 'History of the Peloponnesian War', 'The Tea Rose', 'Primary Colors', 'Shanghai Baby', 'A Good Scent from a Strange Mountain', 'Rhapsody: Child of Blood', 'The Grand Sophy', 'Socrates In Love', 'Gregor the Overlander', 'Read My Desire: Lacan Against the Historicists', 'The Definitive Book of Body Language', 'Dreamsnake', 'Urdoxa: Book One of a Decalogy', 'Vampire Knight, Vol. 1', 'Vampire Kisses', 'Vampireville', 'Dance with a Vampire', 'Kissing Coffins', 'How to Marry a Millionaire Vampire', 'The Possibility of an Island', 'The Witches of Eileanan', 'The Raven', 'Darkfall', 'Frege: Philosophy of Language', 'The Beautyful Ones Are Not Yet Born', 'No Sweetness Here and Other Stories', 'Sacajawea', 'Hominids', "I'm Not Stiller", 'Life Application Study Bible: NIV', 'One', 'More Pricks Than Kicks', 'Miracle of the Rose', 'Every Breath You Take: A True Story of Obsession, Revenge, and Murder', 'Five Days in Paris', 'How to Talk to a Liberal (If You Must): The World According to Ann Coulter', 'High Crimes and Misdemeanors: The Case Against Bill Clinton', "If Democrats Had Any Brains, They'd Be Republicans", 'Last of the Breed', 'Valiant', 'The Penderwicks: A Summer Tale of Four Sisters, Two Rabbits, and a Very Interesting Boy', "Sharpe's Escape", 'The Keepers of the House', 'The Oxford Book of Gothic Tales', 'Ironweed', 'How Far Can You Go?', 'The Late George Apley', 'Silent in the Grave', 'Wait Till Helen Comes', 'Lilith', 'The Secret of Lost Things', 'Glory in Death', 'Portrait in Death', 'Kerosene', 'The Doll People', 'Mummies in the Morning', 'The Quaker City: The Monks of Monk Hall', 'The Raven and Other Poems', 'The Cantos', 'Catering to Nobody', 'The Commitments', 'How to Make an American Quilt', 'Seven Years in Tibet', "Corduroy's Toys", 'Roxanna Slade', 'Slow River', 'Heal Your Body: The Mental Causes for Physical Illness and the Metaphysical Way to Overcome Them', 'The Russia House', 'Crank', 'Glass', 'Impulse', 'Burned', 'Tree of Smoke', 'Fruits Basket, Vol. 1', 'A Taint in the Blood', 'As Meat Loves Salt', 'The Island of Doctor Death and Other Stories and Other Stories', "In Green's Jungles", 'A Black Theology of Liberation', 'Five Smooth Stones', 'Midnight Warrior', 'Keeping You a Secret', 'The Real Cool Killers', 'Be True to Your School', 'The Black Stallion', 'Starlight', 'Dancing Aztecs', 'Justice Hall', 'The Family', 'Fire and Ice', 'Trump: The Art of the Comeback', 'The Butter Battle Book', 'The Face of Battle: A Study of Agincourt, Waterloo and the Somme', 'Deadline', 'Where Angels Fall', 'The Word for World Is Forest', 'The Dog Fighter', 'Absolute Fear', 'Cajas de cartón: Relatos de la vida peregrina de un niño campesino', 'Ellen Foster', 'Working for the Devil', 'Hagakure: The Book of the Samurai', 'Amazing Grace', 'Kaleidoscope', 'The Expected One', 'On the Way Home', 'River of Gods', 'Brasyl', 'Broken Angels', 'Holy Bible: New International Version', 'Jar City', 'A Man Lay Dead', 'Net of Jewels', 'Bunnicula', 'Bunnicula Strikes Again!', 'The Invention of Curried Sausage', 'Grave Secrets', 'Tick Tock', 'The River Wife', 'Hana-Kimi: For You in Full Blossom, Vol. 1', 'Ironside', 'Hideous Kinky', 'Almost Starring Skinnybones', 'Dead End Dating', 'Skulduggery Pleasant', 'High Fidelity', 'Blood Bound', "The Hob's Bargain", 'On the Prowl', 'Synergetics: Explorations in the Geometry of Thinking', 'The Declaration of Independence / The Constitution of the United States', 'Native Tongue', 'Demon Lord of Karanda', 'We are the Ship: The Story of Negro League Baseball', 'The Yellow Wall-Paper', "Lucifer Rising: A Book Of Sin, Devil Worship, and Rock'n'Roll", 'The Journal of Augustus Pelletier: The Lewis and Clark Expedition, 1804', 'Course in General Linguistics', 'Dark Magic', 'Mortal Engines', 'Litany of the Long Sun', 'And Only to Deceive', 'Revolution in the Head: The Beatles Records and the Sixties', 'Q & A', 'Glitz', 'Manchild in the Promised Land', 'The Best a Man Can Get', 'A Certain Slant of Light', 'The Princess', 'Proust and the Squid: The Story and Science of the Reading Brain', 'The Book of Revelation', 'Becoming a Man', 'The Ishbane Conspiracy', 'Safely Home', 'The Darkest Road', 'Eleni', 'The Upanishads', 'The Pursuit of Happiness', 'A Whale for the Killing', 'Christy Miller Collection, Vol. 1', 'Nighty-Nightmare', 'Hedda Gabler', 'Angle of Repose', 'Skinnybones', 'The Honorary Consul', 'A Scots Quair: Sunset Song, Cloud Howe, Grey Granite', 'Spoon River Anthology', 'Sleepers', 'Different Hours', 'The Amityville Horror', 'Toddler-Hunting & Other Stories', 'Between the Woods and the Water', 'Santiago: A Myth of the Far Future', 'Ophelia', 'Chicka Chicka Boom Boom', 'Torture the Artist', 'Child of God', 'Song of Myself', 'Black Order', 'Excavation', 'Ice Hunt', 'The Judas Strain', 'Amazonia', 'The Lives of a Cell: Notes of a Biology Watcher', 'Paganini (Heyne allgemeine Reihe)', 'Lucky You', 'Journey to the River Sea', 'Miss Lonelyhearts / The Day of the Locust', 'Una storia semplice', 'Tisha: The Wonderful True Love Story of a Young Teacher in the Alaskan Wilderness', 'Rising Storm', 'City of Flowers', 'The Wind Singer', 'Wolf Brother', 'How to Deal', 'Bloody Jack', 'In the Belly of the Bloodhound: Being an Account of a Particularly Peculiar Adventure in the Life of Jacky Faber', 'Under the Jolly Roger: Being an Account of the Further Nautical Adventures of Jacky Faber', 'Junie B. Jones Is a Graduation Girl', 'Evil Genius', 'The House with a Clock in Its Walls', 'Magic by the Lake', 'The Unusual Suspects', 'Brothers in Arms', 'The Last Summer of You and Me', 'Lady of the Reeds', 'Lies My Teacher Told Me: Everything Your American History Textbook Got Wrong', 'The Custodian of Paradise', 'Moonrise', 'At Chrighton Abbey and Other Horror Stories', 'Looking Backward: 2000-1887', 'What Matters Most', 'The Boxcar Children', 'Prometheus Bound', 'The Unknown Revolution, 1917-1921', 'The League of Extraordinary Gentlemen, Vol. 1', 'The Brief Wondrous Life of Oscar Wao', 'Tea and Sympathy', 'The Slippery Slope', 'Urban Shaman', "Mao's Last Dancer", 'Agnes Grey', 'Nausea', 'Revenge of the Witch', 'Night of the Soul Stealer', 'The Killer Inside Me', 'Among the Barons', 'The Road to Serfdom', 'Killing Rage', 'Lady of Hay', 'Das Boot: The Boat', 'Awakening to the Sacred: Creating a Personal Spiritual Life', 'The Citadel of the Autarch', 'High Citadel', 'I Am That: Talks with Sri Nisargadatta Maharaj', 'The Shadow Of Ashlydyat', 'Bloodline', 'On Becoming Baby Wise: Giving Your Infant the Gift of Nighttime Sleep', 'To Hell and Back', 'سمفونی مردگان', '1916: A Novel of the Irish Rebellion', 'The Red Tree', 'The Boyfriend List: 15 Guys, 11 Shrink Appointments, 4 Ceramic Frogs and Me, Ruby Oliver', 'ttyl', 'The Elementals', 'Dead Until Dark', 'Patterns of Childhood', 'A Pickle for the Knowing Ones or Plain Truths in a Homespun Dress', 'The Darkness That Comes Before', 'Guess How Much I Love You', 'Rule by Secrecy: The Hidden History that Connects the Trilateral Commission, the Freemasons & the Great Pyramids', 'Walking Through Clear Water in a Pool Painted Black', 'Your Secrets Sleep With Me', 'Star Wars: The Truce at Bakura', 'Mirrorshades: The Cyberpunk Anthology', 'Father Arseny, 1893-1973: Priest, Prisoner, Spiritual Father: Being the Narratives Compiled by the Servant of God Alexander Concerning His Spiritual Father', 'The Buddha of Suburbia', 'Wicked: Witch & Curse', 'Among the Brave', 'Among the Betrayed', 'Among the Impostors', 'The General Theory of Employment, Interest, and Money', "Don't Be Afraid, Gringo", 'Lover Unbound', 'The Essential Rumi', 'Blade of Tyshalle', 'The Smile at the Foot of the Ladder', 'On Lies, Secrets, and Silence. Selected Prose 1966-1978', 'People', 'The Way Things Work', 'The Blood of a Dragon', 'The Collected Books', 'The Complete John Silence Stories', 'Daughters of God: Scriptural Portraits', 'Wicked Lovely', 'Cymbeline', 'Ultimate X-Men, Vol. 1: The Tomorrow People', 'Strategy', 'Sugar Daddy', 'Cold Sassy Tree', 'Practical English Usage', 'Hell to Pay', 'King Suckerman', 'The City of Ember', 'Messages to the World: The Statements of Osama Bin Laden', 'The Age of Extremes, 1914-1991', 'The True Confessions of Charlotte Doyle', 'Passenger to Frankfurt', 'The Snowy Day', 'Love You Forever', 'Roll of Thunder, Hear My Cry', 'Tales of Horror and the Supernatural', 'A Confederacy of Dunces', 'The Slynx', 'The Norton Anthology of English Literature Vol. 2', 'On the Night of the Seventh Moon', 'Pastel', 'Arabella', 'The Body of Christopher Creed', 'Heroes Die', 'Solomon Gursky Was Here', 'The Fire Within', 'Icefire', 'The History Boys', 'Dark Challenge', 'Dark Destiny', 'Birthday Letters', 'Nine Innings: The Anatomy of a Baseball Game', 'Derailed', "The Troubles: Ireland's Ordeal 1966-1996 and the Search for Peace", 'GOOD BURGER 2 GO: NICKELODEON', 'The Tenderness of Wolves', "In Defense of Food: An Eater's Manifesto", "Auschwitz: A Doctor's Eyewitness Account", 'Luna', 'Kabul Beauty School: An American Woman Goes Behind the Veil', 'The Sword in the Stone', 'The Chronicles of Amber', 'The Rise of the West: A History of the Human Community; with a Retrospective Essay', 'Memoirs of a Teenage Amnesiac', 'Candlenight', 'Making History', 'The Unwilling Warlord', 'The Witches of Karres', 'The Missing', 'The Visit: A Tragi-Comedy', 'The Electric Michelangelo', 'The Mother-Daughter Book Club', 'Fatelessness', 'Liquidation', 'Drums, Girls & Dangerous Pie', 'Long Walk to Freedom', 'Red Storm Rising', "Don't Hassel the Hoff: The Autobiography", "The Mind of the Master Class: History and Faith in the Southern Slaveholders' Worldview", 'Selling the Lite of Heaven', 'The Coming of the Third Reich', 'Eucalyptus', 'The Seven Spiritual Laws of Yoga: A Practical Guide to Healing Body, Mind, and Spirit', 'synchrodestiny--harnessing-the-infinite-power-of-coincidence-to-create-miracles', 'Buddha: A Story of Enlightenment', 'Gregor and the Marks of Secret', "Five Go to Demon's Rocks", 'Asphodel, That Greeny Flower & Other Love Poems', 'Killing Me Softly', 'With a Single Spell', 'Dark Tide I: Onslaught', 'Words and Life', 'The Heaven Tree Trilogy', 'A Morbid Taste for Bones', 'The Agony and the Ecstasy', 'Dictionary of the Khazars', 'Holy Fools', 'Girl in Hyacinth Blue', 'Kissed by an Angel/The Power of Love/Soulmates', 'Hearts in Hiding', 'Little Town at the Crossroads', 'Blood and Guts in High School', 'Soldier of the Mist', 'Across the Wire: Life and Hard Times on the Mexican Border', 'Harmful to Minors: The Perils of Protecting Children from Sex', 'The Stories of Richard Bausch', 'The Book of Mormon: Another Testament of Jesus Christ', 'The Cross Examination of Oliver Finney', 'Sanctorum Communio: A Theological Study of the Sociology of the Church', 'A Bride Most Begrudging', 'Thou Art That: Transforming Religious Metaphor', 'The Carnivorous Carnival', 'Nicholas Nickleby', 'Kidnapped', 'West of Eden', 'Capital: A Critique of Political Economy, Volume 1', 'Road from Ar Ramadi: The Private Rebellion of Sergeant Camilo Mejia', 'The Walking Drum', 'Rowan Hood: Outlaw Girl of Sherwood Forest', 'Narziss and Goldmund', "The Thief's Journal", 'A Kestrel for a Knave', 'Totto-chan: The Little Girl at the Window', 'Motherless Brooklyn', "Sharpe's Triumph", 'The Real America: Messages from the Heart and Heartland', 'Idiot: Beating "The Curse" and Enjoying the Game of Life', 'The Insulted and Humiliated', 'The Dream of a Ridiculous Man', 'The Untouchable', 'The Member of the Wedding', 'InuYasha, Vol. 1: Turning Back Time', 'The Subterraneans', 'Adolf Hitler: My Part in His Downfall', 'The Gates of Rome', 'A Short History of Progress', 'Roadside Picnic', 'An American Tragedy', 'On Mexican Time: A New Life in San Miguel', 'Die Therapie', 'Almost French: Love and a New Life in Paris', 'How to Good-Bye Depression: If You Constrict Anus 100 Times Everyday. Malarkey? or Effective Way?', 'A Deadly Game of Magic', 'Flipped', 'After Virtue', 'The Year of Fog', 'One Flew Over the Cuckoo’s Nest', 'Incarceron', 'Frozen in Time: The Fate of the Franklin Expedition', 'Murphy', 'A Companion to Wolves', 'The Castle', 'The Stars My Destination', 'The Tenth City', 'Beyond the Valley of Thorns', 'The Amulet of Samarkand', 'The Sparrow', 'Motoring with Mohammed: Journeys to Yemen and the Red Sea', 'Vidas secas', 'Equus', 'Abhorsen', 'The Homecoming', 'Final Exam', 'Wasp', 'Any Old Iron', 'A Question of Blood', 'A Dangerous Path', 'Crimson Roses', 'The Engines of God', 'Jacob Have I Loved', 'The Runes of the Earth', 'The Tenant of Wildfell Hall', 'Flashforward', "Please Don't Kill the Freshman", 'Colours in the Steel', 'Ulysses', 'Jade Island', 'I Rode a Horse of Milk White Jade', 'Listen, Little Man!', 'A Woman of Independent Means', 'Have a Nice Day!: A Tale of Blood and Sweatsocks', 'How the Pro-Choice Movement Saved America: Freedom, Politics and the War on Sex', 'The Woodlanders', 'The Faithful Spy', 'La virgen de los sicarios', 'Replay', 'Just Kids', 'Bad Brains', 'Growth of the Soil', 'The Gunslinger Born', 'Robin Hood', 'Visser', 'The Test', 'The World Atlas of Wine', 'Ishmael', 'The Law of Attraction: The Basics of the Teachings of Abraham', "A Dog's Life: Autobiography of a Stray", 'Cloudstreet', 'The Riders', "Sarah's Story", 'Bloodfever', 'Honey, Baby, Sweetheart', 'Blacklist', 'The Song of the Bird', 'Midnight Tides', 'Man Is Not Alone: A Philosophy of Religion', 'Carnacki, the Ghost Finder', 'Vampire Academy', "Captain's Fury", "King Leopold's Ghost: A Story of Greed, Terror, and Heroism in Colonial Africa", 'What Happened to Lani Garver', 'The Secret River', 'The Road Less Traveled: A New Psychology of Love, Traditional Values and Spiritual Growth', 'The Miracle Life of Edgar Mint', 'Red Moon Rising', 'These Is My Words: The Diary of Sarah Agnes Prine, 1881-1901, Arizona Territories', "Thursday's Child", 'The Borrowers', 'Infinity Welcomes Careful Drivers', 'Blaze', 'Expecting Adam: A True Story of Birth, Rebirth, and Everyday Magic', 'Passing', 'Whitney, My Love', 'Tender Triumph', 'The Magic of You', 'Storm Thief', 'A Walk on the Wild Side', 'The Worst Witch', "The Monkey's Paw and Other Tales of Mystery and Macabre", 'The Ringed Castle', 'The Disorderly Knights', 'The Circus Fire: A True Story of an American Tragedy', 'The Changeover', 'The Man Born to Be King', 'Every Secret Thing', 'How to Train Your Dragon', 'Raising Dragons', 'Return to Howliday Inn', 'Games of Command', "Gabriel's Ghost", 'An Accidental Goddess', 'Six Months to Live', 'Fire of the Covenant: The Story of the Willie and Martin Handcart Companies', 'Tantalize', 'The Cross of Lead', 'Toxin', 'Lilac and Flag', 'The Charm School', 'The Last Days of the Incas', 'Orientalism', 'Hitler', 'Capital: A Critique of Political Economy, Volume 2', 'All Quiet on the Western Front', 'Erasure', 'Physik', 'Flyte', 'The Story of Babar', 'The City of Joy', "India After Gandhi: The History of the World's Largest Democracy", 'The Greatest Salesman in the World', 'Dreamhunter', 'Sandro of Chegem', 'Silencing the Past: Power and the Production of History', 'The Art Book', 'Voices from Chernobyl: The Oral History of a Nuclear Disaster', 'Civilization and Its Discontents', 'Because of Winn-Dixie', "There Is No Me Without You: One Woman's Odyssey to Rescue Her Country's Children", 'The Evolution Deceit: The Scientific Collapse of Darwinism and its Ideological Background', "The Thrall's Tale", 'Death and the Dervish', 'The Lucifer Effect: Understanding How Good People Turn Evil', 'The Blind Man of Seville', 'Elsewhere', 'House of Sand and Fog', 'A Light to My Path', 'Flowers from the Storm', 'The Mask of Apollo', 'Pawn in Frankincense', 'To Lie with Lions', 'Das Urteil und andere Erzählungen', "Osman's Dream: The History of the Ottoman Empire", 'The Ultimate Gift', 'An Unquiet Mind: A Memoir of Moods and Madness', 'Becoming Naomi León', 'The Last Cato', 'The Road to Mecca', 'All My Sins Remembered', 'Nightblood', 'The Escape', 'The Change', 'The Forgotten', 'The Conspiracy', "Devil's Bride", 'The Savage Tales of Solomon Kane', 'Bridget Jones: The Edge of Reason', 'Jeremy Fink and the Meaning of Life', 'The Last Don', 'The Dream of a Common Language', 'Man and Superman', 'Wizard of the Upper Amazon: The Story of Manuel C¢rdova-Rios', "Rappaccini's Daughter", 'The Oath', 'The Legend of Annie Murphy', 'The Crossing', 'Sisterchicks Go Brit!', 'The Old Devils', 'P.S. I Love You', 'Call It Sleep', 'The Devil of Nanking', 'The Solution', 'The White Steamship', 'The Day Lasts More than a Hundred Years', 'Seventeen', 'Fire and Hemlock', 'Man Plus', 'Sexism and God Talk: Toward a Feminist Theology', "Don't Look Back", 'Collected Poems', 'A Small Death in Lisbon', 'Madame', 'Bud, Not Buddy', 'The 4-Hour Workweek', '"A Problem from Hell": America and the Age of Genocide', 'The Caine Mutiny', '84, Charing Cross Road', 'A Study of History, Abridgement of Vols 7-10', 'Captains and the Kings: The Story of an American Dynasty', 'The Tale of Murasaki', 'The Giving Tree', 'The Artificial Silk Girl', 'Two Thousand Seasons', 'Nana', 'Sorceress of Darshiva', 'Pearl in the Mist', "Jo's Boys", 'Briefing for a Descent Into Hell', 'Love in a Cold Climate and Other Novels', 'God Is an Englishman', 'Long Summer Day', 'House of Splendid Isolation', 'The Glass Inferno', 'The Civil War, Vol. 2: Fredericksburg to Meridian', "Ain't She Sweet?", 'Breathing Room', 'User', 'Baise-Moi', 'Absalom, Absalom!', '20th Century Ghosts', 'The Heart of Redness', 'Ghosts', 'If on a Winter’s Night a Traveler', 'Testament of Youth', 'Schindler’s List', 'The Emperor of Ice-Cream and Other Poems', 'Ender’s Game', 'Frédéric', "The Horse's Mouth", 'Herself Surprised', 'Invitation to a Beheading', 'The Crock of Gold', 'Alexis ou le Traité du vain combat / Le Coup de grâce', 'The Children of Green Knowe', 'A Stranger at Green Knowe', 'Diamond Mask', 'Less Than a Shadow', "The Wedding Planner's Daughter", 'The Cupid Chronicles', 'I Love You, Beth Cooper', 'The Many-Coloured Land', 'The Alteration', 'The Darkest Evening of the Year', 'A Map to the Door of No Return', 'The Information', 'Take Time for Your Life', 'Shake Loose My Skin: New and Selected Poems', 'Dog Soldiers', 'Hit Man', "Rang & Dale's Pharmacology", 'The Bacchae', "Against All Enemies: Inside America's War on Terror", 'Are You Loathsome Tonight?: A Collection of Short Stories', "A Lover's Discourse: Fragments", 'Griffin & Sabine', 'The Poetic Edda: Stories of the Norse Gods and Heroes', 'The Revolution of Everyday Life', 'Jesus Calling: Enjoying Peace in His Presence', 'The Society of the Spectacle', 'Private', 'Invitation Only', 'False Gods', 'Fevre Dream', 'The Cardinal of the Kremlin', 'The Obscene Bird of Night', 'The Man with the Golden Arm', 'The Hard Way', 'Pericles of Athens and the Birth of Democracy', 'Wives and Daughters', "Cool It: The Skeptical Environmentalist's Guide to Global Warming", 'Agnes and the Hitman', 'Non-Stop', 'Arcadia', 'Waking the Tiger: Healing Trauma', "The Nonconformist's Memorial: Poems", 'On Liberty', 'Random Family: Love, Drugs, Trouble, and Coming of Age in the Bronx', 'Gregor and the Curse of the Warmbloods', 'Gregor and the Prophecy of Bane', 'Legally Blonde', 'Midnight in the Garden of Good and Evil', 'Just for You', "Rena's Promise: A Story of Sisters in Auschwitz", 'Julie of the Wolves', 'Mort', 'Beyond Belief: The Secret Gospel of Thomas', 'Tall, Dark & Hungry', 'The Complete Tales from the Crypt', 'Beauty', 'The School for Scandal', 'Ben-Hur: A Tale of the Christ', 'Birthing from Within: An Extra-Ordinary Guide to Childbirth Preparation', 'The Prince of Thieves', 'Diary of a Wimpy Kid', 'Change Your Thoughts - Change Your Life', 'When Calls the Heart', 'Hanta Yo: An American Saga', 'The Spell of the Black Dagger', 'A Perfect Evil', 'Mirror Image', 'Noble House', 'A Balcony in the Forest', 'The Black Cat', 'The Tell-Tale Heart and Other Writings', 'Celtic Prayers from Iona', "Hornet's Nest", 'Isle of Dogs', 'Sin City Volume 1: The Hard Goodbye', 'Billy Budd and Other Tales', 'The Rest Is Noise: Listening to the Twentieth Century', 'The Post-Birthday World', 'Mystery on Maui', 'The Riddle', 'The Naming', 'Down and Out in Paris and London', 'Stone Junction', 'Un Sac de Billes', 'Suttree', 'Blood Meridian, or, the Evening Redness in the West', 'Wicked 2: Legacy & Spellbound', 'The Recognitions', 'Ariel', 'Terra Incognita: Travels in Antarctica', 'Lucky Jim', 'The Letters of Vincent van Gogh', 'Lonely Crusade', 'The Struggle', 'The Awakening / The Struggle', 'Dark Reunion', "Kushiel's Chosen", 'The Winter Rose', 'The Rains Came', 'The Sources of Social Power: Volume 1, A History of Power from the Beginning to AD 1760', "Twilight's Child", 'Dark Angel', 'The Devil in the White City: Murder, Magic, and Madness at the Fair That Changed America', 'I Served the King of England', 'Heaven Has No Favorites', 'The Fog', 'Once...', 'The Rats', 'Out Stealing Horses', 'Night in the Haunted Tower', 'The Girl In Times Square', 'The Song of Bernadette', 'Girls of Riyadh', 'My First Book of Mormon Stories', "A Rogue's Proposal", "Captain Jack's Woman", 'The Glass Cafe: Or the Stripper and the State; How My Mother Started a War with the System That Made Us Kind of Rich and a Little Bit Famous', 'Men at Arms', 'The Waste Land and Other Poems', 'Leap of Faith: Memoirs of an Unexpected Life', 'Chronicles of the Black Company', 'Alive: The Story of the Andes Survivors', 'The Search for Joseph Tully', 'The House of God', 'Angus, Thongs and Full-Frontal Snogging', 'The Mists of Avalon', 'The Church Mice at Christmas', 'Shōgun', "Old Possum's Book of Practical Cats", 'The Star of Kazan', 'The Politics of Experience/The Bird of Paradise', 'Wieland and Memoirs of Carwin the Biloquist', 'A Man for All Seasons: A Play in Two Acts', 'Tales of the Alhambra', 'Caliban and the Witch: Women, the Body and Primitive Accumulation', 'Blackshirts and Reds: Rational Fascism and the Overthrow of Communism', 'The Descent of Alette', 'Byzantium', 'Fangland', 'He Said Beer She Said Wine', 'The Sibyl', 'Confessions of a Sociopathic Social Climber: The Katya Livingston Chronicles', 'Mara, Daughter of the Nile', "Giovanni's Room", 'Faust', "The Search For Significance: Seeing Your True Worth Through God's Eyes", 'The Riddle of the Sands', 'Dying to Live', 'Bridge Called Hope: Stories of Triumph from the Ranch of Rescued Dreams', 'The Stinky Cheese Man and Other Fairly Stupid Tales', 'The Blue Sword', 'The Last Crossing', 'Left to Tell: Discovering God Amidst the Rwandan Holocaust', 'Our Only May Amelia', 'Highwire Moon', 'The Wrinkle in Time Quintet - Digest Size Boxed Set', 'Conan : die Original-Erzählungen aus den Jahren 1932 und 1933', 'The Narrows', 'Philadelphia, Here I Come!', 'Green Angel', 'Better Homes and Gardens New Cook Book', 'Charly', 'Cheyenne in New York: A Novel', 'Slam', 'Hollywood Kids', 'Twins', 'The Dharma Bums', 'Red Scarf Girl', 'Life on Air: Memoirs of a Broadcaster', 'Dino: Living High in the Dirty Business of Dreams', 'The Education of a Coach', 'The Best and the Brightest', 'Straight Man', 'Kids Are Americans Too', 'Force of Nature', 'Planet of the Apes', 'Childhood’s End', 'A Bell for Adano', 'I Have No Mouth & I Must Scream', "Plutarch's Lives: Volume I", 'No Greater Love', "The Scramble for Africa: The White Man's Conquest of the Dark Continent from 1876 to 1912", 'Eifelheim', "The Commissar Vanishes: The Falsification of Photographs and Art in Stalin's Russia", 'The Seventh Scroll', 'On the Road: The Original Scroll', 'La Symphonie pastorale', 'Pamela', 'A Bright Shining Lie: John Paul Vann and America in Vietnam', 'All the Rules: Time-Tested Secrets for Capturing the Heart of Mr. Right', "Killing Pablo: The Hunt for the World's Greatest Outlaw", 'The Taming', 'Jewels', 'Silent Honor', 'Vanished', 'Heartbeat', 'Tereza Batista: Home from the Wars', 'The Little White Horse', 'The Puritans', 'The Polar Express', 'Curious George', 'Yertle the Turtle and Other Stories', 'The Seer and the Sword', 'A Knight of the Word', "Sarah's Child", 'If You Deceive', 'Lemonade Mouth', 'Wilt', 'Nightlife', 'Night Relics', 'The Elfin Ship', 'Undead and Unwed', 'Certain Girls', 'The Four-Story Mistake', 'Lisa, Bright and Dark', 'Dereliction of Duty: Lyndon Johnson, Robert McNamara, the Joint Chiefs of Staff, and the Lies That Led to Vietnam', 'The Unknown Soldier', 'The African Queen', 'King of the Wind: The Story of the Godolphin Arabian', 'The Chronicles of the Virago--The Novus: Book I', 'The Ha-Ha', 'Wild Animus', 'Tell Me a Riddle', 'Presumed Innocent', 'A Thief of Time', 'Gone, Baby, Gone', 'Lord of Scoundrels', 'A Rose for Emily and Other Stories', 'Ficciones', 'Into the Fire', 'The Proof House', 'The Belly of the Bow', 'Creatures of Light and Darkness', 'The Gap Into Conflict: The Real Story', 'Venus in Furs', 'Chicken Soup for the Teenage Soul: 101 Stories of Life, Love and Learning', 'Airborn', "L'avare", 'The Evolution Man: Or, How I Ate My Father', 'Eclipse', 'Twisted Tales From Shakespeare', 'Wreck This Journal', 'In Parenthesis', 'The Old Curiosity Shop', 'River God', 'Cotton Comes to Harlem', "Brother, I'm Dying", 'Cinco horas con Mario', "Merle's Door: Lessons from a Freethinking Dog", 'Skallagrigg', 'Martha Quest', 'The Two Marys: The Hidden History of the Mother and Wife of Jesus', 'Yu Yu Hakusho, Vol. 1', 'Come Over to My House', 'Diary of a Drug Fiend', "I'll Steal You Away", 'The Sealed Nectar | Biography of Prophet Muhammad', 'Far From Home', 'Rilla of Ingleside', 'Flatland: A Romance of Many Dimensions', 'The Girl, the Gold Watch & Everything', 'The Peacegiver: How Christ Offers to Heal Our Hearts and Homes', 'Believing Christ: The Parable of the Bicycle and Other Good News', 'The Rings of Saturn', "Wicked Deeds on a Winter's Night", 'Enemy at the Gates: The Battle for Stalingrad', 'Le Livre de ma mère', 'R.U.R.', 'Story of the Eye', 'Lord John and the Hand of Devils', 'The Queen of Bedlam', 'Funeral in Berlin', "The Spider's House", 'The Forty Days of Musa Dagh', 'The Long Ships', 'The Wide Window', 'The Last Duel: A True Story of Crime, Scandal, and Trial by Combat in Medieval France', 'The Old Willis Place', 'Frindle', 'Princess in the Spotlight', 'Speak', 'Twilight of Courage', 'Isabel: Jewel of Castilla, Spain, 1466', 'Castelli di rabbia', 'An Unfinished Life', 'Mildred Pierce', 'Hungry Hill', "I'm With the Band: Confessions of a Groupie", 'Effi Briest', 'The Second Sun', 'Prologue: The Brothers', 'Moominland Midwinter', 'All He Ever Wanted', 'Howliday Inn', 'The Field Guide', 'Old Magic', 'Chasing Vermeer', 'The Princess and the Goblin', 'Death Note, Vol. 12: Finis', 'Operation Chaos', 'Conceit', 'Molloy', 'Lord Grizzly', 'Soul Clap Hands and Sing', 'Merry Christmas, Ernest and Celestine', 'Remembrance of Things Past: Volume III - The Captive, The Fugitive, & Time Regained', 'The Coldest Winter: America and the Korean War', 'The Thief', 'I Am My Own Wife', 'The Hound of Death and Other Stories', 'Prince Charming', '100 Questions About God', 'Human, All Too Human: A Book for Free Spirits', 'Die Physiker', 'Lost Souls', 'The Simpsons: A Complete Guide to Our Favorite Family', 'The Sisterhood of the Traveling Pants', "Mickey Mouse's Picnic", 'The War: An Intimate History, 1941-1945', 'Catseye', 'Miracle in the Andes', 'Look Me in the Eye', 'Sphere', 'The Return of Moriarty', 'Audrey Rose', 'Running Blind', 'Echo Burning', 'Persuader', 'Red: The Heroic Rescue', 'Showdown', 'The Dork of Cork', "Butcher's Crossing", 'The Second Sex', 'Fine Things', 'Caressed by Ice', "Reaper's Gale", 'Objects in Mirror Are Closer Than They Appear', "Rebus's Scotland", 'Others', 'Magic Cottage, Das Haus auf dem Land', 'Standing in the Light: The Captive Diary of Catharine Carey Logan, Delaware Valley, Pennsylvania, 1763', 'The Rebels', 'Go, Dog. Go!', 'The Bone People', 'Alligator Pie', 'Maisie Dobbs', 'Play to the End', 'Into the Blue', 'Paths of Glory', "The Ten Commandments: The Significance of God's Laws in Everyday Life", 'To the Wedding', 'They Thirst', 'Skeleton Canyon', 'The Chronicles of Prydain', 'My Journey to Lhasa: The Classic Story of the Only Western Woman Who Succeeded in Entering the Forbidden City', 'The Claw of the Conciliator', 'The Sword of the Lictor', 'The Fire Next Time', 'Collected Poems, 1920-1954', 'The Redbreast', 'The Scapegoat', 'The Balkan Trilogy', 'Dragonsdawn', "Mother's Milk", 'Little Man, What Now?', 'Nooit meer slapen', 'The Bad Seed', 'The Flood', "Rilke's Book of Hours: Love Poems to God", 'Nigella Express: Good Food, Fast', 'Notting Hell', 'The Hills at Home: A Novel', 'Dawnthief', 'All the Pretty Horses', 'The Tide Knot', 'The Ghost of Thomas Kempe', 'I Was a Rat!', "All Over But the Shoutin'", 'Before Women Had Wings', 'A Brief Illustrated Guide to Understanding Islam', 'Heartbreak House & Misalliance', 'Why I Am Not a Christian and Other Essays on Religion and Related Subjects', 'The Republic of Wine', 'A Journey to the New World: The Diary of Remember Patience Whipple, Mayflower, 1620', 'Watchmen', 'Duma Key', 'Krabat', "Don't Move", 'The Vampyre and Other Tales of the Macabre', 'The Journal of Albion Moonlight', 'The Folk of the Faraway Tree', 'How God Gives Us Ice Cream', 'A Bad Case of Stripes', 'Best Of Ruskin Bond', 'The Night Train at Deoli and Other Stories', 'Our Trees Still Grow in Dehra', 'Time Stops at Shamli and Other Stories', 'Madeline', 'The Darkest Night', 'Blue is for Nightmares', 'The Big Book of Jewish Conspiracies', 'Suspect', 'The Supernatural Omnibus- Being A Collection of Stories', 'The Lizard Cage', 'The Sword of Shannara Trilogy', 'The Bonehunters', 'Naked in Death', 'The Horse Whisperer', 'The Phantom of the Opera', 'Under the Tuscan Sun: At Home in Italy', 'The First Man in Rome', "Notes from the Hyena's Belly: An Ethiopian Boyhood", 'Seize The Night', 'Discontents: New Queer Writers', 'Nefertiti', 'The Howling', 'Jesus the Christ: A Study of the Messiah and His Mission According to Holy Scriptures, Both Ancient and Modern', 'The Companion', 'Future Eden: A Brief History Of Next Time', 'Toy Story', 'My Friend Leonard', 'The Seven Dials Mystery', 'Eagle in the Snow', "Seeker's Mask", 'Lalka', 'Fletch', 'The Tales of Peter Rabbit & Benjamin Bunny', "Broca's Brain: Reflections on the Romance of Science", 'High Tide at Gettysburg: The Campaign in Pennsylvania', 'The Metamorphosis', 'Death Be Not Proud', 'Pokémon Top 10 Handbook', 'Homesick: New and Selected Stories', 'A Handful of Rice', 'Pearl', 'The Oranging of America and Other Stories', 'Knuffle Bunny: A Cautionary Tale', 'The Dirty Girls Social Club', 'The People: No Different Flesh', 'Mélusine', 'Melting Stones', 'The Song of the Lioness Quartet', 'Nine Hundred Grandmothers', 'The Uglies Trilogy', 'Extras', 'The DD Group: An Online Investigation Into the Death of Marilyn Monroe', "The Lion's Paw", "The Year of Living Biblically: One Man's Humble Quest to Follow the Bible as Literally as Possible", 'The Divided Self: An Existential Study in Sanity and Madness', 'Star', 'Broad and Alien is the World', 'Weird & Wonderful Wildlife', 'Memoirs Found in a Bathtub', 'Factotum', 'The Fox and the Hound', 'The Door', 'Some Danger Involved', 'Galactic Pot-Healer', 'Dragon Weather', 'Daggerspell', "The Devil's Star", 'The Shepherd', 'The Practice of the Presence of God', 'Sepulchre', "Josefina's Surprise: A Christmas Story", "Addy's Surprise: A Christmas Story", 'Counting Heads', 'Shadows in Paradise', 'A Jest of God', 'The Wizard Heir', 'Mick Harte Was Here', 'Deep Freeze', 'One Good Turn', 'The Cottage', "Wildmen, Wobblies & Whistle Punks: Stewart Holbrook's Lowbrow Northwest", 'Field of Dishonor', 'Protect and Defend', 'The Poky Little Puppy', 'Harry Potter Schoolbooks: Quidditch Through the Ages and Fantastic Beasts and Where to Find Them', 'The Shunning', 'Workers of the World and Oppressed Peoples, Unite! Proceedings and Documents of the Second Congress, 1920', 'The Americans', 'Coming up for Air', 'The End of Eternity', "April Fool's Day", 'The Winter of Red Snow: The Revolutionary War Diary of Abigail Jane Stewart, Valley Forge, Pennsylvania, 1777', 'The Mystery of the Screaming Clock', 'The 101 Dalmatians', 'The Case of the Murdered Muckraker', 'The Cradle Will Fall', 'Jingle Bell Rock', 'Jakob von Gunten', 'Keeping Up with Magda', 'The Secret Magdalene', 'Ice Brothers', 'The C Programming Language', 'But Not the Hippopotamus', "Ma Rainey's Black Bottom", 'The Prime of Miss Jean Brodie', 'Lady with a Spear', 'Sabriel', 'The Melancholy Death of Oyster Boy and Other Stories', 'The Lives of Christopher Chant', 'The Bible Code', 'Geisha, a Life', 'The Wolf of Wall Street', 'In Defense of Socialism: Four Speeches on the 30th Anniversary of the Cuban Revolution', "The Caveman's Valentine", 'Mission of Gravity', 'Star Maker', 'Coolie', 'The First Chronicles of Druss the Legend', 'In Youth is Pleasure & I Left My Grandfather’s House', 'Dreams of the Ringed Vale', "Burger's Daughter", 'A Murmur in the Trees', 'The Autobiography of Alice B. Toklas', 'The Moon and the Bonfires', 'After the Funeral', 'The Man Without Qualities', "The Contortionist's Handbook", 'The Acid House', "L'isola di Arturo", 'The House on Hope Street', 'Me and Mr. Darcy', 'A Heart So White', 'Clarissa, or, The History of a Young Lady', 'The Next 100 Years: A Forecast for the 21st Century', 'Sometimes a Great Notion', 'Eighth Grade Bites', 'In Search of the Miraculous: Fragments of an Unknown Teaching', 'The Day of the Triffids', 'Dancing Skeletons: Life and Death in West Africa', 'One: A Novel', "Lyra's Oxford", 'A Handful of Dust', 'Crooked Little Heart', 'The Choice', 'The Journeys of Socrates', "Naoki Urasawa's Monster, Volume 7: Richard", 'Balzac and the Little Chinese Seamstress', 'Fate Is the Hunter', 'The Story of Junk', 'The Zombie Survival Guide: Complete Protection from the Living Dead', 'How Should We Then Live? The Rise and Decline of Western Thought and Culture', 'Dream of the Red Chamber', 'The Diary of a Nobody', 'The First Men in the Moon', 'Dream Work', 'The Selected Poems of Rosario Castellanos (Palbra Sur Book)', 'The Never War', 'Gregor and the Code of Claw', 'The Overcoat', 'Life and Death in Shanghai', 'House of Day, House of Night', 'Last Evenings on Earth', 'Quo Vadis', 'First Term at Malory Towers', 'The Top 10 of Everything 2007', 'Fences', 'The Holy Bible: New American Standard Version, NASB', 'The Werewolf of Paris', "The Sorcerer's Apprentice", 'The Day of the Jackal', 'Wise Child', 'More Than Human', 'Deep and Dark and Dangerous', 'The Drowning People', 'An Army at Dawn: The War in North Africa, 1942-1943', 'Quartered Safe Out Here: A Harrowing Tale of World War II', 'Stalingrad: The Fateful Siege, 1942–1943', 'Scorpia', 'Soul Surfer: A True Story of Faith, Family, and Fighting to Get Back on the Board', 'Things Not Seen', 'The Milkweed Prophesy: Epitaph of the Apocalypse', "Tom's Midnight Garden", 'The Jewel of Seven Stars', 'How Do Dinosaurs Get Well Soon?', 'The Onion Girl', 'The Tale of Mrs. Tiggy-Winkle', "A Liar's Tale", 'The Way Things Ought to Be', 'Kingbird Highway: The Biggest Year in the Life of an Extreme Birder', 'Midnight Alley', 'Leaving Paradise', 'Beastly', "Emmanuel's Book II: The Choice for Love", 'Before We Are Born: Essentials of Embryology and Birth Defects', 'الرحيق المختوم', 'The Light of Eidon', 'Almost Dead', 'Death Comes for the Archbishop', 'Roots: The Saga of an American Family', 'I Am Legend and Other Stories', 'Seeing beyond Depression', 'In the Cities of Coin and Spice', 'Confessions of a Jane Austen Addict', 'Elegy for Iris', 'Leaving Dirty Jersey: A Crystal Meth Memoir', 'Aztec', 'Mind Siege: The Battle for the Truth', 'The Night Watch', 'Cycle of the Werewolf', 'Father Elijah: An Apocalypse', 'The Serious Game', 'Year of the Death of Ricardo Reis / The Gospel According to Jesus Christ / Blindness [3 Books in One]', 'The Plays of Anton Chekhov', 'The Wisdom of Insecurity: A Message for an Age of Anxiety', 'Fire Star', 'I and Thou', 'Tikki Tikki Tembo', 'The Word', 'Voluntary Madness', "Before You Leap: A Frog's-eye View of Life's Greatest Lessons", 'The Dark Tide', 'How to Draw Pokemon', 'The Official Pokemon Handbook', 'God and Empire: Jesus Against Rome, Then and Now', 'Star Wars: Children of the Jedi', '666', 'The Wednesday Wars', "Sarah's Key", 'Onion John', 'Five on Kirrin Island Again', 'Five Have a Wonderful Time', 'The Mystery of the Spiteful Letters', "Sharpe's Eagle", "Between Silk and Cyanide: A Codemaker's War, 1941-1945", 'The Fractal Geometry of Nature', 'Darkspell', 'Days of Blood and Fire', 'Days of Air and Darkness', 'The Bristling Wood', 'Dark Tide: The Great Boston Molasses Flood of 1919', 'Shadow of the Moon', 'The It Girl', 'The Titan’s Curse', 'The Hiding Place: The Triumphant True Story of Corrie Ten Boom', 'Sostiene Pereira', 'Young Goodman Brown', 'Edge of Eternity', 'Remembering Blue', 'Twelve', 'Ruby', 'Fallen Hearts', 'Saving Cascadia: A Novel', 'The Thing on the Doorstep and Other Weird Stories', 'Last and First Men/Star Maker', 'Scientology: The Fundamentals of Thought', 'The Invaders Plan', "Sharpe's Siege", "Sharpe's Havoc", 'Illuminations', "Molly's Surprise: A Christmas Story", 'A Rage in Harlem', 'The Feminine in Fairy Tales', 'Men of the West: Harden / Evan / Donavan', 'The Betrothed', 'Song of the Sparrow', 'How to Read a Book: The Classic Guide to Intelligent Reading', 'The Wasp Factory', 'Imajica', 'The Silver Metal Lover', 'The Norton Anthology of English Literature Vol. 1', 'Dark Moon', 'Midnight Falcon', 'Echoes of the Great Song', 'Waylander', 'Hero in the Shadows', 'A Distant Mirror: The Calamitous 14th Century', 'Naruto, Vol. 04: Hero’s Bridge', 'Henry Huggins', 'Betwixt', 'Cross My Heart and Hope to Spy', "God's Other Son", 'Let Freedom Ring: Winning the War of Liberty over Liberalism', 'Men in Black: How Judges are Destroying America', 'Mostly Harmless', 'The Complete Works', 'Riding the Wind', 'O Amor Natural', 'Travelling in the Family: Selected Poems', 'O Avesso Das Coisas', 'The Brain that Changes Itself: Stories of Personal Triumph from the Frontiers of Brain Science', 'Rumors of War', 'Since You Went Away', 'Savannah', 'The Icarus Agenda', "Miss Garnet's Angel", 'Teachings of the Prophet Joseph Smith', "Mystery Train: Images of America in Rock 'n' Roll", 'Well Done, The Naughtiest Girl!', 'This House of Sky: Landscapes of a Western Mind', '...And Ladies of the Club', 'Drachenfels', 'Tooth-Gnasher Superflash', 'The Confessions of Nat Turner', 'Billy Liar', 'Stink: The Incredible Shrinking Kid', 'What Is Scientology?', 'Somewhere In Time', 'Strega Nona', 'Valley of the Dolls', 'Anti-Intellectualism in American Life', "Avril Lavigne's Make 5 Wishes, Vol. 1", 'The Face of a Stranger', 'A Place to Call Home', 'The Romance of Tristan and Iseult', 'Queen of Sorcery', 'Gentlemen of the Road', 'Like the Flowing River', 'Komt een vrouw bij de dokter', 'A Very Long Engagement', 'The Hero With a Thousand Faces', 'Ceremony', 'Kiss of the Spider Woman', 'A Place Called Here', 'Handbook to Higher Consciousness', 'Frances Johnson', 'Beyond the Chocolate War', "Lady Audley's Secret", 'Paint It Black', 'King of Spades', 'Daughter of the Empire', 'Are We Having Fun Yet? American Indian Fantasy Stories', "The Empress's Tomb", 'The Nightingale and the Rose', "The Shamer's Signet", 'The Serpent Gift', "The Shamer's War", "The Shamer's Daughter", 'This Is All: The Pillow Book of Cordelia Kenn', 'Ragged Company', "Protecting America's Health: The FDA, Business, and One Hundred Years of Regulation", 'The Bar Code Tattoo', 'Portrait of an Unknown Woman', 'Birdy', 'Mensagem - Poemas Esotéricos', 'On Top of Concord Hill', 'Remember Your Rubbers!: Collectible Condom Containers', 'Deliverance', 'Tempting the Beast', 'True Light', 'Last Light', 'The Far Cry', 'Annie on My Mind', 'Some of Your Blood', 'Where the Chill Waits', 'Way to Be!: 9 Ways To Be Happy And Make Something Of Your Life', 'Standing for Something: 10 Neglected Virtues That Will Heal Our Hearts and Homes', 'Lectures on Faith', 'The Hot Rock', 'That Awful Mess on the Via Merulana', 'Harlequin Valentine', 'The Children of Húrin', 'Firethorn', 'Sounder', 'The Dollmaker', 'Dangerous Visions', 'Again, Dangerous Visions', 'The Ticket That Exploded', 'How I Play Golf', 'The Spider and the Fly', 'Psychic Children: Revealing the Intuitive Gifts and Hidden Abilities of Boys and Girls', 'Insight: Case Files from the Psychic World', 'Prayers', "Sylvia Browne's Tools for Life", 'Angels and Spirit Guides: How to Call Upon Your Angels and Spirit Guide for Help', 'Blessings From the Other Side: Wisdom and Comfort from the Afterlife for this Life', 'Making Contact With the Other Side: How to Enhance Your Own Psychic Powers', 'The Other Side of Life: A Discussion on Death, Dying, and the Graduation of the Soul', "The Sylvia Browne Book Collection: Boxed Set Includes Sylvia Browne's Book of Angels, If You Could See What I See, and Secrets & Mysteries of the World", 'Healing Your Body, Mind, and Soul: Learn to Reprogram Your Mind to Stay Healthy', 'Daddy', 'The Romulan Way', 'The Glass Bees', 'The Minotaur Takes a Cigarette Break', 'WerewolveSS', 'Drowned Hopes', 'High Risk: An Anthology of Forbidden Writings', 'River of Time: A Memoir of Vietnam and Cambodia', 'C.P. Cavafy: Collected Poems', 'Jamilia', 'The Seven Minutes', 'Naïve. Super', 'Confessor', "Padre Pio's Words of Hope", 'Holy Blood, Holy Grail', 'The Case of the Missing Marquess', 'Blessing the Boats: New and Selected Poems, 1988-2000', 'A Minor Apocalypse', 'Day of Judgment', 'The Beach', 'The Summer Garden', 'Jesus’ Son', 'The Sign of Four', "Firestar's Quest", 'Jennie', 'Far Tortuga', 'Thrush Green', 'I Am America', 'Elsie Dinsmore', 'Secrets of the Soil: New Solutions for Restoring Our Planet', 'Memories, Dreams, Reflections', 'Princess: A True Story of Life Behind the Veil in Saudi Arabia', 'The Traveling Vampire Show', 'A Spaniard in the Works', 'The Price of Admiralty: The Evolution of Naval Warfare from Trafalgar to Midway', 'Igraine the Brave', 'Mollie Peer: or, The Underground Adventure of the Moosepath League', 'Ten Philosophical Mistakes', 'Dragon Harper', "Sharpe's Devil", 'Riders of Judgment', "The Artist's Way: A Spiritual Path to Higher Creativity", 'Walt Disney Pictures Presents: The Prince and the Pauper', 'Fly Away Peter', 'The Living Shadow', 'Heart of Darkness and The Secret Sharer', 'Pather Panchali: Song of the Road', 'Plexus', 'In the Realm of Hungry Ghosts: Close Encounters with Addiction', 'Legend', 'The Fifth Sorceress', 'Transformation', 'Down Among the Women', 'The Magic of Ordinary Days', 'The Dawkins Delusion? Atheist Fundamentalism and the Denial of the Divine', 'Gideon the Cutpurse', 'The Nutmeg Tree', 'The Cement of the Universe: A Study of Causation', 'Inamorata', 'Gun Women: Firearms and Feminism in Contemporary America', 'A Murder of Quality', 'Final del juego', 'Alcatraz Versus the Evil Librarians', 'The Dreamers', 'Leonardo, the Terrible Monster', 'The Leopard', 'Horus Rising', 'The Alliance', 'Nausicaä of the Valley of the Wind, Vol. 1', 'Lord of the Deep', 'Scar Night', 'The New Drawing on the Right Side of the Brain', 'Dancing in the Dark', 'Night Soldiers', 'Standing at Armageddon: The United States, 1877-1919', 'Stone Cold', 'The World of Yesterday', 'The Snuggle Bunny', 'Doctor Who: The Last Resort', 'The Idea of India', 'Company K', 'You Are Not a Stranger Here', 'The Phoenix Exultant', 'What Matters Most is How Well You Walk Through the Fire', 'The Ear, the Eye, and the Arm', 'Carpentaria', 'Forbidden', 'Knots and Crosses', 'Wings of Fire: An Autobiography', "Hatter's Castle", "War Against the Weak: Eugenics and America's Campaign to Create a Master Race", 'La vie devant soi', 'Women, Race & Class', 'Dr. Bloodmoney', 'Çalıkuşu', 'یکی بود و یكی نبود', 'Mr. Midshipman Hornblower', 'The Princess and the Hound', 'The Toonies Invade Silicon Valley', 'The Murder on the Links', 'Autobiography of a Yogi', "Nobody's Princess", 'The Algonquin Wits', 'Une vie', 'Measuring the World', 'Dan Brown Omnibus: Angels and Demons / The da Vinci Code', 'Blue Light', 'Simple Prayers', 'The Coherence of Theism', 'Space', 'Castle of Wizardry', 'Scribbler of Dreams', 'Granny Dan', 'Going Gently', 'The Lost Prince', 'القرآن الكريم', 'Ordinary Men: Reserve Police Battalion 101 and the Final Solution in Poland', "Who Ordered This Truckload of Dung?: Inspiring Stories for Welcoming Life's Difficulties", 'Omens', 'Follow My Leader', 'Collected Ghost Stories', 'The White Feather', 'The Tragedy of Man', 'Feel the Fear and Do It Anyway', 'Nights at the Circus', 'Crystal Singer', 'Anna Édes', 'Henry and Cato', 'Crashing Through: A True Story of Risk, Adventure, and the Man Who Dared to See', 'Dependent Rational Animals: Why Human Beings Need the Virtues', 'Agent Zigzag: A True Story of Nazi Espionage, Love, and Betrayal', 'Does Your Mama Know?: An Anthology of Black Lesbian Coming Out Stories', 'Mannen som elsket Yngve', 'Heartsick', "Nobody's Fool", "Annie's Song", 'Seeds of Yesterday', 'Garden of Shadows', 'Pretty Little Mistakes', 'Secrets of the Morning', 'The Mask of Sanity', 'Rush to Us: Americans Hail Rush Limbaugh', "The Thief's Gamble", 'All That Glitters', 'Cut', 'خداحافظ گاری کوپر', 'Los hijos del Grial', 'The Punisher, Vol. 1: Welcome Back, Frank', 'Four Reigns', 'How to Be Alone', 'The Cat in the Hat Comes Back', "The Driver's Seat", 'Ghostwalk', 'Magic and Other Misdemeanors', 'The Goblin Reservation', 'Seven Gothic Tales', 'Dragon Slippers', 'Season of Migration to the North', 'The Promise of a New Day: A Book of Daily Meditations', "The Fourth Turning: An American Prophecy—What the Cycles of History Tell Us About America's Next Rendezvous with Destiny", 'The Extraordinary Adventures of Alfred Kropp', "The Bone Doll's Twin", 'In the Shape of a Boar', 'Pale Horse, Pale Rider', 'The Far Side of the World', 'The Pursuit of God: The Human Thirst for the Divine', "Le Morte d'Arthur: King Arthur and the Legends of the Round Table", 'Guardians of the West', 'Raising Hell: A Concise History of the Black Arts - and Those Who Dared to Practice Them', 'To Dance with Kings', 'Last Night at the Lobster', 'Beyond the Ridge', 'Phaedra: A Novel of Ancient Athens', 'The Ordinary Princess', 'Book of Shadows', 'The Coven', 'Scientology 8-8008: How to Increase Your Spiritual Ability from Zero to Infinity', 'Heartbreak & Triumph: The Shawn Michaels Story', 'Cheating Death, Stealing Life: The Eddie Guerrero Story', 'The Complete Fuzzy', 'Michelle Remembers', 'Grendel', 'Betrayed', 'The Smiths: Songs That Saved Your Life', 'Doctor Who: Storm Warning', 'Doctor Who: Reckless Engineering', 'Bloom', 'A Curious Earth', 'The Wind in the Rosebush and Other Stories of the Supernatural', 'Der Sandmann', 'Must a Jew Believe Anything?', 'Made in America', "God's Spy", 'Tristan', 'Moominsummer Madness', 'She: A History of Adventure', 'The Basketball Diaries', "The Nazi Officer's Wife: How One Jewish Woman Survived the Holocaust", 'The Killer Angels', 'The Old Man and Mr. Smith: A Fable', 'The History of the Qurʾanic Text from Revelation to Compilation: A Comparative Study with the Old and New Testaments', 'Incidences', 'Relativism: Feet Firmly Planted in Mid-Air', 'The Power That Preserves', 'When Things Fall Apart: Heart Advice for Difficult Times', 'Everlost', 'Willa by Heart', 'Vienna Prelude', 'Das Lächeln der Fortuna', 'Secret Passages', 'The Hundred Secret Senses', 'The Twilight Collection', 'Four Queens: The Provençal Sisters Who Ruled Europe', 'No One Here Gets Out Alive', 'Before I Say Goodbye', 'The Road to Avalon', 'Twilight Eyes', 'The Absolutely True Diary of a Part-Time Indian', 'Just Like Beauty', 'गोदान [Godaan]', 'Heavy Sand', 'The Tree of Knowledge: The Biological Roots of Human Understanding', 'Living on the Wind: Across the Hemisphere With Migratory Birds', "Captain Nemo's library", 'The Mystery of the Jade Tiger', 'Martian Time-Slip', 'Time Out of Joint', 'Discover Your Inner Economist: Use Incentives to Fall in Love, Survive Your Next Meeting, and Motivate Your Dentist', 'Falling for Chloe', 'Incendiary', 'The Vision and the Voice: With Commentary and Other Papers', 'The Witch of Blackbird Pond', 'The Spontaneous Healing of Belief: Shattering the Paradigm of False Limits', 'The Miracle of Theism: Arguments For and Against the Existence of God', 'Dead Simple', 'Introduction to Scientology Ethics', 'Kiss of Midnight', 'Mr. Norris Changes Trains', 'A Whisper of Wings', 'Bangkok 8', 'When Comes the Spring', 'Finding Peace, Happiness, and Joy', 'Stand a Little Taller: Counsel and Inspiration for Each Day of the Year', 'The Gentle Giants of Ganymede', 'Free Food for Millionaires', 'Kangaroo', 'Lone Survivor: The Eyewitness Account of Operation Redwing and the Lost Heroes of SEAL Team 10', 'The Door Within', 'One Rainy Night', 'A Countess Below Stairs', 'You Can Win : A Step by Step Tool for Top Achievers', 'The Golden Goblet', 'Noughts & Crosses', 'The Life and Adventures of Santa Claus', 'The House', 'Kiss of Crimson', 'The Apprentice', 'The Essential Writings of Ralph Waldo Emerson', 'The World Set Free', 'The Family Moskat', 'Systematic Theology Vol 1: Ethics', 'A Midnight Clear', 'Unapologetic Theology: A Christian Voice in a Pluralistic Conversation', 'Peak', "The Whisperers: Private Life in Stalin's Russia", 'Wise Children', 'Conjure Wife', 'Stepping Heavenward', 'The Terror Dream: Fear and Fantasy in Post-9/11 America', 'Capitães da Areia', "Before you're a stranger: New & selected poems", 'Demons of the Ocean', 'Shadowmancer', 'The Joss: A Reversion', 'Six Gothic Dramas (De Monfort / Orra / The Dream / The Family Legend / The Panthom / Whitchcraft', 'The Challenge', 'What Katy Did', 'Guardian Angels', 'Barren Ground', 'The Breadwinner', "Miracles of The Qur'an", 'Swami and Friends', 'The Rime of the Ancient Mariner', "An Arsonist's Guide to Writers' Homes in New England", 'The Futurological Congress: From the Memoirs of Ijon Tichy', 'The Midnight Tour', 'The Mystery of Holly Lane', 'In Defense of Internment: The Case for Racial Profiling in World War II and the War on Terror', 'The Secret of Skeleton Island', 'The Valley of Fear', 'The Cosmic Ordering Service: A Guide to Realising Your Dreams', 'Bambi', 'The Man Who Was Magic', 'Six Characters in Search of an Author', 'A Prayer for Katerina Horovitzova', 'Bloomability', 'Manufacturing Consent: Noam Chomsky and the Media', 'Beyond the Highland Mist', 'Rush Home Road', 'Book of Mormon, Doctrine and Covenants, Pearl of Great Price', 'The Curious Case of Benjamin Button', 'Forty Fathom Bank', 'From Doon With Death', 'The Dollhouse Murders', 'The Book of Ebenezer Le Page', 'The Journalist and the Murderer', 'The Lexus and the Olive Tree', "Vingt-quatre heures de la vie d'une femme", 'Four Essays on Liberty', 'Medea', 'The Misanthrope', 'Marvel Masterworks: The Amazing Spider-Man, Vol. 1', 'His Last Bow', 'Story of a Soul: The Autobiography of St. Thérèse of Lisieux', 'Web of Dreams', 'Hidden Jewel', "Parenthood by Proxy: Don't Have Them If You Won't Raise Them", 'The Tale of Benjamin Bunny', 'The Man Who Planted Trees', 'The Ceremonies', 'The Waterlord', 'The Bear Nobody Wanted', 'Born Free: A Lioness of Two Worlds', 'I, Jedi', 'Life Together and Prayerbook of the Bible', 'Tutunamayanlar', 'Gone Too Far', 'Lottery', 'Vampire City', 'Hard to Be a God', 'Rumble Fish', "There's a Nightmare in My Closet", 'Famine', 'Goodbye to Berlin', 'Rush Limbaugh Is a Big Fat Idiot: And Other Observations', 'When Rabbit Howls', 'The Castle of Crossed Destinies', 'The Halloween Tree', 'Destination: Void', 'House Atreides', 'Soul of the Fire', "Romeo's Ex: Rosaline's Story", 'Key of Light', 'Betrayal in Death', 'Palace Walk', 'On Certainty', 'The Old Man Who Read Love Stories', 'The Hour of the Star', 'Kokoro', 'Beasts', 'Gorky Park', 'Straight Talking', 'The One Minute Manager', 'Paterson', 'Under Milk Wood', 'The Gemini Contenders', 'The Ubu Plays: Ubu Rex / Ubu Cuckolded / Ubu Enchained', 'I Shall Not Be Moved', 'Unwind', 'The Secret of Dragonhome', 'The Pleasure of the Text', 'Sky Island', 'The Time-Image', 'Difference and Repetition', 'Writing and Difference', 'Ish', 'The Women of Brewster Place', 'Japanese Gothic Tales', 'In Light of Shadows: More Gothic Tales by Izumi Kyoka', 'Mutts', 'The Rainbow Fish', 'Born Confused', 'I Spit on Your Graves', 'Click, Clack, Moo: Cows That Type', 'The Rise and Fall of the Third Reich: A History of Nazi Germany', 'A Study of History, Abridgement of Vols 1-6', 'The Angel of Darkness', 'Fire And Rain: The James Taylor Story', 'If You Give a Mouse a Cookie', 'Best Ghost Stories of Algernon Blackwood', 'Untamed', 'Abarat', 'The Third Eye', 'A Storm of Swords: Steel and Snow', 'The Light in the Forest', 'The Last Seven Months of Anne Frank', 'Magyk', 'Battlefield Earth: A Saga of the Year 3000', 'Palestine', "The Atheist's Bible: An Illustrious Collection of Irreverent Thoughts", 'Olivia', 'Juventud en éxtasis, Vol. 1', "Le Hussard sur le toit de Jean Giono (Lire aujourd'hui)", 'The Wonderful Adventures of Nils', 'With the Old Breed: At Peleliu and Okinawa', 'Loving', 'Little Heathens: Hard Times and High Spirits on an Iowa Farm During the Great Depression', "Valor's Choice", 'The Cross and the Switchblade', 'Woman on the Edge of Time', 'The Seven Spiritual Laws of Success: A Practical Guide to the Fulfillment of Your Dreams', "Born Standing Up: A Comic's Life", 'The Story of Ferdinand', 'Look at Me', 'The Return of Philip Latinowicz', 'The Flounder', 'The Little Friend', 'The Ambassadors', 'Spellbound', 'The Calling', 'Dark Magick', 'Blood Witch', 'Awakening', 'The Lady in the Lake', 'One Corpse Too Many', 'The House at Pooh Corner', 'Riddley Walker', "REAL: THE LETTERS OF MINA HARKER AND SAM D'ALLESANDRO", "Parade's End", 'Adam și Eva', 'Polar Star', 'The g Factor: The Science of Mental Ability', 'Jurnalul fericirii', 'Time Must Have a Stop', 'The Happy Prince and Other Tales', 'The Educated Imagination', 'Precious Bane', 'Bel-Ami', 'The Castles of Athlin and Dunbayne', 'If Angels Burn', 'The Sorrow of War', 'Unforgiving Years', 'When It Happens', 'Fever 1793', 'Ombria in Shadow', 'Barbarians at the Gate: The Fall of RJR Nabisco', 'Why I Believe', 'Out of Africa', 'On Death and Dying: What the Dying Have to Teach Doctors, Nurses, Clergy and Their Own Families', 'Hitler and Stalin: Parallel Lives', 'The Complete Poetry and Prose', 'The 7 Habits of Highly Effective Teens: The Ultimate Teenage Success Guide', 'The Almost Moon', 'Embers', 'Nutuk', 'Ten Stupid Things Women Do to Mess Up Their Lives', 'Stormfire', 'Rise of the Evening Star', 'Altazor / Temblor del cielo', 'The Glorious Cause', 'Mercy Falls', 'A Single Shard', 'Train to Pakistan', 'Part of Our Time: Some Ruins & Monuments of the Thirties', 'Stellaluna', 'Omeros', 'Girl in the Shadows', 'He, She and It', 'The Iron Wall: Israel and the Arab World', 'Doctor Glas', 'How It Is', 'Kon-Tiki', 'Sunstone/Piedra De Sol', 'The Haunting of Toby Jugg', 'Picnic at Hanging Rock', 'War Horse', "Having Our Say: The Delany Sisters' First 100 Years", 'Witchling', 'Stray', "Why Mosquitos Buzz in People's Ears", 'Le Grand Meaulnes', 'The Great Upheaval: America and the Birth of the Modern World, 1788-1800', 'The White Boy Shuffle', 'The Phantom Coach: Collected Ghost Stories', 'Justine, or The Misfortunes of Virtue', 'The Lusiads', 'Long Way Back', 'The German Ideology Introduction to a Critique of Political Economy', 'The Palace of Dreams', 'The Sorrows of Satan; or, The Strange Experience of One Geoffrey Tempest, Millionaire', 'Villa Des Roses', 'Chicken Soup for the Soul', "Almost a Revolution: The Story of a Chinese Student's Journey from Boyhood to Leadership in Tiananmen Square", 'Shepherds of the Night', 'Witch Child', 'The Mystery of the Sea', "The King's Fifth", 'عطیه ی برتر', "The Puzzle Palace: Inside the National Security Agency, America's Most Secret Intelligence Organization", "Don't Mention the War: Northern Ireland, Propaganda and the Media", 'My Sweet Audrina', 'Late Victorian Gothic Tales', "Julia's Chocolates", 'Solitudes Crowded With Loneliness', 'Sangre de Campeón', 'Blue Moon Rising', 'Kramer vs. Kramer', 'Break No Bones', 'The Mist', 'مثنوی معنوی', "The Highlander's Touch", 'The Napping House', 'On Chesil Beach', 'The Fan Man', 'Fascinating Womanhood', 'War with the Newts', 'Phileine zegt sorry', 'Nada', 'The Witch of Portobello', 'The Beetle', 'Johnny Tremain', 'Someone Like You', 'Green Mansions', "The Queen's Confession", 'Maitreyi', "The Time of the Hunter's Moon", 'The Tender Years', 'Together Is All We Need', 'The Blind Side', 'Rashomon and Seventeen Other Stories', 'The Ultimate National Pokédex: Pokémon Diamond Version & Pearl Version', 'We So Seldom Look on Love', 'Escape', 'How Many Miles to Babylon?', "L'Événement", 'Level 7', 'The Greek Myths: Complete Edition', 'The White Goddess: A Historical Grammar of Poetic Myth', 'Revelation', 'Pompeii', 'The Upstairs Room', 'Refuge: An Unnatural History of Family and Place', 'Dawn on a Distant Shore', 'Now We Are Six', 'When We Were Very Young', "Hinds' Feet on High Places", 'The Pine Barrens', 'The Idea of Perfection', 'The Privilege of the Sword', 'The Story of My Life', 'The First Four Books of Poems', 'The Society of S', 'Angus and Sadie', 'Pantaleón y las visitadoras', 'My Story: "A Child Called It", "The Lost Boy", "A Man Named Dave"', 'Pilgrim', 'Three Day Road', "A Rake's Vow", 'In a Lonely Place', "God's Smuggler", 'The Little Engine That Could', 'Smack', 'Dinosaurs Before Dark', 'Panther in the Sky', 'The Quincunx', 'The Dot', 'A Dangerous Fortune', 'Grania: She-King of the Irish Seas', '1066 and All That: A Memorable History of England', 'If You Give a Moose a Muffin', 'If You Give a Pig a Pancake', 'Joan of Arc', 'The Temptations of Big Bear', 'The Chrysalids', 'Die Mitte der Welt', 'Riders in the Chariot', 'It Happened One Autumn', 'Up from Slavery', 'The Mozart Season', 'Pictures of Hollis Woods', 'A Short History of Tractors in Ukrainian', 'Miles: The Autobiography', 'The Pianist', 'Profiles in Courage', "Dr. Franklin's Island", 'Talking It Over', 'Forest of Secrets', "Anna's Book", 'A Matter of Days: Resolving a Creation Controversy', 'Who Was Adam?: A Creation Model Approach to the Origin of Man', 'Anansi the Spider: A Tale from the Ashanti', 'The Merchant of Death', 'The Enemy Within: Saving America from the Liberal Assault on Our Schools, Faith, and Military', 'A Pocket Full of Rye', 'The Pursuit of Love', 'Perfect Health: The Complete Mind/Body Guide', 'Ageless Body, Timeless Mind: The Quantum Alternative to Growing Old', 'Fruits Basket, Vol. 2', 'The Human Comedy', 'The Bus Driver Who Wanted to be God and Other Stories', 'The Court of the Air', 'In a Glass Darkly', 'The Wouldbegoods', 'Wicked!', 'Mr. Tickle', 'Stranger with My Face', 'The Wrong Boy', 'subUrbia', "The Hitchhiker's Guide to the Galaxy: A Trilogy in Four Parts", 'The Anatomy of the Nuremberg Trials: A Personal Memoir', 'The Gods of Mars', 'The Roman Spring of Mrs. Stone', 'Silent Night', 'Byzantium: The Apogee', 'Battle Angel Alita, Vol. 1', 'The Actual : A Novella', 'Pincher Martin', 'Understanding Analysis', 'Love, Stargirl', 'Love & Sleep', 'Ghosts I Have Met, and Some Others', "The Value in the Valley: A Black Woman's Guide Through Life's Dilemmas", 'The Imitation of Christ', 'Ways of Worldmaking', 'The Little Sister', 'La fugitiva', "I'd Tell You I Love You, But Then I'd Have to Kill You", 'The Ponder Heart', 'Murder on the Orient Express', 'The Cipher Garden', 'Bet Me', 'Las inquietudes de Shanti Andía', 'The Old English Baron', 'Balthazar', 'Fruits Basket, Vol. 8', 'Call It Courage', 'Silverwing', "The Children's Hour", 'Look Back in Anger', 'Translations', 'Vathek', 'Island of the Giant Pokemon', 'I Choose You', 'Dissemination', 'How the Steel Was Tempered', "Pete's a Pizza", 'People of the Wolf', 'The Viscount Who Loved Me', 'Harry Potter Series Box Set', 'Gone to Soldiers', 'The Star Rover', 'The Chatham School Affair', 'The Mansion', 'Live From Death Row', '100 Selected Stories', 'Atheist Delusions: The Christian Revolution and Its Fashionable Enemies', 'Tales of Unease', 'A Perfect Stranger', 'Full Circle', 'Palomino', 'Touching the Void', 'Winning', 'Rue Ordener, Rue Labat', 'A Book of Five Rings: The Classic Guide to Strategy', 'The Imaginary', 'After the First Death', 'Fall of Kings', 'Billy Bathgate', 'The Best of Pokémon Adventures: Yellow', 'Highland Velvet', 'Blue Bloods', 'And Afterward, the Dark: Seven Tales', 'The Eyes of the Overworld', 'Out of This World', 'Memoirs of a Revolutionary 1901-41', 'Divan-i Kebir Volume 4 (Meter 4): Bahr-i Muzari Ahrab-i Mekfut', 'Rimas y leyendas', "Louis de Bernières Box Set of 3 books: The War of Don Emmanuel's Nether Parts / Señor Vivo and the Coca Lord / The Troublesome Offspring of Cardinal Guzmán", 'The Haunted Hotel & Other Stories', 'The Golden', 'Prelude to Christopher', "Killer's Wedge", 'Dragonwings', 'Green Grass, Running Water', 'Lotte in Weimar: The Beloved Returns', 'Mrs Craddock', 'Sweetheart, Sweetheart', 'The Informed Heart', 'How to Talk About Jesus without Freaking Out with Study Guide', "Naomi's Room", 'Stars and Bars', 'Winter: A Berlin Family, 1899-1945', 'Errol Flynn: The Untold Story', 'Morality Play', 'The Ill-Fated Peregrinations of Fray Servando', 'The Tale of Tom Kitten', 'Matter', 'Of Marriageable Age', 'Red Seas Under Red Skies', 'The Eternal Smile: Three Stories', "St. Urbain's Horseman", 'The Postman', 'The Star Diaries: Further Reminiscences of Ijon Tichy', 'The Horrors of Oakendale Abbey', 'The Clique', "Milosz's ABC's", 'The Kiss', 'Winter in Madrid', 'What Was Lost', 'God, Creation, and Tools for Life', 'How to Argue and Win Every Time: At Home, At Work, In Court, Everywhere, Every Day', 'The Rain Before it Falls', 'A Man on the Moon', 'Shanna', 'A Rose in Winter', 'Ashes in the Wind', 'Islandia', 'The Greengage Summer', 'A Cancer Therapy: Results of Fifty Cases and the Cure of Advanced Cancer by Diet Therapy', 'Loving Frank', 'The Late Great Planet Earth', 'The Tell-Tale Heart', 'An Inspector Calls', 'Before They Are Hanged', 'The Waning of the Middle Ages', 'The Cleaner', 'Resurrection Men', 'The Seventh Dwarf', 'Mushishi, Vol. 1', 'Dying for Chocolate', 'Blood Crazy', "The Discovery of Freedom: Man's Struggle Against Authority", "Sharpe's Rifles", 'Children of the Arbat', 'There is a River: The Story of Edgar Cayce', 'The Female Man', 'Doctor Who: Colditz', 'Flor de obsessão: As 1000 melhores frases de Nelson Rodrigues', 'Ordeal by Innocence', 'Spin', "The Other Side and Back: A Psychic's Guide to Our World and Beyond", 'One Christmas', 'Silver Scream', 'The Confession', 'Whistling in the Dark', 'Black Trillium', 'La vida es sueño', 'Miss Pettigrew Lives for a Day', 'The Final Fall: An Essay on the Decomposition of the Soviet Sphere', 'The Religion', 'Mygale', 'The Redemption of Sarah Cain', 'Kiss Me Again, Stranger', 'The Unloved: From the Diary of Perla S.', 'The World at Night', 'Only Forward', 'The Arrival', 'An Occurrence at Owl Creek Bridge', 'The Key to Nicholas Street', 'The Ragged Trousered Philanthropists', 'The Island', 'El cuaderno gris: Un dietario', 'Christmas Jars', 'The Highly Sensitive Person: How to Thrive When the World Overwhelms You', 'The Last Book in the Universe', 'Harvest of Stars', 'The Vampire Tapestry', 'Damien the Leper: A Life of Magnificent Courage, Devotion and Spirit', 'A New World: An Epic of Colonial America', 'Small Favor', 'The United Methodist Hymnal', 'The Water Mirror', 'Martin Eden', 'Soulstorm', 'Holy Bible: New Living Translation', 'The Other Log of Phileas Fogg', 'The Best of Pokémon Adventures: Red', 'Faceless Killers', 'Middle Passage', 'The Bullet Collection', 'A Lantern in Her Hand', 'Bikini Planet', 'Great Escape', 'The Dog of the South', 'Toll the Hounds', 'On Wings of Song', 'The Integral Trees', "Going Gray, Looking Great!: The Modern Woman's Guide to Unfading Glory", 'Jirel of Joiry', 'Dead Heat', 'Ferien auf Saltkrokan', 'Let the Right One In', 'The Blade Itself', 'Last Argument of Kings', 'All My Friends are Superheroes', 'Night Probe', 'Slummy Mummy', 'Crossing Over: The Stories Behind the Stories', 'Dinner at the Homesick Restaurant / The Accidental Tourist / Breathing Lessons', "Sultana's Dream", 'Out of the Flames: The Remarkable Story of a Fearless Scholar, a Fatal Heresy, and One of the Rarest Books in the World', 'Polar Bears Past Bedtime', 'Witness', 'The Struggle for Mastery in Europe, 1848-1918', 'The Fade', 'Mystery of the Black Tower', 'Disney After Dark', "L'Œuvre au noir", 'Der Unbesiegbare', 'Poet in New York', "An Ordinary Woman's Extraordinary Faith", 'Little Brother', 'Le Comte de Monte-Cristo I', 'Engleby', 'Debunking 9/11 Debunking: An Answer to Popular Mechanics & Other Defenders of the Official Conspiracy Theory', 'Op-Center', 'Something Beautiful', "A Parent's Guide to Preventing Homosexuality", 'Junie B. Jones and the Stupid Smelly Bus', 'Lord of Fire', 'By the Light of the Moon', 'Ticktock', 'The Quarry', 'Mariana', 'The Punisher, Vol. 1: In the Beginning', "Cybele's Secret", 'Fräulein Else', 'The Ransom of Red Chief', 'Platero y yo', 'Saturday Night and Sunday Morning', 'More About Paddington', 'The Last Man', 'The Mitten', 'Where Late the Sweet Birds Sang', 'The Book of the New Sun', "The VBAC Companion: The Expectant Mother's Guide to Vaginal Birth After Cesarean", 'Legacy of Ashes: The History of the CIA', 'The White Russian', 'The Night Land', 'Cool Hand Luke', 'The Devil Rides Out', 'Gentle Ben', 'Diary of an Early American Boy', 'Die Astronauten', 'The Other Shore', 'The Universe Story: From the Primordial Flaring Forth to the Ecozoic Era--A Celebration of the Unfolding of the Cosmos', 'Phaedo', 'Doña Bárbara', 'Xorandor', 'The Mammy', 'Random Passage', 'Angel', 'Exit Unicorns', 'Morning Glory', 'The Vivisector', 'Ethan of Athos', 'The Complete Persepolis', 'Nightmare Encyclopedia: Your Darkest Dreams Interpreted', "An Inconvenient Book: Real Solutions to the World's Biggest Problems", "Queenmaker: A Novel of King David's Queen", 'Supernova: Ksatria, Puteri, dan Bintang Jatuh', 'The Mystery of Tally-Ho Cottage', 'How to Become King', 'The Outlander', 'The Secret Rites of Social Butterflies', 'Beau Geste', 'Tangled Webs', 'Der Untertan', 'The Gathering', 'Pollyanna', 'Parnassus on Wheels', 'The Real Mother Goose', 'Comet in Moominland', 'Ex-minnaar', 'H.I.V.E. Higher Institute of Villainous Education', "Le Roman de l'adolescent myope", 'Pokemon Chapter Book #03: Attack Of The Prehistoric Pokemon', 'Charizard, Go!', 'Pokémon: Sinnoh Handbook', 'The Oaken Throne', 'The Final Reckoning', 'The Nature of the Chemical Bond and the Structure of Molecules and Crystals; An Introduction to Modern Structural Chemistry.', 'The Coma', 'A Course in Astral Travel and Dreams', 'The Gruffalo', 'Doctor Who: The Chimes of Midnight', 'South Riding', "La Part de l'autre", 'My Son, My Son', 'Fame Is The Spur', 'Hitler: A Study in Tyranny', 'Dark Champion', 'Song in the Silence', 'Ingo', 'My Lady Notorious', 'King: A Street Story', 'Schooled', 'The Absolute Sandman, Volume 2', 'Curse of the Mistwraith', 'De donkere kamer van Damokles', 'Märchenmond', 'The Bells of Nagasaki', 'The Collected Stories of Katherine Mansfield', 'Das Echolot. Ein kollektives Tagebuch. 1.1. - 28.2.1943.', 'The Birds', 'The Best Ghost Stories of H. Russell Wakefield', 'Lucy in the Sky', 'A Disaffection', 'Wild Goose Chase', 'When Memory Dies', 'The Immortal', 'Icefields', 'Seven Moomintroll Books', 'Orcs', 'Dart', 'The Burning Times', 'Нефритовые четки', 'The Book With No Name', 'Uncanny Stories', 'Tamarind Woman', 'The Shepherd of the Hills', 'La reina estrangulada', 'The Legacy', 'When You Are Engulfed in Flames', 'A Beautiful Blue Death', 'The Fall of a Sparrow', 'Bloody Sunday: Massacre in Northern Ireland : The Eyewitness Accounts', 'Once', 'Bless the Child', 'How Could You Do That?!: The Abdication of Character, Courage, and Conscience', 'Private Peaceful', 'Untold Stories', 'The Castle Spectre', 'Your Secret Admirer', "Midshipman's Hope", "Lord Krishna's Cuisine: The Art of Indian Vegetarian Cooking", 'The Miracle of Forgiveness', 'Living My Life, Vol. 1', 'The Löwensköld Ring', 'Become a Better You: 7 Keys to Improving Your Life Every Day', 'Colorado Cache Cookbook: A Goldmine of Recipes', 'Legion of the Damned', 'Kaas', 'The Big Picture', 'Poison', 'Writ in Blood', 'Landsman', 'A Searching Heart', 'A Quiet Strength', '99 francs', 'No, David!', 'Shadow of the Minotaur', "Have a New Kid by Friday: How to Change Your Child's Attitude, Behavior & Character in 5 Days", 'The Wicker Man', "The Devil's Right Hand", 'Juntacadáveres', 'Shadow of a Bull', 'Het goddelijke monster', 'De helaasheid der dingen', 'The Yellow Sign and Other Stories', 'A Bridge for Passing', 'Heresy', 'Platoon Leader: A Memoir of Command in Combat', 'Ouran High School Host Club, Vol. 1', 'Worstward Ho', 'Steps', 'The Uncommon Reader', 'Panteón', 'La resistencia', 'Tríada', 'The Name of This Book Is Secret', 'Lonely Werewolf Girl', 'Wagner the Werewolf', 'You Went Away: A Novella', 'Dinner Along the Amazon', 'Not Wanted on the Voyage', 'Guard Of Honor: A Pulitzer Prize Winner', 'Sleeping with the Fishes', "Toliver's Secret", 'The Death of a President: November 1963', "Mutineers' Moon", 'பொன்னியின் செல்வன், முழுத்தொகுப்பு', 'Alone on a Wide Wide Sea', 'Dragon Sword and Wind Child', 'Jurgen', 'Hitman: My Real Life in the Cartoon World of Wrestling', 'The Candy Shop War', 'Zofloya', 'Ich bin dann mal weg: Meine Reise auf dem Jakobsweg', 'Cinderella Skeleton', 'Runaway: Diary of a Street Kid', 'The Lonesome Gods', 'House of Suns', "Parce que je t'aime", 'The Last Wish', 'Find Me', 'The Open Society and Its Enemies - Volume One: The Spell of Plato', 'Psychogeography: Disentangling the Modern Conundrum of Psyche and Place', 'Fabian: Die Geschichte eines Moralisten', 'Biedermann und die Brandstifter', 'En komikers uppväxt', 'The Power of Positive Thinking', 'What Is to Be Done?', 'Boneshaker', 'Constantine', 'Crawlers: A Novel', 'Aniara', 'Darkmans', 'Equador', 'Genesis Unbound: A Provocative New Look at the Creation Account', "Tower of the King's Daughter", "Feast of the King's Shadow", "Hand Of The King's Evil", 'The Fionavar Tapestry', 'Heavier Than Heaven: A Biography of Kurt Cobain', 'Blue Horse Dreaming', 'Danzig Passage', 'Atlantis', 'Transfigurations: Collected Poems', 'Class Trip', 'Wild America', 'Thunder Bay', 'Copper River', 'Our Ancestors: Cloven Viscount; Baron in the Trees; Non-Existent Knight', 'Open Horizons', 'History', 'Garden Spells', 'Latecomers', 'The Ka of Gifford Hillary', 'Fell', 'The Man of Bronze', 'On the Jellicoe Road', 'Breaking Dawn', 'The Great Chain of Being: A Study of the History of an Idea', 'Koning van Katoren', 'The Recruit', 'The Gathering Storm', 'Physics of the Impossible', 'The Fury', 'Jack the Bodiless', 'The Earthsea Trilogy', 'Malpertuis: The Classic Modern Gothic Novel', "A Broom of One's Own: Words on Writing, Housecleaning & Life", 'Thief of Hearts', 'Angelique', 'The School at the Chalet', 'Tunnels', 'Galactic Derelict', 'Have You Found Her', '東京ラブストーリー', 'The Physics of Baseball', 'A Fortunate Life', 'My Most Excellent Year', 'Sunwing', 'Punishment and Responsibility: Essays in the Philosophy of Law', 'The True Meaning of Smekday', "The New Thought Police: Inside the Left's Assault on Free Speech and Free Minds", 'Free to Trade', "Why the Real Estate Boom Will Not Bust - And How You Can Profit from It: How to Build Wealth in Today's Expanding Real Estate Market", 'The Complete Illustrated Book of Yoga', 'Babel-17', 'Dark Harvest', 'Playing for Pizza', "Mickey's Christmas Carol", "Washington's Crossing", 'My Name is Jorge: On Both Sides of the River', 'The Power of Darkness: Tales of Terror', "It's Good to Be the King...Sometimes", 'Loaded', 'Sun and Moon, Ice and Snow', 'Hello Summer, Goodbye', 'The Wise Man’s Fear', 'Secrets of the Highlander', 'To Catch a Highlander', 'Wolf Totem', 'The 5000 Year Leap', 'Dreams of Leaving', 'Beaches', 'شيكاجو', 'The Broken Body: Journey to Wholeness', 'Soul Eater', 'The Seer of Shadows', 'The Alpine Traitor', 'No Time for Goodbye', 'Lateral Thinking', 'The Outlaw Demon Wails', 'Hell Week', 'Au bonheur des ogres', 'Täällä Pohjantähden alla 1–3', 'Dark River', 'Beer in the Snooker Club', "The Serpent's Tale", 'Embrace the Night', 'The Short Day Dying', 'The Ten-Year Nap', 'The Lion and the Unicorn: Socialism and the English Genius', 'Trump Never Give Up: How I Turned My Biggest Challenges into Success', 'Femeia în Roșu: Roman Retro', 'The Shock Doctrine: The Rise of Disaster Capitalism', 'One Piece, Volume 1: Romance Dawn', 'Rolf in the Woods: The Adventures of a Boy Scout With Indian Quonab and Little Dog Skookum', 'As Long As I Have You', 'The Stonekeeper', 'Your Blue-Eyed Boy', 'Ghost Hunt, Vol. 10', 'Lover Enshrined', 'A Stone for Danny Fisher', 'Peace Shall Destroy Many', 'Алмазная колесница', 'Filosofi Kopi: Kumpulan Cerita dan Prosa Satu Dekade', "My Mistress's Sparrow is Dead: Great Love Stories, from Chekhov to Munro", 'Os Maias', 'The Secret of Crickley Hall', 'Advice to a Young Wife from An Old Mistress', 'Hero', 'Nesohc: A new version of Jesus', 'Partial List of People to Bleach', 'John Brown', 'The Adventures of Paddington', 'The Luxe', 'Have a Little Faith: a True Story', 'The Savage Nation: Saving America from the Liberal Assault on Our Borders, Language, and Culture', "The Mage's Daughter", 'Summerhill Secrets: Volume 1', 'The Secret of Terror Castle', 'Darwinism Refuted: How the Theory of Evolution Breaks Down in the Light of Modern Science', 'Plus One: A Year In The Lfe Of A Hollywood Nobody', 'Evermore', 'Syzyfowe prace', 'The Dissident', 'The Girl Who Stopped Swimming', 'Warbreaker', 'Gora', 'Тёмные аллеи', 'An Odor of Sanctity', 'Buffy the Vampire Slayer: The Long Way Home', 'The Road Home', 'Persepolis, Volume 2', 'A Charlie Brown Christmas', 'Wonders of the West', 'Dreamers of the Day', 'Genghis: Birth of an Empire', 'Frost in May', 'This Republic of Suffering: Death and the American Civil War', 'The Laws of Spirit: Simple, Powerful Truths for Making Life Work', "The Vampire Queen's Servant", 'We Disappear', 'Class A', 'Prince of Thieves', 'The Fiftieth Gate: A Journey Through Memory', 'The Tree of Man', 'Lock and Key', 'The Black Stallion Legend', 'The Black Obelisk', 'Sword Song', 'Musicophilia: Tales of Music and the Brain', "Disney's Prince and the Pauper", "Walt Disney's Dumbo", 'Put Out the Fires', 'Through the Storm', 'Supernova: Akar', 'Thank God for Evolution!: How the Marriage of Science and Religion Will Transform Your Life and Our World', 'The Daring Book for Girls', 'The Midnight Bell', 'Princess Mia', 'The Ninth Configuration', 'Theophilus North', 'The Lost Garden', 'The Fire-Dwellers', 'Lycidas', 'Maximum Security', 'Les parents terribles', 'Tracing the Shadow', '20th Century Boys 1', 'The Book of Everything', 'Dreaming the Eagle', 'Footsteps In The Dark', 'Die Strudlhofstiege oder Melzer und die Tiefe der Jahre', 'Deep Dream of the Rain Forest', 'Before I Die', 'ERNEST HEMINGWAY ON WRITING', 'The Wednesday Letters', 'Succubus on Top', 'The Enchantress of Florence', 'Schlafes Bruder', 'Christmas on Ganymede and Other Stories', 'The Ordeal of Gilbert Pinfold', 'Scary Stories to Tell in the Dark', 'Chosen', 'Hari-Hari Bahagia di Bullerbyn', 'Written in Bone', 'The Bell in the Fog & Other Stories', 'Nachschrift zum "Namen der Rose"', 'Sea of Poppies', "The Virgin's Knot", 'Nightshade', 'The Ringing Ear: Black Poets Lean South', 'Obama: From Promise to Power', 'Ronggeng Dukuh Paruk', 'Necronomicon: The Best Weird Tales', 'Engine Summer', 'The Willows', 'Wir Kinder vom Bahnhof Zoo', 'The Diving Pool: Three Novellas', 'The Time of Light', "Patience dans l'azur", 'Mangeclous', 'The pleasantries of the incredible Mulla Nasrudin', 'Rule of Two', 'The Beyond', 'Watch for Me on the Mountain', 'All Shall Be Well; And All Shall Be Well; And All Manner of Things Shall Be Well', 'Rumah Kaca', 'The Girl in a Swing', "The Telephone Gambit: Chasing Alexander Graham Bell's Secret", 'Good Bones', 'How Fiction Works', 'Lady Killer', 'Remember Me?', 'People of Paradox: A History of Mormon Culture', 'Laskar Pelangi', 'The Seduction of the Crimson Rose', 'Holding the Man', 'Las batallas en el desierto', 'The Little Vampire', 'The Classic Italian Cook Book: The Art of Italian Cooking and the Italian Art of Eating', 'Blood Red, Snow White', 'The House at Pooh Corner and Now We Are Six', 'Taken', 'Queste', 'Rembulan Tenggelam Di Wajahmu', 'The Patriot', 'People of the Book', 'De avonden', 'The Lonely Londoners', 'Drunter und drüber - bk322', 'Catechism of the Catholic Church', 'Spring and All', 'The Hidden City', 'His Illegal Self', 'Midnight Awakening', 'Fury & Light', 'The Minds of Billy Milligan', 'La Confusion des sentiments', 'Attack of the Fiend', "A Choice of Kipling's Verse", "Walt Disney's Story Land", 'Mar Morto', 'Detective Story', 'La Horde du Contrevent', 'Bumi Manusia', 'Anak Semua Bangsa', 'Jejak Langkah', 'Who Has Seen The Wind', 'The Celebration', 'Banker To The Poor: The Autobiography Of Muhammad Yunus Of The Grameen Bank First Edition', 'Visits from the Afterlife: The Truth About Hauntings, Spirits, and Reunions with Lost Loved Ones', 'Selected Writings', 'Lessons in Truth', 'Doctor Who: The Genocide Machine', 'A Lick of Frost', 'Sang Pemimpi', 'Dreamhouse', 'Naked Masks: Five Plays', 'Iron Kissed', 'The International Jew', 'Admiral of the Ocean Sea: A Life of Christopher Columbus', 'Never Look Back', 'A Stainless Steel Rat is Born', 'The Protocols of the Learned Elders of Zion', 'A Peterson Field Guide to Rocks and Minerals', 'Essential Grammar in Use with Answers and CD-ROM Pack', 'Supernova: Petir', 'Halfway to the Grave', 'Vampire, Interrupted', 'The Accidental Vampire', 'Conversations with the Other Side', 'Nameless Night', 'Dingo', 'Beverly Hills Dead', 'Cuore', "Major: A Black Athlete, a White Era, and the Fight to Be the World's Fastest Human Being", 'Tainaron: Mail from Another City', '美少女戦士セーラームーン新装版 1', 'Religion and the Decline of Magic: Studies in Popular Beliefs in Sixteenth and Seventeenth Century England', 'The Bone Garden', 'The Trick Is to Keep Breathing', 'Plum Lucky', 'Obedience', 'Hollywood Hulk Hogan', 'The Forbidden Zone', 'Хищные вещи века. Чрезвычайные происшествия', 'The Dancers at the End of Time', 'An Echo in Time: Atlantis', 'Liebelei / Reigen', 'Staying On', 'The Truth About Enochian Magick', 'The Beckoning Fair One', 'Shadow of Power', 'Enchantress from the Stars', 'Robohnya Surau Kami', 'The Twelve Dancing Princesses: A Folk Tale from the Brothers Grimm', 'Wabi Sabi', 'Edensor', 'Bittersweet', 'Firefly Lane', 'The Monsters of Templeton', 'The House of Returned Echoes', 'Refugee Boy', 'Blood Beast', 'Der Schrecksenmeister', 'Montauk', 'Gang Leader for a Day: A Rogue Sociologist Takes to the Streets', 'Classic Victorian & Edwardian Ghost Stories', 'The Bishop of Hell and Other Stories', '5 cm', 'Daddy-Long-Legs', '512 Ants on Sullivan Street', '500 Great Books by Women', "Rhett Butler's People", 'Future Grace', 'Warriors Box Set', 'The Shame Of The Nation: The Restoration Of Apartheid Schooling In America', 'The New Bill James Historical Baseball Abstract', 'The Matrix', 'Silent Night 2', 'Pedigree Girls', 'Her Last Letter', "Animal's People", 'The Sorcerer in the North', 'THE AFFAIR OF THE POISONS - The Dennis Wheatley Library of the Occult', 'Speaks the Nightbird', 'Nightmare Seasons', 'Night Train to Lisbon', 'Child of Fortune', 'Unbelievable', "Walt Disney's The Sorcerer's Apprentice", 'Se questo è un uomo', 'Personal Demon', 'Memoirs of an Infantry Officer', 'Breaking Free', 'Conquering Horse', 'Mother Teresa: Come Be My Light: The Private Writings of the Saint of Calcutta', 'Success: Three Years in the Life of a Province', 'Puslu Kıtalar Atlası', 'Ketika Mas Gagah Pergi', 'Jennings Goes to School', 'Chili Con Corpses', 'The Lazarus Child', 'Ghost Stories of an Antiquary', 'Diary of an Oxygen Thief', 'The Kitchen Readings: Untold Stories of Hunter S. Thompson', 'The Portable Atheist: Essential Readings for the Nonbeliever', 'The Broken Sword', 'Dragon Thunder: My Life with Chogyam Trungpa', 'Holy Terror: Andy Warhol Close Up', 'The Number 73304-23-4153-6-96-8', "The Devil's Elixirs", 'The Pajama Girls of Lambert Square', 'What to Do About Alice?: How Alice Roosevelt Broke the Rules, Charmed the World, and Drove Her Father Teddy Crazy!', 'City of Ashes', 'The Law of Dreams', 'Once A Hero: A Novel', 'Lord of the Fading Lands', "I'll Bring You Buttercups", 'Ship of Gold in the Deep Blue Sea', 'Brood of the Witch-Queen', 'Pushing Up Daisies', 'Woman Power: Transform Your Man, Your Marriage, Your Life', 'Embrace the Darkness', 'The Art Thief', 'God in the White House: A History: How Faith Shaped the Presidency from John F. Kennedy to George W. Bush', 'Poor Fellow My Country', 'The Miracle at Speedy Motors', 'The Law', 'Change of Heart', 'S@motność w Sieci', "Dark Needs at Night's Edge", 'On the Edge of the Dark Sea of Darkness', 'Dazzle, Volume 07', 'Dazzle, Volume 08', 'A Prisoner of Birth', 'Dearest Hugh: The Courtship Letters of Gabrielle Drake and Hugh Mccoll, 1900 1901', 'Sliver', 'Delhi Is Not Far', "My Best Friend's Girl", 'Ariadne', 'The Winding Ways Quilt', 'English Grammar in Use With Answers: Reference and Practice for Intermediate Students', 'Audrey, Wait!', 'The Collected Tales', 'The Disreputable History of Frankie Landau-Banks', 'Willard', 'The Book of Love', 'Genghis: Lords of the Bow', 'Ansel Adams: 400 Photographs', 'Scooby-doo On Zombie Island', "God's Undertaker: Has Science Buried God?", 'The Art and Science of Learning Languages', 'Other Worlds Other Seas', 'Go-Go Girls of the Apocalypse', 'The Host', 'Notes from an Exhibition', 'The Cry and the Covenant', 'The Cream of the Jest', '100 Cupboards', 'Wake', 'Your Inner Fish: a Journey into the 3.5-Billion-Year History of the Human Body', 'Mockingbird', 'American Blood', 'Unquiet Dreams', 'The Year of the Whale', 'Two-Way Street', 'Found', 'Individuals: An Essay in Descriptive Metaphysics', 'Late Nights on Air', 'A Student of Weather', 'The Third Jesus: The Christ We Cannot Ignore', 'The Fortress', 'Wait and See', 'Life Themes: Spiritual Evolvement', "'Un-American' Hollywood: Politics and Film in the Blacklist Era", "The Dilbert Principle: A Cubicle's-Eye View of Bosses, Meetings, Management Fads & Other Workplace Afflictions", 'G is for Gumshoe', "Charley's Web", 'Dark Day in the Deep Sea', 'The Eye of the Storm', "Dina's Book", 'TekWar', 'Heroes of Ohio: 23 True Tales of Courage and Character', 'Melville: A Biography', 'The Case of the Careless Kitten', 'Knockemstiff', 'Wastelands: Stories of the Apocalypse', 'Elvis Presley', 'Predictably Irrational: The Hidden Forces That Shape Our Decisions', 'Cross Country', 'Ruled Britannia', 'Clermont', 'Uninvited', 'Peeled', 'The Declaration', 'Sharp Teeth', 'Saturnin', 'Engelszungen', 'Der Keller: Eine Entziehung', 'Whatever Makes You Happy', 'Raven Rise', 'Witch Blood', 'Killing Fear', "Uncle Ovid's Exercise Book", 'The Night Manager', 'Olive Kitteridge', "Boys' Sherlock Holmes", 'A Curse Dark as Gold', 'The October Horse', 'The ABC of Communism', 'Dream Chaser', 'The End of Food', 'The After House', 'Deeper Than the Dead', 'The Suspicions of Mr. Whicher: Murder and the Undoing of a Great Victorian Detective', 'Laments for the Living, Collected Stories', 'The Island Keeper', 'Et stort øde landskap', 'The Butterfly Dreams', 'Our Story Begins: New and Selected Stories', 'Perfect You', 'Blue-Eyed Devil', 'The Moonflower Vine', 'Malevil', 'Hokus Pokus', 'The White Tiger', 'White Nights', 'The Dream of Heroes', 'The Palace of Illusions', 'One Fine Day', 'The Shattered Rose', 'The Obsession of Sally Wing', 'Cold in the Earth', "Rebecca's World", "A Partisan's Daughter", 'The Case for Mars', 'Encyclopedia Mythologica: Fairies and Magical Creatures Pop-Up', 'The Ginseng Hunter', 'Baleful Beasts and Eerie Creatures', 'Transit', 'The Case of the Velvet Claws', 'Just Breathe', 'The Ever-Present Origin', 'Minoes', 'The Pout-Pout Fish', 'O Menino Maluquinho', 'If I Did It: Confessions of the Killer', 'Night Life', 'Supplying War: Logistics from Wallenstein to Patton', 'Breeding Ground', 'Elephant Run', 'The Sweet, Terrible, Glorious Year I Truly, Completely Lost It', 'She', 'The Singer', 'A Midsummer Tempest', 'Rodrick Rules', "Le Vieux qui lisait des romans d'amour", 'Magic Burns', 'The Shack', 'Narrenturm', 'Valley Of The Giant Skeletons', 'Soul Identity', 'The Origin', 'The House by the Churchyard', 'The Siege of Macindaw', 'The Life and Death of St. Kilda', 'Een schitterend gebrek', 'La vorágine', 'Tara', 'Stafford: Collected Stories', 'Gut gegen Nordwind', 'Snakehead', 'Athabasca', 'Testimone inconsapevole', 'The Manitou', "The Demon's Lexicon", 'The Final Warning', 'Mine to Possess', 'The Horse, the Wheel, and Language: How Bronze-Age Riders from the Eurasian Steppes Shaped the Modern World', 'Sunset Gun: Poems', 'I Heart You, You Haunt Me', 'A Fraction of the Whole', 'Mirror', 'Riceyman Steps', 'The Wells of Hell', 'De brief voor de koning', 'The Penderwicks on Gardam Street', 'Snuff', 'My Swordhand is Singing', 'Operator #5: Blood Reign of the Dictator', 'Kuyucaklı Yusuf', 'Exit Music', 'The Child from the Sea, Part 1 of 2', 'A Scandal in Bohemia', 'Un homme qui dort', 'The Opposite of Love', 'Charlatan', "The Devil's Company", 'The Man in the Picture', 'John Dies at the End', '18 Platoon', 'A Kestrel For A Knave', 'Lush Life', 'Mitologia: wierzenia i podania Greków i Rzymian', 'Solal', 'Железният светилник', 'The Necromancer', 'The Sisters Club', 'Death Song', 'Les cavaliers', 'Think Big and Kick Ass in Business and Life', "Irreligion: A Mathematician Explains Why the Arguments for God Just Don't Add Up", 'Inny świat', 'Wieża Jaskółki', 'Het huis van de moskee', 'The Geography of Love', 'World War Hulk', 'Shugo Chara!, Vol. 1: Who Do You Want to Be?', 'The Heroin Diaries: A Year in the Life of a Shattered Rock Star', "The Devil's Bones", 'Britannia Mews', 'Discipleship in the New Age II', 'The Fire Eternal', 'The Walking Dead, Vol. 8: Made To Suffer', 'The Temple of Death: The Ghost Stories of A. C. & R. H. Benson', 'The Fury / Dark Reunion', "Uncle Montague's Tales of Terror", 'The Adoration of Jenna Fox', 'Boys & Girls of Bookland', 'Ogniem i mieczem', 'Moralność pani Dulskiej', "Comrade J: Untold Secrets Of Russia's Master Spy In America After The End Of The Cold War", 'Seras-tu là?', "Peter's Room", 'Lintang Kemukus Dini Hari', 'The Likeness', 'Jantera Bianglala', "The Geography of Bliss: One Grump's Search for the Happiest Places in the World", "The Shoemaker's Tale", 'Stop Whining, Start Living', 'The Ghost Pirates', 'The Holy Bible: King James Version', 'Natural Gas in Asia: The Challenges of Growth in China, India, Japan and Korea', 'Little Things: A Memoir in Slices', 'Swallow the Ocean: A Memoir', "Nobody's Prize", 'Midnight Rising', 'The Witch in the Cherry Tree', 'Beyond Good and Evil: Prelude to a Philosophy of the Future', 'The Last Twilight', 'Breakaway: A Gail McCarthy Mystery', 'The Lady Elizabeth', 'Killing Critics', 'The Naomi Poems, Book One: Corpse and Beans', 'Ritual', 'Snowfall at Willow Lake', 'Farewell', 'The Secret Adventures of Charlotte Brontë', 'The Great Derangement: A Terrifying True Story of War, Politics, and Religion at the Twilight of the American Empire', 'Warsaw Requiem', 'The Lace Reader', 'My Own Devices', 'Amber Page and the Legend of the Coral Stone', 'Gas City', 'A Maine Christmas Carol', "Dawn's Light", 'The Flower Boy', 'Heathcliff At Home', 'The Dark Age', 'Maurice Guest', 'The Lunatics of Terra', 'The Untethered Soul: The Journey Beyond Yourself', 'Flash: ou le grand voyage', 'Time Spike (1)', 'Szafa', 'Good-Bye', 'Fire Study', 'The Boy Who Dared', 'Slash', 'City of Thieves', 'The Story of a Marriage', 'Lost on Planet China', 'The Little Town Where Time Stood Still (F): A Novel', 'L.A. Outlaws', 'Das Treibhaus', 'The Pig Did It', 'Flaggermusmannen', 'The Divorce Party', 'The Faith: What Christians Believe, Why They Believe It, and Why It Matters', "My Enemy's Cradle", 'A Million Miles in a Thousand Years: What I Learned While Editing My Life', "The Thing About Life is That One Day You'll Be Dead", "The Woman Who Wouldn't", 'Dark Desires After Dusk', 'Tribute', 'Wild Jinx', 'Empress', 'The Book of Dahlia', 'Skeletons at the Feast', 'Careless in Red', 'The Dark Domain', 'For the Love of Autumn', 'Death Note: Another Note - The Los Angeles BB Murder Cases', 'How to Build a House', 'Armageddon in Retrospect', 'No Wave: Post-Punk. Underground. New York. 1976-1980.', 'The Lake', "Sundays at Tiffany's", 'Odd Hours', 'Honey Paw and Lightfoot', 'A Cotswold Mystery', 'Moscow Rules', 'Frelseren', 'Beyond the Hoax: Science, Philosophy and Culture', 'Winter Study', 'Saatleri Ayarlama Enstitüsü', 'The Understory', 'Windy City: A Novel of Politics', 'Dark Hollow', 'Quiet, Please: Dispatches From A Public Librarian', "House Lust: America's Obsession With Our Homes", 'Jerusalem Interlude', 'The Return to Zion', 'How the Soldier Repairs the Gramophone', 'The Great Warming: Climate Change and the Rise and Fall of Civilizations', 'Airman', 'Daughters of Africa', 'The Coffin Club', 'Letters to a Devastated Christian', 'The Snowball: Warren Buffett and the Business of Life', 'Dark Debts', 'The Five Gates of Hell', 'How We Missed the Story: Osama Bin Laden, the Taliban & the Hijacking of Afghanistan', 'Angel Blood', 'Kipper', 'Shadows Return', 'Hell Soup: The Collected Writings of', 'Inheriting the Trade: A Northern Family Confronts Its Legacy as the Largest Slave-Trading Dynasty in U.S. History', 'El llano en llamas', 'Advanced Procedure & Axioms', 'Space Vulture', 'We Are Now Beginning Our Descent', 'The Garden of Last Days', 'The Nature and Destiny of Man, Vol 1', 'The Little Book of Atheist Spirituality', 'Bonk: The Curious Coupling of Science and Sex', 'The Day I Ate Whatever I Wanted: And Other Small Acts of Liberation', 'Pitch Black', 'The Department of Lost & Found', 'The Rise of Scourge', 'The Girl Who Could Fly', 'Pictures at a Revolution: Five Movies and the Birth of the New Hollywood', 'Deadly Exchange', 'Devil Bones', 'Ellana', 'Becoming Drusilla: One Life, Two Friends, Three Genders', 'Scientology 8-80: The Discovery and Increase of Life Energy', 'The Visitor', "It's Earth Day!", 'The Best Teacher Ever', 'Flood', 'Passage', 'Shades of Grey', 'Belong to Me', 'Slumberland', "Love the One You're With", 'The Battle of the Labyrinth', 'The Lost Stradivarius', 'A Passion Most Pure', 'Frontal Assault', 'The Eye of Argon', 'Red Wine for Breakfast', 'Unknown Means', 'Savvy', 'La Mécanique du cœur', 'The Monster Loves His Labyrinth', 'The Prosecution of George W. Bush for Murder', 'Underground', 'Mudbound', 'Secrets of a Shoe Addict', 'Silences', 'The Old Straight Track : The Classic Book on Ley Lines', 'The Inn of the Sixth Happiness', 'The Psychoanalysis of Racism, Revolution and Nationalism', "Hitler's Ideology: A Study in Psychoanalytic Sociology", 'A Wolf at the Table', 'Grip of the Shadow Plague', 'Taronga', 'Fables, Vol. 10: The Good Prince', "The Philosopher's Apprentice", 'Girl, Missing', 'Blood Ties', 'Blood Noir', 'Manfrone; Or, the One-Handed Monk', "Kushiel's Mercy", 'Still Alice', 'Princess Ben', 'Hold Me Tight: Seven Conversations for a Lifetime of Love', 'Playing with Fire', 'Religion and the Rebel', 'Massie', 'The Grand Design: A Simply Stated, User Friendly Guide to Living in the Universe', 'Downtown Owl', 'The Mysterious Benedict Society and the Perilous Journey', 'Sex-Pol: Essays 1929-1934', 'Sklepy cynamonowe / Sanatorium pod Klepsydrą', 'Child 44', 'Ways to Live Forever', 'Blind Faith', 'Eat That Frog! 21 Great Ways to Stop Procrastinating and Get More Done in Less Time', 'ديوان الإمام الشافعي', 'One Foot in the Grave', 'The Dead and the Gone', 'The Steel Remains', 'Uttermost Part of the Earth', 'Madita', 'House of Many Ways', 'Shaman Warrior, Vol. 6', 'Genius Squad', 'Donnie Brasco', 'The Soloist: A Lost Dream, an Unlikely Friendship, and the Redemptive Power of Music', 'Breath', 'Hold Tight', 'The Time Paradox', 'Hannah Montana 2/Meet Miley Cyrus', "Hannah Montana: Pro Vocal Women's Edition Volume 20", 'Blood River: A Journey to Africa’s Broken Heart', 'The Absolute Sandman, Volume 3', 'The Twisted Citadel', 'Cesar Pelli', 'In the Shadow of the Magic Mountain: The Erika and Klaus Mann Story', 'Greetings from Bury Park: A Memoir', 'The Last Watch', 'Take Our Cat, Please: A Get Fuzzy Collection', 'What I Talk About When I Talk About Running', 'The Drop Edge of Yonder', 'Symbiosis and Separation: Towards a Psychology of Culture', 'Cemetery Dance', 'Red Knife', 'Die Dämonen', 'Chill Out, Josey!', 'Fractured', 'The Calder Game', 'The Sugar Queen', 'Dearest Anne', "Such a Pretty Fat: One Narcissist's Quest to Discover If Her Life Makes Her Ass Look Big, or Why Pie Is Not the Answer", 'Leaves of Fortune', 'Ever', 'Between Earth and Sky: Our Intimate Connections to Trees', 'I Wanna Be Your Joey Ramone', 'Dragon Flight', 'Palace of Mirrors', 'Homesick', 'Artists in Exile: How Refugees from Twentieth-Century War and Revolution Transformed the American Performing Arts', 'Nothing to Lose', 'I Dreamed of Africa', 'The Bin Ladens: An Arabian Family in the American Century', 'Airhead', 'The Graveyard Book', 'The Chronicles of Amber: Volume I', 'Dictation: A Quartet', 'No Choice But Seduction', 'The South Beach Diet Supercharged: Faster Weight Loss and Better Health for Life', 'Rome 1960: The Olympics That Changed the World', 'Once Upon a Time in the North', 'Mad, Bad, and Sad: Women and the Mind Doctors', 'The Girl with No Shadow', 'The Plague of Doves', 'Seven Steps to Inner Power Workbook', 'The First Element: Secrets to Maximizing Your Energy', 'The Broken Window', 'From Dead to Worse', 'Ultimate Blogs: Masterworks from the Wild Web', 'A Good Indian Wife', 'The Dangerous Days of Daniel X', 'Christ of the Celts: The Healing of Creation', 'Married by Mistake', 'Stealing Athena', 'All-Star Batman and Robin, the Boy Wonder', 'Made in the U.S.A.', 'Identical', 'The Other Queen', 'We Might As Well Win: On the Road to Success with the Mastermind Behind a Record-Setting Eight Tour de France Victories', 'I Will Surprise My Friend!', 'Tell No One / Gone For Good', 'Steampunk', 'The Dark Lantern', 'Stop in the Name of Pants!', 'حياة في الإدارة', 'The Talented Mr. Ripley', 'Bewitching Season', 'Brisingr', 'All-Star Superman, Vol. 2', 'Nauti Dreams', 'Bird Lake Moon', 'Brain Rules: 12 Principles for Surviving and Thriving at Work, Home, and School', 'Shadow Country', 'Language for a New Century: Contemporary Poetry from the Middle East, Asia, and Beyond', 'Jhegaala', 'Keepers of the Flame', 'The Whole Truth', 'A Question of Honor: The Kosciuszko Squadron: Forgotten Heroes of World War II', 'The Eyes of the Beast', 'Savage Flames', 'Savage Lies', 'Falcon Moon', 'Savage Wrongs', 'The Word of God: Or, Holy Writ Rewritten', 'An Irish Country Village', 'The Key to Rondo', 'Ninth Grade Slays', "The Drunkard's Walk: How Randomness Rules Our Lives", 'Skin Deep', 'The Last Oracle', 'The Beast in Him', 'MultiReal', "Saturn's Children", 'De man die werk vond', 'The Iron Hunt', 'Frostbite', 'Spirit Lake', 'Holy Bible: The New King James Version', "La tournée d'automne", 'The Angel', 'Murder on Bank Street', 'A Passion Redeemed', 'Varney the Vampire; or, The Feast of Blood', 'Fearless Fourteen', 'The Tooth Fairy', 'All the Lovely Bad Ones', 'A Cool Million', 'Feast of Fools', "Say You're One of Them", 'Witchblade, Volume 3: Gods & Monsters', 'Acheron', 'Jonathan Franzen at the End of Postmodernism', 'Where You Came From', 'Simplexity: The Simple Rules of a Complex World', 'Corpo', 'Belle in the Big Apple: A Novel with Recipes', 'Exiles', 'Havemercy', 'Smoke Screen', 'Sacrifice', 'The Red Scarf', 'Wild Ones, Vol. 1', 'End of Days: Predictions and Prophecies About the End of the World', 'طبائع الاستبداد ومصارع الاستعباد', 'Engineering Mechanics: Dynamics', 'الرواية المستحيلة - فسيفساء دمشقية', 'Rogue', 'Twenty Chickens for a Saddle', 'Farewell Navigator: Stories', 'Best Served Cold', "Corduroy's Easter Party", 'The Last Lecture', 'Lord Tophet', 'Surprised by Hope: Rethinking Heaven, the Resurrection, and the Mission of the Church', 'The Last Leopard', 'Hospital: Man, Woman, Birth, Death, Infinity, Plus Red Tape, Bad Behavior, Money, God and Diversity on Steroids', 'Temporary People', 'Pirate Sun', 'Ink Exchange', 'Emiko Superstar', 'Armed and Glamorous', 'A Biography of The Prophet of Islam , In the Light of the Original Sources An Analytical Study', 'The Oxford Book of Modern Science Writing', 'Real Change: From the World That Fails to the World That Works', 'Iceman: My Fighting Life', 'The Sky Village', 'Inkdeath', 'L. Ron Hubbard Presents Writers of the Future 2', "The Spook's Mistake", 'House of Dark Shadows', "Mitsou: Ou comment l'esprit vient aux filles", 'Infected', 'This Charming Man', 'Girls in Trucks', 'The Last Patriot', 'Rapture Ready!: Adventures in the Parallel Universe of Christian Pop Culture', 'Turning Tables', 'Tsubasa: RESERVoir CHRoNiCLE, Vol. 18', 'A Princess in Berlin', 'Hello, Day!', 'Oh. My. Gods.', 'The Tyranny of Words', 'Warrior Rising', 'The Death Dealer', 'Why Not You and I', 'Blood Bank', 'Tim Madison, Galactic Warrior', 'Waiting for Nick / Considering Kate', 'My One Hundred Adventures', 'Sly Mongoose', 'Cry Wolf', 'Elementary Differential Equations with Boundary Value Problems', 'Stepping Stones', 'The Twilight Streets', 'Hot, Flat, and Crowded: Why We Need a Green Revolution – and How It Can Renew America', 'Sleep Softly', 'How Not to Write a Novel: 200 Classic Mistakes and How to Avoid Them—A Misstep-by-Misstep Guide', 'Captivity', 'How to Rig an Election: Confessions of a Republican Operative', 'The House at Midnight', 'Grande Sertão: Veredas', 'أولاد حارتنا', 'Hack/Slash Omnibus Volume 1', '9/11 Contradictions: An Open Letter to Congress and the Press', 'The Post-Office Girl', 'The Powers That Be', 'Planting the Trees of Kenya: The Story of Wangari Maathai', 'Or Else My Lady Keeps the Key', 'New World Translation of the Holy Scriptures', 'The Fungus', 'How the Soviet Man Was Unmade: Cultural Fantasy and Male Subjectivity under Stalin', 'JADE PHOENIX: The New Voices in Literature Award Finalist', 'Le cheval blanc', 'Dead Witches Tell No Tales', 'Hymns of The Church of Jesus Christ of Latter-day Saints', 'Past Imperfect', 'Fengriffen: A Chilling Tale', 'Vineyard Chill', 'Nixonland: The Rise of a President and the Fracturing of America', 'Prague Counterpoint', 'الهويات القاتلة', 'The Magician', 'The Shiksa Syndrome', 'Moses: The Servant of God', 'Kirinyaga', 'The Lancashire Witches', "Philippa Fisher's Fairy Godsister", 'Anthem of a Reluctant Prophet', 'With Every Breath', 'Love, Otto: The Legacy of Anne Frank', 'Tintin and the Secret of Literature', 'Transgender History', 'The Selected Essays of Gore Vidal', 'Strike Zone', 'The Bloody Shirt: Terror After Appomattox', 'Soldier of Orange', 'South of Hell', "Twisted Triangle: A Famous Crime Writer, a Lesbian Love Affair, and the FBI Husband's Violent Revenge", 'The Girl with the Dragon Tattoo', 'A Fórmula de Deus', "The Devil in Dover: An Insider's Story of Dogma v. Darwin in Small-Town America", 'Game for Anything', 'Franklin and Lucy', 'August: Osage County', 'Runaways, Vol. 8: Dead End Kids', 'Wingmen', 'The Pocket Guide to Mischief', 'A Quiet Belief in Angels', 'Into the Shadow', 'Nano Comes to Clifford Falls: And Other Stories', 'Flat Earth: The History of an Infamous Idea', 'Torchwood: Everyone Says Hello', 'Through a Glass, Deadly', 'Trace Memory', 'John', 'No No Yes Yes', 'Barnacle Love', 'To Taste Temptation', 'The Power of Praying Through the Bible', "Don't Look Now", 'Soldiers Of Reason: The RAND Corporation And The Rise Of The American Empire', 'Zombie Blondes', 'Submarine', 'A Few Seconds of Panic: A 5-Foot-8, 170-Pound, 43-Year-Old Sportswriter Plays in the NFL', 'Happy as a Tapir', 'The Giant Under the Snow', 'The Cellist of Sarajevo', 'Ben Israel: The Spiritual Odyssey of a Modern Man', 'Of Men and Their Mothers', "Tracy's Tiger", 'Eragon, Eldest & Brisingr', "The Suicide Index: Putting My Father's Death in Order", 'The Secret Life of CeeCee Wilkes', 'Trust Me', 'Love and Rockets, Vol. 24: The Education of Hopey Glass', 'The Diamond of Darkhold', 'Salvation in Death', 'Lovehampton', 'كليلة ودمنة', 'The Darkest Kiss', 'عابر سرير', 'فوضى الحواس', 'ذاكرة الجسد', 'One to Nine: The Inner Life of Numbers', 'The Comforts of a Muddy Saturday', 'The Last Time I Was Me', 'Inherit the Stars', 'Mad Kestrel', 'Ghostgirl', 'Opera and the Morbidity of Music (New York Review Collections', 'To See the Dawn: Baku, 1920-First Congress of the Peoples of the East', 'Rose Labyrinth', 'Noonspell', 'Last Dance At Jitterbug Lounge', 'Memoirs of an Ordinary Pastor: The Life and Reflections of Tom Carson', 'Herodotus 7-9', 'Toby Alone', 'Caught Running', 'Gone', 'Gift', 'Mama Makes Up Her Mind: And Other Dangers Of Southern Living', 'Intercourse', '50 Places to See Before You Die and 50 Places That Are a Lot More Fun', 'Jews and American Comics: An Illustrated History of an American Art Form', 'Almost Alice', 'The Dragonfly Pool', "James Potter and the Hall of Elders' Crossing", 'The Return', 'What Now?', 'The Singing', 'The Career Programmer: Guerilla Tactics for an Imperfect World', 'Faceless', 'Kill Whitey', 'The Heart of Danger', 'Oasis', "Black Wave: A Family's Adventure at Sea and the Disaster That Saved Them", 'Edward Bancroft: Scientist, Author, Spy', 'Buffy the Vampire Slayer: No Future for You', 'Witchblade, Volume 4: Eternal', 'Witchblade, Volume 5: First Born', 'The Big Sort: Why the Clustering of Like-Minded America is Tearing Us Apart', "Politics and Markets : The World's Political-Economic Systems", 'Backup', 'My Brain is Hanging Upside Down', 'Six Days of the Condor', 'No One Heard Her Scream', 'The Crossing of Ingo', "Old Masters, New World: America's Raid on Europe's Great Pictures", 'The Magicians and Mrs. Quent', 'Coffin County', 'My Heart Glow: Alice Cogswell, Thomas Gallaudet, and the Birth of American Sign Language', 'السجينة', 'Murder is Binding', 'Still Life With Psychotic Squirrel', 'Barracoon: The Story of the Last "Black Cargo"', 'Allergic to Girls, School, and Other Scary Things', 'The Gargoyle', 'The Gates of Zion', 'The Moon in the Mango Tree', '1001 Books for Every Mood', "The luck of Nineveh: Archaeology's great adventure", 'Aparição', 'Miracle Myx', 'Lydia', 'The Healer', 'One Minute to Midnight: Kennedy, Khrushchev and Castro on the Brink of Nuclear War', 'State Violence: Northern Ireland 1969-1997', 'Happy Voodoo Gris Gris', "Temples on the Other Side: How Wisdom from 'Beyond the Veil' Can Help You Right Now", 'Netherland', "Le Cycle d'Elric", 'The Floating Bridge: Prose Poems', "Rapunzel's Revenge", 'Я, бабушка, Илико и Илларион', 'Hotter Than Hell', 'The Blue Fox', 'The General', 'Antigua: The Land of Fairies, Wizards and Heroes', 'Barbarians to Angels: The Dark Ages Reconsidered', 'Peter Pan in Kensington Gardens', 'The Geometry of God', 'The Keepsake', 'Les Rois maudits', "Let's Dance, Little Pookie", 'A Daughter of Zion', 'Stolen Innocence', 'The Night of the Hunter', 'New Essays in Philosophical Theology', 'Pathogenesis', 'Tender Morsels', "Where's My Hug?", 'Волонтеры вечности', "The War Path: Hitler's Germany, 1933-1939", 'Getting Away is Deadly', 'استمتع بحياتك', 'Tigerheart', 'Pleasure Unbound', 'Late at Night', 'Oliver and Company', 'Super Cell Anemia', 'Pyar Ka Pehla Shehr / پیار کا پہلا شہر', 'One Bad Apple', 'The Sister', 'Não Te Deixarei Morrer, David Crockett', 'Debt Cures: "They" Don\'t Want You to Know About', 'Scientology The Fundamentals of Thought', 'Eve of the Emperor Penguin', 'Conversations with Kazuo Ishiguro', 'Faefever', 'Cudzoziemka', 'Amar se Aprende Amando', 'Wood, Concrete, Stone, and Steel: Minnesota’s Historic Bridges', 'December', 'The Wild Road', 'The Darkest Pleasure', 'One Hen: How One Small Loan Made a Big Difference', 'The Final Programme', 'Evernight', 'By Reason of Insanity', 'Nothing to Be Frightened Of', 'The James Boys: A Novel Account of Four Desperate Brothers', 'How Dolly Parton Saved My Life', 'The Rhino with Glue-On Shoes: And Other Surprising True Stories of Zoo Vets and their Patients', 'The Guernsey Literary and Potato Peel Pie Society', 'The Story of Edgar Sawtelle', 'The Revolution: A Manifesto', '365 Things Every Tea Lover Should Know', 'Sweet Mandarin: The Courageous True Story of Three Generations of Chinese Women and Their Journey from East to West', "God's Middle Finger: Into the Lawless Heart of the Sierra Madre", 'The Tomb of the Devils', 'CHANGES FOR ADDY', 'Left To Die', 'Witch Season: Summer & Fall', 'Last and First Men', 'لا تحزن', 'Revelations', 'Storm Born', 'രണ്ടാമൂഴം | Randamoozham', 'Evil in a Mask', 'Company of Liars', 'The Sweet Gum Tree', 'The Brass Verdict', 'Love and Peaches', 'The Hunger Games', 'The Uninhabited House', 'The Physics of NASCAR: How to Make Steel + Gas + Rubber = Speed', 'The Hero of Ages', 'The Sisterhood', 'The Underneath', "John Charrington's Wedding and Other Stories", "L'affaire du chien des Baskerville", 'Some Assembly Required', 'Traffic: Why We Drive the Way We Do and What It Says About Us', "Angel's Tip", 'Cherry Cake and Ginger Beer: A Golden Treasury of Classic Treats', 'Bully', 'The King Is a Witch', 'The Black Death: A Personal History', 'The Knight, Death and the Devil', 'Boca de Luar', 'Skinned', 'The Umbrella Academy, Vol. 1: Apocalypse Suite', 'Swallowing Darkness', 'The Summoning', 'Shadow Kiss', 'American Wife', 'The Angel of Grozny: Orphans of a Forgotten War', 'An Unwilling Guest', 'When I Go to Sleep', 'East of Wimbledon', 'Deadly Little Secret', 'Bones', 'America Alone: The End of the World as We Know It', 'The Nightingales of Troy: Connected Stories', "25 Things to Say to the Interviewer, to Get the Job You Want: Being Qualified Isn't Enough", 'The Given Day', 'Nameless', 'An Echo in the Bone', 'The Widows of Eastwick', 'The Long Road Home', "Erak's Ransom", 'My Custom Van: And 50 Other Mind-Blowing Essays That Will Blow Your Mind All Over Your Face', 'Bat-Manga! The Secret History of Batman in Japan', 'Accidentally Fabulous', 'Anathem', 'A Gift from Brittany: A Memoir of Love and Loss in the French Countryside', 'The Last Campaign: Robert F. Kennedy and 82 Days That Inspired America', 'The Fire', 'Gamer Girl', 'Powers, Vol. 1: Who Killed Retro Girl?', 'Let My People Go: 15 текстів про українську революцію.', 'Charlie Bone and the Shadow', 'Doomwyte', 'The Matters at Mansfield: Or, The Crawford Affair', 'Feminism and War: Confronting U.S. Imperialism', 'Black Sheep', "Devil's Brood", 'Star Wars Omnibus: Droids', 'Against Pain', 'Piecemeal June', 'One Hundred Virgins', 'Louise, The Adventures of a Chicken', 'If You Give a Cat a Cupcake', 'The Dragon Heir', 'A Spoonful of Poison', 'Necropolis', 'The Apostle: A Life of Paul', 'Wolfsbane and Mistletoe', 'Superstoe', 'Bone by Bone', 'All Heads Turn When the Hunt Goes By', "The Black Dagger Brotherhood: An Insider's Guide", 'Sons of Ishmael: Muslims Through European Eyes in the Middle Ages', "The Quilter's Kitchen", 'Unlaced', 'Cutting Loose', 'Third from the Sun', 'Making Jack Falcone: An Undercover FBI Agent Takes Down a Mafia Family', "The Martian General's Daughter", 'Moribito: Guardian of the Spirit', 'The Magical Christmas Cat', 'Angler: The Cheney Vice Presidency', 'The Republic of Thieves', 'A Good Woman', 'Sang Playboy Paris - The Parisian Playboy', 'The Heretic Queen', 'Hot Mahogany', "Princeps' Fury", 'Earth: The Sequel: The Race to Reinvent Energy and Stop Global Warming', 'Dream', "Hannah's Dream", 'Just After Sunset', 'Relentless Pursuit: A Year in the Trenches with Teach for America', "Where There's Smoke", "Things I've Been Silent About", 'Beerholms Vorstellung', 'Feuchtgebiete', "This Year's Model", 'Heir to Sevenwaters', 'Ghost Walk', 'The Maze of Bones', 'Home', 'Hate That Cat', 'Bonsaï', 'وحي القلم', 'Easy Innocence', 'Nightmares of an Ether Drinker', 'Strangers and Pilgrims', 'Black Ship', 'Tales of Terror from the Black Ship', 'رياض الصالحين', 'قصص الأنبياء', 'Master of the Delta', 'The Chocolate Snowman Murders', 'Terre promise', 'Miley Mania! Behind the Scenes with Miley Cyrus', 'MILEY CYRUS: This Is Her Life', 'The Man Must Marry', 'De Uitvreter, Titaantjes, Dichtertje, Mene Tekel', 'Boneyard', 'Seduce Me at Sunrise', 'Do No Harm', 'Living Dead Girl', 'The Gold Warrior', 'Hungry Girl: Recipes and Survival Strategies for Guilt-Free Eating in the Real World', 'Slave', 'All Pets Go To Heaven: The Spiritual Lives of the Animals We Love', 'Forgotten', 'Playing the Enemy: Nelson Mandela and the Game That Made a Nation', 'The Training of the Twelve', 'The Elegance of the Hedgehog', 'Der Geschmack von Apfelkernen', 'The Rogue Hunter', 'The Widow of Ratchets', 'Still Growing: An Autobiography', 'The Christmas Cookie Killer', 'Brava, Strega Nona!: A Heartwarming Pop-Up Book', 'Succubus Dreams', 'Starved for Science: How Biotechnology Is Being Kept Out of Africa', 'Unwelcome Bodies', 'Hardly Knew Her', 'Anon', 'Why We Suck: A Feel Good Guide to Staying Fat, Loud, Lazy and Stupid', 'Sweetheart', 'A Rose for Emily', 'Night World, No. 2', 'Handbook for Preclears', 'Eon: Dragoneye Reborn', 'Felicidade Clandestina', 'Nextville: Amazing Places to Live the Rest of Your Life', 'The Way to Happiness', 'Lord, Save Us from Your Followers: Why Is the Gospel of Love Dividing America?', 'Born of Night', 'Dreamsongs: A RRetrospective: Book One', "Let's Not Call It Consequence", 'City of Jade', 'The Occult Reich', 'Tales from Outer Suburbia', 'Claws That Catch', 'Wesley the Owl: The Remarkable Love Story of an Owl and His Girl', 'Chains', 'Snow Day!: A Winter Tale (Ready-to-Read Pre-Level 1)', 'Classic Ferrington Guitars: Featuring the Custom-made Guitars of Master Luthier Danny Ferrington', 'The World Is What It Is: The Authorized Biography of V. S. Naipaul', 'The Gone-Away World', "Kill Bin Laden: A Delta Force Commander's Account of the Hunt for the World's Most Wanted Man", 'A Mercy', "Leah's Way", 'Espresso Shot', 'Six Suspects', 'Indignation', 'Alex & Me: How a Scientist and a Parrot Discovered a Hidden World of Animal Intelligence—and Formed a Deep Bond in the Process', 'Death with Interruptions', 'Noddy Gets Into Trouble', 'My Bonny Light Horseman: Being an Account of the Further Adventures of Jacky Faber, in Love and War', 'Odd Girl Out', 'DEUS X', 'Margaret and I', 'The Bitter Road to Freedom: A New History of the Liberation of Europe', 'The Case of the Peculiar Pink Fan', 'The Resistance', "McSweeney's #28", 'The Unblemished', 'Everybody Knows This Is Nowhere', 'Heartless', 'Killer', 'Wicked', 'Wanted', 'Death Swatch', 'The Odd Egg', 'Doctor Who: Shining Darkness', 'Stargazer', 'Forward to Camelot', 'Alphabet', 'A Quiet Flame', 'My New Best Friend', 'Starlight Seduction', 'Dark Summer', 'The Lucky One', 'Ματωμένα χώματα', 'Wondrous Strange', "Midnight's Daughter", 'Zen and the Art of Vampires', 'Life and Death in the Third Reich', 'August Heat', 'O is for Oregon: Written by Kids for Kids', 'Man in the Dark', 'Les Années', "For All the Tea in China: Espionage, Empire and the Secret Formula for the World's Favourite Drink", 'The Battle of the Bulge', 'Good People', 'Church Unique: How Missional Leaders Cast Vision, Capture Culture, and Create Movement', 'Paddington: Here and Now', 'The Hour I First Believed', 'The Calling of Emily Evans', 'How to Be an Explorer of the World: Portable Life Museum', 'A Homemade Life: Stories and Recipes from My Kitchen Table', 'Sirena Selena vestida de pena', 'The Twilight Saga', 'Illegal Action', 'The King of Sting: The Amazing True Story of a Modern American Outlaw', 'Death By Cashmere', 'The Encyclopedia of Punk', 'Suicide Notes', "The Man Who Invented Christmas: How Charles Dickens's A Christmas Carol Rescued His Career and Revived Our Holiday Spirits", 'The Initiation / The Captive Part I', 'Night World, No. 1', 'Boys Will Be Boys: The Glory Days and Party Nights of the Dallas Cowboys Dynasty', "Frankly My Dear, I'm Dead", 'Ballistics', 'Global Sense: Awakening Your Power to Save Our World', 'Book of Mormon Stories', "Lament: The Faerie Queen's Deception", 'The Prodigal God: Recovering the Heart of the Christian Faith', 'Master Olof', 'Testimony', "The Four Seasons: A Novel of Vivaldi's Venice", 'Smile As They Bow', 'One Silent Night', "Monty Python's Tunisian Holiday: My Life with Brian", 'Ten Little Fingers and Ten Little Toes', 'A Lion Among Men', 'A Firefighter in the Family', 'Bone Crossed', 'Out of the Blue', 'Jamilti and Other Stories', "Always By My Side: A Father's Grace and a Sports Journey Unlike Any Other", 'Harry, a History: The True Story of a Boy Wizard, His Fans, and Life Inside the Harry Potter Phenomenon', 'Emil i Lönneberga', 'Sisters of Misery', 'Bottomfeeder: How to Eat Ethically in a World of Vanishing Seafood', 'Just Do It: How One Couple Turned Off the TV and Turned On Their Sex Lives for 101 Days', 'A Thousand Veils', 'The Christmas Chronicles', 'In a Far Country', 'Our Magnificent Bastard Tongue: The Untold History of English', 'The Sea Fairies', 'The Huntress', 'Face of a Killer', 'The Adventures of the Great Mouse Detective', 'When Science Goes Wrong: Twelve Tales From the Dark Side of Discovery', "Have a New Kid by Friday: How to Change Your Child's Attitude, Behaviour & Character in 5 Days", 'The House of Lost Souls', 'Dark Echo', 'سقف الكفاية', 'The Art of Racing in the Rain', "The Italian Millionaire's Marriage - Jodoh Sang Jutawan Italia", 'Living the Dream: Hannah Montana and Miley Cyrus: The Unofficial Story', 'Miley Cyrus/Hannah Montana', 'Rum River', 'Percy Jackson and the Olympians', 'Riven', 'The Mighty Queens of Freeville: A Mother, a Daughter, and the People Who Raised Them', 'Master of Surrender', 'Beat the Reaper', 'The Ultra Fuckers', 'Maximum Ride, Vol. 1', 'Shadows on the Hudson', 'Open Line', 'A Yes-or-No Answer: Poems', 'The Queen of Style', 'The Housekeeper and the Professor', "The Heretic's Daughter", 'The Scandal Plan: Or: How to Win the Presidency by Cheating on Your Wife', 'Truth for Germany: The Guilt Question of the Second World War', 'Impossible', 'The Doors of Perception', 'The Essential Dykes To Watch Out For', 'Pandemonium', 'The Great Outdoor Fight', 'The Big Squeeze: Tough Times for the American Worker', 'A Map of Home', 'The Horror Stories of Robert E. Howard', '30 Thoughts for Victorious Living', 'Buffy the Vampire Slayer: Wolves at the Gate', 'Lemur', 'Dazzle, Volume 09', "Real Education: Four Simple Truths for Bringing America's Schools Back to Reality", 'Crazy Love: Overwhelmed by a Relentless God', 'The Daily Coyote: Story of Love, Survival, and Trust In the Wilds of Wyoming', 'Born to Cheat: How Bush, Cheney, Rove & Co. Broke the Rules--From the Sandlot to the White House', 'A Tomb on the Periphery', 'Broken Hero', 'The Gate House', 'Locke & Key, Vol. 1: Welcome to Lovecraft', 'How Perfect Is That', 'Politics and Painting: Murals and Conflict in Northern Ireland', 'Malformed Frogs: The Collapse of Aquatic Ecosystems', 'Ender in Exile', 'Dorothy Of Oz, Volume 2', 'Six Geese A-Slaying', 'Drood', 'Every Soul a Star', 'Frozen Fire', "The Tsarina's Daughter", 'The Way of Shadows', 'Outliers: The Story of Success', 'The Complete Book of Chart Rectification', 'The Various Flavours Of Coffee', 'Hell Bent', 'Pack Animals', 'Comic Book Tattoo', 'The Best American Nonrequired Reading 2008', 'The Little Giant of Aberdeen County', 'Graceling', 'North of Beautiful', 'واحة الغروب', 'أن تكون عباس العبد', 'Magic to the Bone', 'The Hermaphrodite: An Hallucinated Memoir', 'The Bleeding Horse, and Other Ghost Stories', 'The Band of Gypsies', 'The Shadow of the Succubus / The Eternal Thirst: Two Novels of Horror', 'Transcendent Bread: 1976-1986', 'Fire in the Blood', 'The Blackstone Key', "In the Devil's Territory", 'The Mystery of the Blue Train', 'The Worm Ouroboros', '365 Nights: A Memoir of Intimacy', 'Star Wars Omnibus: Early Victories', 'Upon the Head of the Goat: A Childhood In Hungary 1939-1944', 'A Bold Fresh Piece of Humanity', 'Dewey: The Small-Town Library Cat Who Touched the World', 'Peer-e-Kamil/پیر کامل', 'Gilding Lily', 'No Rest for the Wiccan', 'The Retreat', 'Star Bright', 'Bruno, Chief of Police', 'To Catch A Thief', 'Murder Most Maine', 'Devil May Ride', 'The Christmas Sweater', "Arana's Visitor", 'Bad Science', 'Oh Dad! A Search for Robert Mitchum', 'O Que é Isso, Companheiro?', 'A Light in Zion', 'To Seduce a Sinner', 'Agincourt', 'Scat', 'The Withdrawal Method', 'Bones of the Hills', 'From the End of Heaven', 'The Dark Side: The Inside Story of How the War on Terror Turned Into a War on American Ideals', 'Taking Flight: Inspiration And Techniques To Give Your Creative Spirit Wings', 'Salmonella Men on Planet Porno', 'High Wire: The Precarious Financial Lives of American Families', 'When Will There Be Good News?', 'A Treatise on Cosmic Fire', "L'Effondrement du système technologique", 'Een glas melk', 'The Last Straw', 'Savage Abandon', 'Dragon Actually', 'About a Dragon', 'Undlas Main Ajnabi / اندلس میں اجنبی', 'Niklay Teri Talash Main / نکلے تیری تلاش میں', 'Death and Taxes', 'Rick Mears: Thanks: The Story of Rick Mears and the Mears Gang', 'Sense of Place and Sense of Planet: The Environmental Imagination of the Global', 'The Moomins and the Great Flood', 'The Murders in the Rue Morgue', 'The Living Dead', 'King of Sword and Sky', 'Morwyn', 'Ahead of the Curve: Two Years at Harvard Business School', 'Those Darn Squirrels!', 'The Lucy Family Alphabet', 'Extreme Measures', 'The Gates to Love and War', 'The Gifted Gabaldón Sisters', 'Takeover', 'From Ethiopia to Chechnya: Reflections on Humanitarian Action 1988-1999', "My Husband's Sweethearts", 'The 3 Mistakes of My Life', 'عاشقة في محبرة', 'Animorphs', 'Grimm Fairy Tales Volume 3', 'Goldengrove', 'Death of a Cozy Writer', 'عائد إلى حيفا', 'Hannah Montana - Songs from and Inspired by the Hit TV Series: Recorder Fun! Pack', 'Inkheart / Inkspell / Inkdeath', 'Mutiny On The Bounty', 'رحلتي من الشك إلى الإيمان', 'School for Love', 'In the Light of You', 'An Anthology of Graphic Fiction, Cartoons, and True Stories: Volume 2', 'Long Shadows', "The Magician's Apprentice", 'Every Man Dies Alone', 'Metropole', 'Queen of Song and Souls', "Intern: A Doctor's Initiation", 'Coincidences', 'A Time to Tell', 'Blood Sport', '"Have You Seen...?": A Personal Introduction to 1,000 Films', "If You're Reading This, It's Too Late", 'El caballero de la armadura oxidada', 'Why Is God Laughing?: The Path to Joy and Spiritual Optimism', 'Hotel on the Corner of Bitter and Sweet', 'Death Note Box Set', "The Lover's Knot", 'الأيام', 'Veil of Midnight', 'One Dog Happy', 'The Drowned Life', 'The Devouring', 'Vampyres of Hollywood', 'Angel Girl', 'The Absolute Sandman, Volume 4', 'Born to Read', 'The Darkness: Accursed, Volume 1', 'Got You Back', "L'amico ritrovato", 'Swords Against Death', "Jessica's Guide to Dating on the Dark Side", 'The Ten Thousand', 'Watch Me', 'In Hovering Flight', 'The Winter Sea', 'Fables, Vol. 11: War and Pieces', 'Aya of Yop City', 'Audition', 'Max', 'Confessions of a Counterfeit Farm Girl: A Memoir', 'Heart and Soul', 'The Lost City of Z: A Tale of Deadly Obsession in the Amazon', 'China Lake', 'Mystical Traveler: How to Advance to a Higher Level of Spirituality', "How Harry Cast His Spell: The Meaning behind the Mania for J. K. Rowling's Bestselling Books", 'The Blaft Anthology of Tamil Pulp Fiction, Vol. I', 'All You Need is Love', 'The Forgotten Garden', 'Divine Justice', 'The Dragon Princess', 'Forever Changes', 'The Wasted Vigil', 'Dos velas para el diablo', 'The Secret Scripture', 'Tim & Tom: An American Comedy in Black and White', 'Men of the Otherworld', 'The Unnameables', 'John Lennon: The Life', 'The Superorganism: The Beauty, Elegance, and Strangeness of Insect Societies', 'The Best American Comics 2008', 'Payback: Debt and the Shadow Side of Wealth', 'The Warded Man', 'The Weight of Heaven', 'The Forest of Hands and Teeth', 'Oneiromance', 'The January Dancer', 'Corambis', 'ثلاثية غرناطة', 'The Struggle Outside', 'Guardian', "Walt Disney's Mother Goose", 'Istanbul Noir', 'Nudge: Improving Decisions About Health, Wealth, and Happiness', 'Too Close to Home', "Faro's Daughter", 'Bliss', "Godless: How an Evangelical Preacher Became One of America's Leading Atheists", 'The Glassblower of Murano', 'Turn Coat', 'White Witch, Black Curse', 'Through Black Spruce', 'يوميات نائب في الأرياف', 'أرز باللبن لشخصين', 'Clear as the Moon', 'The Ayatollah Begs to Differ: The Paradox of Modern Iran', 'حول العالم في 200 يوم', 'Continuous Cables: An Exploration of Knitted Cabled Knots, Rings, Swirls, and Curlicues', 'زوجة أحمد', 'Snow Blind', 'يوتوبيا', 'Fruitless Fall: The Collapse of the Honey Bee and the Coming Agricultural Crisis', 'Cracked Up to Be', 'I Am a Little Fox', 'The Shape of the Beast: Conversations with Arundhati Roy', 'Disappearance Diary', 'The Dunwich Horror and Other Stories', "Doctor Olaf van Schuler's Brain", "The Case Against Barack Obama: The Unlikely Rise and Unexamined Agenda of the Media's Favorite Candidate", 'Liberation: Being the Adventures of the Slick Six After the Collapse of the United States of America', 'Jelena, žena koje nema', 'One False Note', 'جدد حياتك', 'عزازيل', 'Curse the Dawn', 'Without Warning', 'Lord of Misrule', 'Elianto', 'Collections of Nothing', 'Moonlight', 'The Backyardigans "The Traveler\'s Tale"', "At Grave's End", 'More Ghost Stories of an Antiquary', 'Night World, No. 3', 'In the Dark', 'Kiss of a Demon King', "The Witch's Grave", 'Cutting for Stone', 'The Stepsister Scheme', 'The Shadow Queen', 'American Savior: A Novel of Divine Politics', 'Non Violent Communication A Language of Life', 'CPR for Dummies', 'The Marie Selby Botanical Gardens Illustrated Dictionary of Orchid Genera', 'Twilight: The Complete Illustrated Movie Companion', 'The Twilight Saga: The Official Illustrated Guide', 'American Widow', 'Conspirata', 'Bukkakeworld', 'The Eye of the Moon', 'Go Fetch!', 'Knife', 'Deep Dish', 'Fade', 'رسائل غسان كنفاني إلى غادة السمان', 'آينشتين والنسبية', 'Victory or Violence - The Story of the AWB of South Africa', 'A Matter of Justice', 'The Captive Part II / The Power', 'The Key to Zion', 'Nauti Intentions', 'The Witch Of Prague & Other Stories', "Bad Girls Don't Die", 'Fool', 'Centuria. Cento piccoli romanzi fiume', 'An Irish Country Christmas', 'The Invention of Air', '1/4 جرام', 'Jesus Our Eucharistic Love', 'Princess of the Midnight Ball', 'Marcelo in the Real World', 'Ghost Radio', 'Y: The Last Man - The Deluxe Edition Book One', 'Handle with Care', 'Counter-Knowledge: How We Surrendered to Conspiracy Theories, Quack Medicine, Bogus Science and Fake History', 'The Star Realm', 'Dragon Ring', 'The Curse of Santos Jones', 'Call Me Ted', 'A God in Ruins', 'The Winners Manual: For the Game of Life', 'Rookwood', 'Grave Goods', 'Teheran, een zwanezang', "Shadow's Edge", 'Beyond the Shadows', 'The Obama Nation: Leftist Politics and the Cult of Personality', 'Anthology of Australian Aboriginal Literature', 'The Kindly Ones', 'Nothing Real Can Be Threatened: Exploring a Course in Miracles', 'xxxHOLiC, Vol. 13', 'Nina Schenk Gräfin von Stauffenberg: Ein Porträt', 'City of Glass', 'Pilate', 'Three Cups of Tea', 'العنكبوت', 'The Skook', 'The Spectacular Now', 'Marveltown', 'Improvisation und Theater', 'Why the Universe Is the Way It Is', 'Eyes Like Stars', "Angels' Blood", 'Psychic Healing: Using the Tools of a Medium to Cure Whatever Ails You', 'Tribes: We Need You to Lead Us', 'La Faustin', 'ڤيرتيجو', 'Swoon', 'No Survivors', 'Maten al león', "A Dog in a Hat: An American Bike Racer's Story of Mud, Drugs, Blood, Betrayal, and Beauty in Belgium", 'The Sign', 'Deadly Gift', 'Over You', 'The Oxford Project', 'How We Decide', 'Just the Sexiest Man Alive', 'Randalls Round', 'The Scent of Cinnamon', 'Ghouls in My Grave', 'Ceremonial Violence: Understanding Columbine and Other School Rampage Shootings', "Bartlett's Rule", 'Sent', 'The Independence of Miss Mary Bennet', 'Shadows of the Workhouse', 'Mother Puncher', 'Sashenka', 'Crossing Hitler: The Man Who Put the Nazis on the Witness Stand', 'Nightfall', 'Memoirs of a Chinese Revolutionary', 'Garfield Minus Garfield', 'Legacy of Honor', 'Firefly', 'The Tales of Beedle the Bard', 'Shark Music', 'Echo of a Curse', 'Timeless Wisdom', 'Bidadari Bidadari Surga', 'Vita Nostra', 'Palimpsest', 'True Colors', 'Discovering Pig Magic', 'El viajero', 'The Grass Arena', 'Dream Warrior', 'The Demigod Files', 'Patient Zero', 'Perfect Fifths', 'Fifteen Animals!', 'Double Cross', 'Why Evolution Is True', 'The 7th Victim', "Wangari's Trees of Peace: A True Story from Africa", 'Take One', 'Hannah Montana and Miley Cyrus - Best of Both Worlds Concert', 'La 25e heure', "War's Unwomanly Face", 'Kino Im Dienst Der Propaganda, Der Politik Und Des Krieges', 'What I Saw and How I Lied', 'Smooth Talking Stranger', "Change We Can Believe In: Barack Obama's Plan to Renew America's Promise", 'The Irish Americans: A History', 'Asterios Polyp', 'Need', 'Our Bodies, Our Crimes: The Policing of Women’s Reproduction in America', 'Camille Saint-Saëns: On Music and Musicians', 'Little Bee', 'Commando: A Boer Journal Of The Boer War', 'A Great Idea at the Time: The Rise, Fall, and Curious Afterlife of the Great Books', 'A Face at the Window', 'Frostbitten', 'White Logic, White Methods: Racism and Methodology', 'Backcountry Roads--Idaho', 'Hunted', 'The Manual of Detection', 'Firedrake', 'Discourses and Selected Writings', "Growing Citrus: The Essential Gardener's Guide", 'The Private Patient', 'Calling Mr. Lonely Hearts', "Geronimo's Valentine", 'Uncanny X-Men: Divided We Stand', 'A Rule Against Murder', 'Snake Dreams', 'Maryamah Karpov: Mimpi-mimpi Lintang', 'Tales of the Greek Heroes', 'A Game Of Hide And Seek', 'Sex and the New You: For Young Men Ages 13-15', 'American Rust', 'How to Make Friends with Demons', 'Perfect Chemistry', 'The Foundation Pit', 'Expect Miracles: The Missing Secret to Astounding Success', 'Angelica And Francesca', 'Portobello', 'Baby Jane', 'Christmas is Murder', 'The Dark Chamber', 'Ghost Hunter', 'The American Journey of Barack Obama', 'The Crown Conspiracy', 'Magic Strikes', 'The Pines', 'My Fair Godmother', 'Knowing Jack', 'Marvel Chronicle', 'The Age of Wonder: How the Romantic Generation Discovered the Beauty and Terror of Science', 'If I Stay', 'Knowing People: The Personal Use of Social Psychology', 'The Sitting Swing: Finding Wisdom to Know the Difference', 'Beyond the Veil', 'La Medusa', 'Of Lizards and Angels: A Saga of Siouxland', 'The Soldiers of Halla', 'Maverick', 'The Order of Odd-Fish', 'Word of Honor', 'Some Girls Bite', 'Assassin Study', 'The Book of Basketball: The NBA According to The Sports Guy', 'To Love What Is: A Marriage Transformed', 'Under the Black Ensign', 'رباعيات صلاح جاهين', 'Dragan Radelscu & The Vampires Of Paris', 'Black Spirits and White: A Book of Ghost Stories', 'Night Shivers: The Ghost Stories of J.H. Riddell', 'Gone Tomorrow', 'Confidential Communications', 'Desire Unchained', 'Sapphique', 'Midnight Sun [2008 Draft]', 'A Little Touch of Drama', 'Arctic Fox: Life at the Top of the World', "Hermes' Viper", 'Lincoln: The Biography of a Writer', 'The Clone', 'The Scarecrow', 'The Templars: History & Myth', 'Galway Bay', 'The Last Olympian', 'How to Avoid Huge Ships', 'Winter in Tokyo', 'How to Avoid Huge Ships: And Other Implausibly Titled Books', 'Going Too Far', 'Willow', 'The Three Legions', 'Breakneck', 'Royal Target', "Death's Daughter", 'Pride', 'The Sorceress', 'The Tourist', 'Pygmy', 'Suicide', 'A Morte Melancólica do Rapaz Ostra & Outras Estórias', "Ellana, l'Envol", 'Honolulu', 'The Poison Throne', 'Loneliness as a Way of Life', 'By Royal Command', 'Yemenite Midrash: Philosophical Commentaries on the Torah: An Anthology of Writings from the Golden Age of Judaism in the Yemen', 'The Guaymas Chronicles: La Mandadera', 'رجال في الشمس', 'מוות בוונציה', 'The Help', 'Passion Unleashed', 'Dust of Dreams', 'The Dragon Keeper', 'The City & the City', 'The Ultimate Challenge Is To Live Healthy!', 'Vlad: The Last Confession', 'The Love We Share Without Knowing', 'Celebutards: The Hollywood Hacks, Limousine Liberals, & Pandering Politicians Who Are Destroying America', "L'année dernière à Marienbad", "Santa's Angels", 'Nineteen Eighty', "The Future's So Bright I Can't Bear to Look", 'Shattered Reality', 'L.A. Candy', 'Godverdomse dagen op een godverdomse bol', 'Skip Beat!, Vol. 18', 'Ashes of Midnight', 'The Beast with Five Fingers', 'Nocturnes: Five Stories of Music and Nightfall', 'Life Sentence', 'Dead Boys: Stories', 'The Empress of Mars', 'The Last Question', 'Medusa', 'Home Safe', 'Rectoverso', 'Race, Incarceration, and American Values', 'Behind the Grand Ole Opry Curtain: Tales of Romance and Tragedy', 'Sin is not a Four Letter Word', 'What Worse Place Can I Beg in Your Love?', 'A Fair Country: Telling Truths About Canada', 'Carpet Ride', '11 Birthdays', 'The Physick Book of Deliverance Dane', 'Percy Jackson and the Sword of Hades', 'Der Seelenbrecher', 'Reading by Lightning', 'Grimm Fairy Tales Volume 4', 'The Private Abuse of the Public Interest: Market Myths and Policy Muddles', 'One Native Life', 'Doctor Who: The Forever Trap', 'Sledge Patrol: A WWII Epic Of Escape, Survival, And Victory', 'Taking Work Home', 'The Faceless Ones', 'The Man Who Emptied Death Row: Governor George Ryan and the Politics of Crime', 'Sookie Stackhouse 7-copy Boxed Set', 'The Broken Thread', 'Nobody Move', "The Angel's Game", 'Captives', 'Drowning Lessons: Stories', 'One Second After', 'Bog Baby', 'A Reliable Wife', 'Finnikin of the Rock', 'Syren', 'رأفت الهجان', 'Eternal', 'Health at Every Size: The Surprising Truth About Your Weight', 'The Duchess', 'Relentless', 'Sum: Forty Tales from the Afterlives', 'Chinese Communist Party in Power', 'Brooklyn', 'Legs', 'Tinkers', 'Night of the Crabs', 'Wishful Drinking', 'Whispers of the Dead', 'El africano', 'Sweet Dreams', 'Dostoevsky: A Writer in His Time', 'Who Would Jesus Kill?: War, Peace, and the Christian Tradition', "While I'm Falling", 'Grand Canyon: A Trail Through Time', 'The Cadaver of Gideon Wyck', 'ESV Study Bible', 'George Sprott, 1894-1975', 'Scattered Graves', 'My Judy Garland Life: A Memoir', 'Nigella Christmas: Food, Family, Friends, Festivities', 'The Girl Who Played with Fire', "Who's That Girl?", 'Kumari: Goddess Of Gotham', 'Secrets of Truth and Beauty', 'Pretty in Plaid', 'The World is Fat: The Fads, Trends, Policies, and Products That Are Fatteningthe Human Race', 'The Age of Entanglement: When Quantum Physics Was Reborn', 'Lover Avenged', 'Grimm Fairy Tales: Tales from Wonderland vol 1', 'Royal Blood', 'De blinde muur', 'The Girl Who Chased the Moon', 'Corduroy Mansions', 'Crouching Vampire, Hidden Fang', "It's Not You, It's Me", 'Being Nikki', 'Capitol Reflections', 'Then', 'From the Bottom of the Heap: The Autobiography of Black Panther Robert Hillary King', 'What’s Going On?: The Meanderings of a Comic Mind in Confusion', 'Succubus Heat', 'Turning Idolater', 'Wintergirls', 'Fragile Eternity', 'Father Mine', 'Dead and Gone', 'Waiting for You', 'The Doomsday Key', 'Valkyrie: The Story of the Plot to Kill Hitler, by Its Last Member', 'A Darkness Forged in Fire', 'Cut & Run', 'Fahrenheit 451: The Authorized Adaptation', 'The Kings of Clonmel', 'Know Your Bible: All 66 Books Explained and Applied', 'A Modest Proposal', 'Radical Womanhood: Feminine Faith in a Feminist World', 'Carpe Corpus', 'Skin Trade', 'Secrets of the Dragon Sanctuary', 'La fine è il mio inizio', 'Twenty Boy Summer', 'A History of Old Norse Poetry and Poetics', 'The Owl Killers', 'Godmother: The Secret Cinderella Story', 'Immortal', 'A Kiss in Time', "Don't Judge a Girl by Her Cover", 'Sunrise', 'Lark & Termite', '18% Сиво', 'Hex Hall', 'Hunting Ground', 'The Pleasures and Sorrows of Work', 'الحرافيش', 'Dragoncharm', "The Rockefeller Billions: The Story of the World's Most Stupendous Fortune", 'When You Reach Me', "The Warrior's Path", 'The Bourne Deception', 'Диви разкази', 'Look Again', 'The Winner Stands Alone', 'Island in a Storm: A Rising Sea, a Vanishing Coast, and a Nineteenth-Century Disaster that Warns of a Warmer World', 'The First Days', 'Irene Iddesleigh', 'The Slap', 'The Fur Person', 'Borderline', 'Speciation and Patterns of Diversity', 'The Department of Off World Affairs', 'Undead and Unwelcome', 'Vampire Kisses: The Beginning', 'A Passion Denied', 'First Family', 'The Darkest Whisper', 'Tricks', 'Darkness Calls', 'The Glory Game: How the 1958 NFL Championship Changed Football Forever', 'The Day Jesus Rode Into Croydon', 'Shark Hunting in Paradise Garden', 'The Last Child', 'A Vintage Affair', "Yes We Can: Barack Obama's History-Making Presidential Campaign", 'Origami Tessellations: Awe-Inspiring Geometric Designs', 'Roadside Crosses', 'Hot Pursuit', 'The Piper', 'Scientology 8-80: The Discovery & Increase of Life Energy in the Genus Homo Sapiens', 'His Gift', 'The Soulmate Secret: Manifest the Love of Your Life with the Law of Attraction', 'Skinwalker', 'Alembical', 'The Thing Around Your Neck', 'The Philosopher and the Wolf', 'The Englor Affair', 'Vision in White', 'My Cousin Rachel', 'Destined for an Early Grave', 'Sarah Anne Hartford : Massachusetts, 1651', 'A Guide to the Good Life: The Ancient Art of Stoic Joy', 'The Serge-Trotsky Papers: Correspondence and Other Writings between Victor Serge and Leon Trotsky', "Nice Girls Don't Have Fangs", 'Columbine', 'The Kissing Bug', 'Anne Frank House: A Museum With a Story', 'Liberty and Tyranny: A Conservative Manifesto', 'The Portal of Beauty: Towards a Theology of Aesthetics', 'Moribito II: Guardian of the Darkness', 'Perfect Victim', "Naamah's Kiss", 'Gothic Art Now', 'حوار مع صديقي الملحد', 'Along for the Ride', 'Sarabande', 'The Gateway', "View Points and Points of View: A 'Phoetry Book' from Cornwall", 'الحرام', 'The Tale of Tom Kitten / Jemima Puddle-Duck', 'My Life in Pink & Green', 'The End of My Addiction', 'Johannes Cabal the Necromancer', 'Undone', 'Sandman Slim', 'Gnostic Mystery', 'The Jump Artist', 'The Story Sisters', 'Good, Better, Blessed: Living with Purpose, Power and Passion', 'The Summer I Turned Pretty', 'Квест', "Every Living Thing: Man's Obsessive Quest to Catalog Life, from Nanobacteria to New Monkeys", "Spanking: A Loving Discipline : Helpful and Practical Answers for Today's Parents", 'Meridian', 'Horse Latitudes', 'The Sword Thief', 'God of Clocks', 'The Holy Bible: English Standard Version', 'Dark Places', 'Love Slave for Two', 'Pride and Prejudice and Zombies', 'Echte mannen eten geen kaas', 'Goddess Boot Camp', 'Monetary theory; Inflation, interest, and growth in the world economy', 'Santa Olivia', 'Inherent Vice', 'Dance in the Vampire Bund, Vol. 3', 'Let the Great World Spin', 'Thirst No. 1: The Last Vampire, Black Blood, and Red Dice', 'أين عمري', 'The Immigration Invasion', 'The Prospector', '脂肪と言う名の服を着て', 'بداية ونهاية', 'الطريق', 'Slings & Arrows', 'Mr. & Mrs. Fitzwilliam Darcy: Two Shall Become One', 'Shanghai Girls', 'El unicornio', 'The Black Horse Tavern', 'The White Queen', 'Beyond the Grave', 'في ساعة نحس', 'The Madness of Lord Ian Mackenzie', "Under Mr. Nolan's Bed", 'Rage: A Love Story', 'Love, Aubrey', 'Almost Perfect', 'The Swan Thieves', 'The Breach of Crowns', 'The Trials of Innocencs', 'The Plea of Apollisian', 'Where the Mountain Meets the Moon', 'أفكار صغيرة لحياة كبيرة', 'Brodeck', 'أصداء السيرة الذاتية', "The New Codependency: Help and Guidance for Today's Generation", 'Der Verfolger', 'The Secret of Instant Healing', 'Blood Promise', 'Thorn Queen', 'Julian Comstock: A Story of 22nd-Century America', 'Juggernauts: The Making of a Runner & a Team in the First American Running Boom', 'Rooftops of Tehran', 'Fire', 'The Last Thing I Remember', 'The House Of Wisdom', 'Strange Angels', "The Secret Shopper's Revenge", 'The Dark Planet', "Murder in Los Lobos: A Bella Kowalski Mystery on California's Central Coast", 'Bödeln', 'The Birthing House', 'The Vast Fields of Ordinary', 'Checkered Fences', 'Map of the Hydrogen World', 'Callisto', 'The 10000 Year Explosion: How Civilization Accelerated Human Evolution', 'Death Walkers', 'The ESP Enigma: The Scientific Case for Psychic Phenomena', 'Blood of Elves', 'The Secret Speech', "Finger Lickin' Fifteen", 'A Crónica de Travnik', 'The Second Plane September 11: Terror and Boredom', 'Emília no País da Gramática', 'Dreamfever', 'Puhdistus', 'Take Two', 'Perfectly Imperfect: A Life in Progress', 'Tales from a Not-So-Fabulous Life', 'Rapture', 'Bad Moon Rising', 'Optimal Edge', 'Beautiful Children', 'Twenties Girl', 'The Splendor Falls', 'The Little Stranger', 'The Strain', 'Best Friends Forever', 'A Mind is a Terrible Thing to Read', 'Shiver', 'Bed of Roses', 'Guilty: Liberal "Victims" and Their Assault on America', 'A Gate at the Stairs', 'Ballad: A Gathering of Faerie', 'The Apostle', 'Лавина', 'The Year of the Flood', 'Storm Glass', 'Gig Posters Volume 1: Rock Show Art of the 21st Century', 'Your Heart Belongs to Me', 'Memories of Us', 'Anything But Mine', 'Hearts Awakened', 'White Cat', 'The Reluctant Dom', 'Easter Bunny', 'So Long, and Thanks for All the Fish', 'الإسلام بين الشرق والغرب', 'Any Known Blood', 'Generation A', 'Exposition of the Divine Principle', 'Happenstance Found', "The Spook's Sacrifice", 'The Girls from Ames: A Story of Women and a Forty-Year Friendship', 'Wolf Hall', 'The Magicians', 'On Russian Music', 'The Midwife: A Memoir of Birth, Joy, and Hard Times', 'Sworn to Silence', 'The Greatest Show on Earth: The Evidence for Evolution', 'ثرثرة فوق النيل', 'The Night Angel Trilogy', 'A Giant Problem', "The EC Horror Library of the 1950's", 'Bitter Virgin, Volume 4', 'South of Broad', 'The Study Series Bundle', 'Catching Fire', 'Prospero Lost', 'Ouran High School Host Club, Vol. 12', "The Mysterious Benedict Society and the Prisoner's Dilemma", 'Mechanical Factors and the Skeleton', 'Cooking for Baby: Wholesome, Homemade, Delicious Foods for 6 to 18 Months', 'Tenth Grade Bleeds', 'The Virtuoso', 'Nothing to Envy: Ordinary Lives in North Korea', 'The Death of Grass', "Stone's Fall", 'The Maze Runner', 'Alle sieben Wellen', 'Body of Knowledge', 'Dášeňka, čili život štěněte', 'A Touch of Dead', 'Her Fearful Symmetry', 'Venuto al mondo', 'Those Who Return', 'The Evolution of Calpurnia Tate', "Twilight Director's Notebook: The Story of How We Made the Movie Based on the Novel by Stephenie Meyer", "Death's Mistress", 'The Shadow of Malabron: The Perilous Realm: Book One', 'Black Water Rising', 'Αιολική γη', 'Λωξάντρα', 'Methland: The Death and Life of an American Small Town', 'The Sweetness at the Bottom of the Pie', 'زمن الخيول البيضاء', 'The Lottery', 'Juliet, Naked', 'This is Where I Leave You', 'Dinosaurens fjer', 'The Stolen Throne', 'The Prodigal Mage', 'The Renegade Hunter', 'Give Up the Ghost', 'Of Bees and Mist', 'Snarky Responses to Yahoo! Answers', 'Iroquois Diplomacy on the Early American Frontier', 'The Fourth Apprentice', "Bluestar's Prophecy", 'Unseen Academicals', "You Can Lead an Atheist to Evidence, But You Can't Make Him Think: Answers to Questions from Angry Skeptics", 'The Man Who Loved Books Too Much: The True Story of a Thief, a Detective, and a World of Literary Obsession', 'An Equal Stillness', 'Your Best Birth: Know All Your Options, Discover the Natural Choices, and Take Back the Birth Experience', "Escher's Loops", 'الإسلام ومشكلات الحضارة', 'The Black Circle', 'All You Need Is Kill', 'Crystal Moon', 'Half the Sky: Turning Oppression into Opportunity for Women Worldwide', 'Ruined', 'Unholy Ghosts', 'The Seven Rays', "Homer's Odyssey", 'The Body Finder', 'Tempted', 'Unsettled Visions: Contemporary Asian American Artists and the Social Imaginary', 'Miles to Go', 'Tempt Me at Twilight', 'Galaxy 666', 'The Van Alen Legacy', 'The Last Pharaoh: Mubarak and the Uncertain Future of Egypt in the Volatile Mid East', "Heart's Blood", 'Siete Minutos', 'One Day', "The Children's Book", 'Joseph', 'Strength in What Remains: A Journey of Remembrance and Forgiveness', "Nothing to Fear: FDR's Inner Circle and the Hundred Days That Created Modern America", 'The Museum of Innocence', 'الحياة الجديدة', 'Altar of Eden', 'Sookie Stackhouse 8 Volume Set', 'Born to Run: A Hidden Tribe, Superathletes, and the Greatest Race the World Has Never Seen', 'Covet', 'Fade Out', 'Rosemary and Rue', 'Drums That Dance In The Dark', 'Beautiful Creatures', 'The Child Thief', 'How They Met, and Other Stories', 'The Law of Nines', 'Feather', 'Orange Is the New Black', 'My Soul to Take', 'The Shifter', 'Hate List', "First Lord's Fury", 'The Peace of the Spirit Within: A Guide to Transform Your Life', 'Friday Night Bites', 'By Darkness Hid', 'Under the Dome', 'Comedy at the Edge: How Stand-up in the 1970s Changed America', 'Last Night in Twisted River', "Alice's Adventures in Wonderland", 'Birth Control is Sinful in the Christian Marriages and also Robbing God of Priesthood Children!!', 'BodyWorld', 'Rubinrot', 'Παραμύθι χωρίς όνομα', 'كيف نكتب التاريخ الإسلامي', 'The Accidental Billionaires: The Founding of Facebook, a Tale of Sex, Money, Genius, and Betrayal', 'Η φόνισσα', "Nice Girls Don't Live Forever", 'On the Edge', 'I Wish My Kids Had Cancer: A Family Surviving the Autism Epidemic', 'Day After Night', 'دين ضد الدين (الآثار الكاملة، #7(', 'História de dois amores', 'The Weight of Silence', 'Howl, Kaddish and Other Poems', 'Pleasure of a Dark Prince', 'Summertime', 'Reheated Cabbage', 'After', 'The Poverty of the Poverty Rate: Measure and Mismeasure of Material Deprivation in Modern America', 'Hush, Hush', 'Vampire Academy Collection', 'Lit', "Cleopatra's Daughter", '1001 Arabian Nights: The Adventures of Sinbad, Vol. 1: Eyes of Fire', 'Okay', 'The Demon King', 'Intertwined', 'The Longest Trip Home: A Memoir', 'Grave Secret', 'Invisible', 'The Wide Game', "The Magician's Elephant", 'Death Note: Black Edition, Vol. 1', 'Moonwalking with Einstein: The Art and Science of Remembering Everything', 'Rehepapp ehk november', "Halt's Peril", 'Fighting to Survive', 'Maradonia and the Seven Bridges', 'The 120 Days of Sodom', 'Dynasty of Evil', 'Dark Slayer', 'Sisters Red', 'Pandora Hearts, Volume 7', 'Pandora Hearts, Vol. 5', 'The Case for God', 'And Another Thing...', 'By the Time You Read This', 'قبسات من الرسول', 'Bleeding Violet', 'Half Broke Horses', 'Radiant Shadows', 'Darkest Mercy', 'मृत्युंजय', 'Betrayals', 'The Book of Genesis', 'Hold Still', 'The Elephant Whisperer: Learning about Life, Loyalty and Freedom from a Remarkable Herd of Elephants', 'Batman: Hush', 'Faces of Fear', 'The Dark Divine', 'Soulless', 'Zero at the Bone', 'The Rapture', 'Witch & Wizard', 'End the Fed', 'The Death of Bunny Munro', 'In Too Deep', 'The Woman Who Would Be Pharaoh', 'The Lilies of the Field', 'Everwild', "Galileo's Dream", "All Souls' Night", "Heaven's Keep", "The Viper's Nest", "Ender's Game, Volume 1: Battle School", 'Smile', 'Silent Blade', 'The Golden Mean', 'Alphas', 'The Happiness Project', 'The Last Song', 'The Eyes of Innocence', 'Vampires Today: The Truth about Modern Vampirism', 'SuperFreakonomics: Global Cooling, Patriotic Prostitutes And Why Suicide Bombers Should Buy Life Insurance', 'The Taste of Sorrow', 'American on Purpose: The Improbable Adventures of an Unlikely Patriot', 'Black Lagoon, Vol. 8', 'Stitches: A Memoir', 'Forest Born', 'Matterhorn', 'The Lost Symbol', 'The Betrayal of Natalie Hargrove', 'Last Night I Sang to the Monster', 'The Foundling', 'Poison, Shadow, and Farewell', 'Dark Secrets 1', 'Znakovi pored puta', 'Skip Beat!, Vol. 19', 'The Boy Who Harnessed the Wind: Creating Currents of Electricity and Hope', 'Disappearance', 'Lockdown', 'Culture Warrior', 'The Stalin School of Falsification', 'The Romance of the Forest', 'Catapult Soul', 'Thirst No. 2: Phantom, Evil Thirst, and Creatures of Forever', 'Sense and Sensibility and Sea Monsters', 'Pirate Latitudes', 'Fang', "America's March to Socialism: Why we're one step closer to giant missile parades", 'The Lacuna', 'I Kill Giants', 'Transition', 'The Hundred Thousand Kingdoms', 'Affair at Boreland Springs', 'Sheer Folly', 'Shadow Souls', 'No Less Than Victory', 'Paper Towns', 'Percy Jackson and the Olympians Boxed Set', '1Q84 Book 1', 'A Paradise Built in Hell: The Extraordinary Communities That Arise in Disaster', 'The Fighting Fisherman: The Life of Yvon Durelle', 'The Bannonbridge Musicians', 'North! or Be Eaten', 'Explosion in Paris', 'Firelight', 'Alpha', 'Dragonfly', 'The Big Burn: Teddy Roosevelt and the Fire That Saved America', "Justice: What's the Right Thing to Do?", 'Bright-Sided: How the Relentless Promotion of Positive Thinking Has Undermined America', 'Stones Into Schools: Promoting Peace With Books, Not Bombs, in Afghanistan and Pakistan', 'Drive: The Surprising Truth About What Motivates Us', 'The Red Book: Liber Novus', 'Remarkable Creatures', 'The Monstrumologist', 'Tsubasa: RESERVoir CHRoNiCLE, Vol. 24', 'Runaway', 'المرأة والجنس', 'This Book Is Not Good for You', 'معالم في الطريق', 'Too Much Happiness: Stories', 'The Walking Dead: Compendium One', 'New Moon: The Complete Illustrated Movie Companion', 'Thieves Like Us', 'When the Black Girl Sings', "Who's Who in the Bible", 'What Alice Forgot', 'Chelsea Chelsea Bang Bang', 'Ash', 'Crush It!: Why Now Is the Time to Cash In on Your Passion', 'Arguing with Idiots: How to Stop Small Minds and Big Government', "Glenn Beck's Common Sense: The Case Against an Out-of-Control Government, Inspired by Thomas Paine", 'Spirit Bound', 'Magic Bleeds', 'Making Rounds with Oscar: The Extraordinary Gift of an Ordinary Cat', 'Open', 'Shades of Midnight', 'Trolldom', 'Before I Fall', 'Ondskans ansikte', 'Brixton Beach', 'The Mortal Instruments Boxed Set: City of Bones; City of Ashes; City of Glass', 'Fallen', 'Nanny Returns', 'Tales of the Klondyke', "It's Your Time: Activate Your Faith, Achieve Your Dreams, and Increase in God's Favor", 'The Burning Land', 'The Immortal Life of Henrietta Lacks', 'Logicomix: An Epic Search for Truth', 'NurtureShock: New Thinking About Children', 'My Life on the Run: The Wit, Wisdom, and Insights of a Road Racing Icon', 'Angel Fall: A Novel', 'Roses', 'Guardian of the Dead', 'De Cu chi case', 'Blackout', 'The Manufactured Identity', 'Dark Origins', 'Contos de Aprendiz', 'Going Bovine', 'Zeitoun', 'The Monuments Men: Allied Heroes, Nazi Thieves, and the Greatest Treasure Hunt in History', 'How Beautiful the Ordinary: Twelve Stories of Identity', 'Forgotten God: Reversing Our Tragic Neglect of the Holy Spirit', 'What the Dog Saw and Other Adventures', '31 Hours', 'Last Sacrifice', 'A Conspiracy of Kings', 'After the Prophet: The Epic Story of the Shia-Sunni Split in Islam', 'The Lion and the Mouse', 'The Hakawati', 'Rock Chick', 'Tales of the Otherworld', 'Alice I Have Been', 'Fantasy in Death', 'Darklight', "The Emperor's Code", 'The Perfect Storm: A True Story of Men Against the Sea', 'First Drop of Crimson', 'Black Magic Sanction', 'Сокол и Ласточка', 'Izhar Ul Haq', 'Hard Rain Falling', 'Charlie Bone and the Red Knight', 'The Dead-Tossed Waves', 'Unholy Magic', 'Pandora Hearts, Volume 6', 'Los Cuadernos del Destierro', 'Crocodile Tears', 'Heat Wave', 'Will Grayson, Will Grayson', 'Night Embrace', 'Dear Jack', 'Switch: How to Change Things When Change Is Hard', 'The Morganville Vampires, Volume 1', 'Amber Beach', 'Bloodlands: Europe Between Hitler and Stalin', 'Heist Society', 'Dog Days', 'The Postmistress', 'Brightly Woven', '13 Treasures', 'The Sex Diaries: Why Women Go Off Sex and Other Bedroom Battles', 'Secrets of a Prayer Warrior', 'Όταν έκλαψε ο Νίτσε', "Archangel's Kiss", "It's Not Summer Without You", 'Sing Me to Sleep', 'Absolutely Normal Chaos', 'Silver Borne', 'Horns', 'InterWorld', 'The Windup Girl', 'Captivate', 'The Blood of the Vampire', 'The Interrogative Mood', 'Mistborn Trilogy Boxed Set', 'Eating Animals', 'The Sky Is Everywhere', 'Black Dagger Brotherhood: Boxed Set #1-6', 'Nachtmahr: Strange Tales', "By the Time You Read This, I'll Be Dead", 'The Gladiator', 'The Lonely Hearts Club', 'Numbers', 'Out of My Mind', 'Sweet Little Lies', "Spider's Bite", 'Breathing Room Volume I: Free Verse', 'Breathing Room Volume 2: Rhymes & Relics', 'The Solitude of Prime Numbers', 'House Rules', 'Debt: The First 5,000 Years', 'Saving CeeCee Honeycutt', 'The Siren', 'Something Like Fate', 'com نسيان', "Ένα παιδί μετράει τ' άστρα", 'A Case of Exploding Mangoes', 'Nelson Mandela: The Authorized Comic Book', 'Some Girls Are', "Shalador's Lady", 'Danny Chalmers is THE PRINCIPAL', 'Parrot and Olivier in America', 'The Good Soldiers', 'The Slime Beast', 'Priscilla Bailey: A Story of the Great Depression', 'Nightlight: A Parody', "The Queen's Rune And Other Tales Of The Sidhe", 'Something About You', 'The Forty Rules of Love', "Major Pettigrew's Last Stand", 'The Iron King', 'Bride of Ice: New Selected Poems', 'Nothing', 'To Sleep with the Angels: The Story of a Fire', 'Percy Jackson & the Olympians: The Ultimate Guide', 'Linger', 'The War of Mists', 'Tokyo Vice: An American Reporter on the Police Beat in Japan', 'Claire de Lune', 'Ecstasy Unveiled', 'Maid-sama! Vol. 05', "The Devil's Alphabet", 'Please Ignore Vera Dietz', 'Daemon', 'The Checklist Manifesto: How to Get Things Right', 'Winter Garden', 'Pride Mates', 'The Collected Stories of Lydia Davis', 'Standing at the Scratch Line', 'حديث عيسى بن هشام', 'Never Look Away', 'Caught', 'You Are Not a Gadget', 'Behind the Bell', 'Lies', 'Plague', 'The Crossing Places', 'If The Dead Rise Not', 'The Passage', 'Black Butler, Vol. 1', 'Togainu no Chi Volume 5', 'Mornings in Jenin', 'Game Change: Obama and the Clintons, McCain and Palin, and the Race of a Lifetime', 'Finally', 'Infinity', 'Storm Warning', 'A Spy in the House', 'Vigilante', 'A Time for Everything', 'Maid-sama! Vol. 06', 'A Reforma da Natureza', 'The Orphan of the Rhine', 'My Love Lies Bleeding', 'Forgive My Fins', 'დათა თუთაშხია', 'The Moses Expedition', 'The Legend of Zelda: Ocarina of Time 01', 'Juliet', 'Siege', 'الأعمال الشعرية الكاملة', 'Flirt', 'Committed: A Skeptic Makes Peace with Marriage', 'Rework', 'Bakuman, Band 1: Traum und Realität', 'The Desert Spear', 'Mister Roberts', "Devil's Cub", 'The Distant Hours', 'As You Wish', 'City of Fallen Angels', 'The Darkest Passion', 'Capitalist Realism: Is There No Alternative?', 'My Soul to Save', 'Perahu Kertas', 'The Last Stormlord', 'Dogs: Bullets & Carnage, Vol. 3', 'TimeRiders', 'Black Bird, Vol. 4', "The Weed That Strings the Hangman's Bag", 'Dark Visions', 'Savor the Moment', 'Verbrechen', 'The New Jim Crow: Mass Incarceration in the Age of Colorblindness', 'When Worlds Collide / After Worlds Collide', 'Flower in a Storm, Vol. 1', 'Bukharan Jews in the 20th Century: History, Experience and Narration', 'Stepping on Roses, Vol. 1', 'Spells', 'Skip Beat!, Vol. 20', 'Vampire Knight, Vol. 9', 'Flow Down Like Silver', 'The Lock Artist', 'Grimm Fairy Tales: Beyond Wonderland', 'The Kitchen House', 'Lone Wolf', 'What the Torah Teaches us About Survival: A Spiritial Roadmap For Renewal of Self', 'La cosecha de Samhein', 'Eternal Kiss of Darkness', 'This Side of the Grave', 'O porco de pé e outras narracións', 'The Night Bookmobile', 'The Puzzle Ring', 'The Girl Who Kicked the Hornet’s Nest', "I'll Be Your Drill, Soldier", 'Tales Of The Grotesque: A Collection Of Uneasy Tales', 'Musical Chairs', 'Innominato', 'Secret Daughter', 'Raised by Wolves', 'Inventing L.A.: The Chandlers and Their Times', 'Birthmarked', 'Zdarzenia na brygu Banbury', 'Dance in the Vampire Bund, Vol. 6', 'Although of Course You End Up Becoming Yourself: A Road Trip with David Foster Wallace', 'Succubus Shadows', 'Gospoda Glembajevi', 'Το λάθος', 'Illusions', 'Saphirblau', 'The Iron Witch', 'Kraken', 'The DUFF: Designated Ugly Fat Friend', 'The Hunt in the Forest', 'Changeless', 'Vampire Stories', 'Anna and the French Kiss', 'Το 10', 'Nine Lives: In Search of the Sacred in Modern India', 'Angel Star', 'Ikigami: The Ultimate Limit, Volume 5', 'The Overton Window', 'The Cow in the Parking Lot: A Zen Approach to Overcoming Anger', 'Only the Good Spy Young', 'Illuminated: Figurative Art by Jia Lu', 'عالم جديد ممكن', 'One Foot Wrong', '2 States: The Story of My Marriage', '~ Stick Man Gift Edition Board Book', 'Rich Again', '61 Hours', 'I Will Wait for You: Eternal Bliss', 'The Wings of the Sphinx', 'Island Beneath the Sea', 'The Atlantis Complex', 'The Ghost and the Goth', 'Caim', "Old Wing Mission: Cultural Interchange as Chronicled by George and Arvilla Smith in their Work with Chief Wakazoo's Ottawa Band on the West Michigan ... of the Reformed Church in America", 'The Journey Home', 'The Land Remembers: The Story of a Farm and Its People', 'The Gifts of Imperfection', "Food Rules: An Eater's Manual", 'Sizzling Sixteen', "The Long Gray Line: The American Journey of West Point's Class of 1966", 'Dark Life', 'Um Pinguim na Garagem', 'The Heroes & Other Stories', 'Once Burned', 'Invictus: Nelson Mandela and the Game That Made a Nation', 'The Magnetic North: Notes From The Arctic Circle', 'Lover Mine', 'The Particular Sadness of Lemon Cake', "Afghanistan's Two-Party Communism: Parcham and Khalq (Volume 279)", 'Pieces of a Rainbow', "The Poisoner's Handbook: Murder and the Birth of Forensic Medicine in Jazz Age New York", 'The Lieutenant', 'The Ice Princess', 'Inside Out', 'Twice Bitten', 'Gullstruck Island', 'Happy Ever After', 'Runemarks', 'Trackers', 'Big Girl', 'The Red Pyramid', 'Dead in the Family', 'Kiss of Death', 'Faithful Place', 'Vampire Mistress', 'Maximum Ride, Vol. 3', 'Ship Breaker', 'Demon from the Dark', 'All Dreamers Go to America', 'The Other Wes Moore: One Name, Two Fates', 'The Voynich Manuscript', 'The Forbidden Game', 'Cooking to Kill: the Poison Cook-Book', 'Abraham Lincoln: Vampire Hunter', 'Start with Why: How Great Leaders Inspire Everyone to Take Action', 'Heart of the Matter', 'Of One Heart: Being Single In The LDS World', 'The Left Hand of God', 'Slide, a Modern Satire on the Excess of Greed', 'أحببتك أكثر مما ينبغي', 'Bullet', 'The Fallen and Leviathan', 'The Last Hope', 'The Prince of Mist', 'The Thin Executioner', 'Forget You', 'Nevermore', 'Sabotaged', 'Arus Balik', 'Freedom™', 'My Name Is Memory', 'Enclave', 'Rules of Attraction', 'Under Heaven', 'Solar', 'The Thousand Autumns of Jacob de Zoet', 'Beyaz Zambaklar Ülkesinde', 'Min kamp 1', 'Remember Me', 'The Strange Case of Origami Yoda', 'Crimson Rose', 'وجهة العالم الإسلامي', 'Rot & Ruin', 'The Haunted', 'Still Missing', 'The Black Prism', "The Ambassador's Mission", 'The Flame of Olympus', 'The Emperor of All Maladies: A Biography of Cancer', '新世界より [Shinsekai Yori]', 'Clockwork Angel', 'The Puppet Masters', 'Fallout', 'Beatrice and Virgil', 'The Third Reich at War', 'Live to Tell', 'Into the Gauntlet', 'Rosaura a las diez', 'The Walk', 'Leaving Prisons: Release Your Trapped Value!', 'The Egg Man', 'Moon of the Wolf', 'The Wide-Awake Princess', 'Married by Morning', 'Dark Flame', 'Princess of Glass', 'The Devil Colony', 'Ice Cold', "Ral's Woman", 'Big Stone Gap', 'Renaissance', 'ودخلت الخيل الأزهر', '13 to Life', 'Prowadź swój pług przez kości umarłych', 'Blood Feud', 'Glimmerglass', 'The Way of Kings', 'Keys to the Demon Prison', 'The Flight of the Feathered Serpent', 'The Disappearing Spoon: And Other True Tales of Madness, Love, and the History of the World from the Periodic Table of the Elements', 'The Chaos', 'Grave New World', 'Mockingjay', 'Wolfsbane', 'The Invisible Bridge', 'Ice Study', 'Dolores Claiborne', 'Angelfire', 'The Strange Affair of Spring Heeled Jack', 'Shadowfever', 'Censoring an Iranian Love Story: A novel', "Archangel's Consort", 'Pray for Silence', 'Fall of Giants', 'അഗ്നിസാക്ഷി | Agnisakshi', 'Edward Or Jacob? Quick Quizzes For Fans Of The Twilight Saga', 'Fred and Lydia Take London By Storm', 'Ikigami: The Ultimate Limit, Volume 6', 'Stepping on Roses, Vol. 2', 'Black Bird, Vol. 5', 'Rosario+Vampire: Season II, Vol. 2', 'Flower in a Storm, Vol. 2', 'The Asylum for Wayward Victorian Girls', 'Half Upon a Time', 'The Search for WondLa', 'A Visit from the Goon Squad', 'Hitch 22: A Memoir', 'Dweller', 'The Hundred-Foot Journey', 'City of Ghosts', 'Girl in Translation', 'Hunting the Dinosaurs and Other Prehistoric Animals', 'Ghost of Spirit Bear', 'The Book of Awesome', 'Taken by Midnight', 'Gazing Into the Eternal', 'Rock Chick Rescue', 'Copts in Michigan', "The Dreamer's Awakening", 'Rasetsu, Vol. 5', 'Слънце недосегаемо', 'Min kamp 2', 'Mid Ocean', 'Min kamp 3', 'My Soul to Keep', 'Παραμύθια και άλλα', 'Unearthly', 'The Secret Behind the Cross and Crucifix', 'Love in the Afternoon', 'Bonhoeffer: Pastor, Martyr, Prophet, Spy', 'La Musique Consolatrice', "Alice's Adventures in Wonderland & Other Stories", 'A Hope Undaunted', 'At Home: A Short History of Private Life', 'The Replacement', 'Pegasus', 'O Sítio do Picapau Amarelo', 'The Cadaver Factory', "Fiela's Child", 'Tiger Lily', 'All Clear', 'Imperial Bedrooms', 'Paris Promises', 'Smaragdgrün', 'Men at Arms: The Play', 'The Quantum Thief', 'Ru', 'I Shall Wear Midnight', 'The Emperor of Nihon-Ja', 'Ghost Town', 'Skull Full of Kisses', 'I Am Not a Serial Killer', 'Twilight: The Graphic Novel, Vol. 1', 'শেষ প্রশ্ন', "The Woman's Study Bible: New King James Version", "The Prophet's Methods of Correcting People's Mistakes", 'The Scorch Trials', 'De tijd die nodig is', 'Sex at Dawn: The Prehistoric Origins of Modern Sexuality', 'The Ring of Solomon', 'Empire of the Summer Moon', 'Black Butler V', 'Inheritance', "Amy & Roger's Epic Detour", 'Carnal: Somewhere Over 40 Winks', 'Híbýli vindanna', 'Lífsins tré', 'Der Kuss des Kjer', 'Indulgence in Death', 'Varney, the Vampyre', 'جاهلية القرن العشرين', 'حول التأصيل الإسلامى للعلوم الاجتماعية', 'لا إله إلا الله عقيدة وشريعة ومنهاج حياة', 'Founding the Communist International, Proceedings and Documents of the First Congress, March 1919', 'الجزار', 'تراب الماس', 'Sugar and Spice', 'Maids of Misfortune', 'ความเป็นอนิจจังของสัีงคม', 'Himnaríki og helvíti', "The Rosicrucian cosmo-conception: or, Mystic Christianity; an elementary treatise upon man's past evolution, present constitution and future development", 'Skurðir í rigningu', 'Fera de Macabu: O Maior Erro da Justiça Brasileira', 'Sin Undone', '1Q84', 'Paranormalcy', 'خصائص التصور الإسلامي ومقوماته', "A Dog's Purpose", 'Business Model Generation', 'Crown of Crystal Flame', 'Origins', 'How to Live Safely in a Science Fictional Universe', 'The Diviners', 'Matched', 'Fear and Misery in the Third Reich', 'The Lost Hero', 'Moon Dance', 'Kick-Ass', 'Night Star', 'Torment', "Heaven's Coast", "Dash & Lily's Book of Dares", 'A Memory of Light', 'Infinite Days', 'The Iron Daughter', 'Misguided Angel', 'I Am Number Four', 'Erebos', "The Amazing Qur'an", 'God Arises: Evidence of God in Nature and in Science', "Human Development as Described in the Qur'an and Sunnah: Correlation with Modern Embryology", 'I Hunt Killers', 'The Taker', 'Bridge of Clay', 'The Eternal Dawn', 'Naked Heat', 'Halo', 'To the End of the Land', 'Because of Mr. Terupt', 'The Moral Landscape: How Science Can Determine Human Values', 'The Mating', 'Crescendo', 'Return to Paradise', 'Virals', 'On Every Side', 'The Exiled Queen', 'Succubus Revealed', 'A Sicilian Romance', 'Great Tales of Terror from Europe and America: Gothic Stories of Horror and Romance 1765-1840', "Lee's Story", "El violí d'Auschwitz", 'Twelfth Grade Kills', 'Sh*t My Dad Says', "The Hare With Amber Eyes: A Family's Century of Art and Loss", 'The Millennium Trilogy', 'Monster High', 'Immortal Beloved', 'Reckless', 'The Ugly Truth', 'Between Shades of Gray', 'A Tale Dark & Grimm', "The Healer's Apprentice", 'Behemoth', 'Desires of the Dead', 'The Templar Salvation', 'Afterlight', 'The I Hate to Cook Book', 'CryoBurn', 'Beautiful Darkness', 'Animals Animals Animals: A Collection of Great Animal Cartoons', 'Daughter of Darkness', 'Elixir', 'Science of Mind', 'Flying Fury: Five Years in the Royal Flying Corps', 'Goddess', "Tiger's Voyage", 'Think of a Number', 'Squirrel Seeks Chipmunk', 'Managing a Dental Practice: The Genghis Khan Way', 'Graffiti Moon', 'The Death Cure', "Liar's Poker", 'The Track of Sand', 'Vampire Trinity', 'Dead Beautiful', 'A Perfect Day for Bananafish', 'Selected Poems of Langston Hughes', 'Waterfall', "Dewey's Nine Lives: The Legacy of the Small-Town Library Cat Who Inspired Millions", 'Rise of the Huntress', 'A Dance to the Music of Time, Complete Set: 1st Movement, 2nd Movement, 3rd Movement, 4th Movement', 'Radiance', 'Zilele şi nopţile unui student întârziat', 'Raid on the Articulate: Comic Eschatology in Jesus and Borges', 'Throne of Glass', 'Bloodlines', 'The Broken Kingdoms', 'Freedom', 'Voices From Punktown', 'An Object of Beauty', 'First Class Male', 'Full Dark, No Stars', 'The Immortals of Meluha', 'Comfort Food', 'Beautiful Redemption', 'Дом, в котором...', "Heaven is for Real: A Little Boy's Astounding Story of His Trip to Heaven and Back", 'Hidden', 'Destined', 'The Short Second Life of Bree Tanner', 'Room', 'The Hunger Games Trilogy Boxset', "This Isn't What It Looks Like", "Chasing the Devil: The Search for Africa's Fighting Spirit", 'Bury Your Dead', 'Crooked Letter, Crooked Letter', 'Falling Under', 'One Grave at a Time', 'American Assassin', 'Cleopatra: A Life', "Le Voleur d'ombres", 'Spy Glass', 'Black Butler, Vol. 4', 'Dead Reckoning', 'A Long Walk to Water', 'We, the Drowned', 'HHhH', 'Eona: The Last Dragoneye', 'Dracula, the Reemergence of Vlad', 'Savages', 'Delusions of Gender: How Our Minds, Society, and Neurosexism Create Difference', 'The Darkest Surrender', "Hell's Corner", 'My Blood Approves', 'The Elegant Universe: Superstrings, Hidden Dimensions, and the Quest for the Ultimate Theory', 'The Globalization of Addiction: A Study in Poverty of the Spirit', 'Dime quién soy', 'Rescuing the Bible from Fundamentalism: A Bishop Rethinks the Meaning of Scripture', 'Entice', 'The Crimson Crown', "Winter's Passage", "The Third Strike: A Father's Story of His Son's Struggle with Cancer", "Archangel's Blade", 'Falling From Grace', 'Pinball, 1973', 'River Marked', 'Blessed Are You: Mother Teresa and the Beatitudes', 'Decision Points', 'Timeless', 'Darkness Becomes Her', 'Mortal Coil', 'Sirat al-Nabi and the Orientalists - with special reference to the writings of William Muir, D.S. Margoliouth and W. Montgomery Watt', 'The Screwtape Letters', 'Bloodrose', 'The Vagina Ass of Lucifer Niggerbastard', 'I Lost My Love in Baghdad: A Modern War Story', 'Justin Bieber: His World', 'Pale Demon', 'Black Bird, Vol. 6', 'Ivy and Intrigue: A Very Selwick Christmas', 'The Right Stuff', 'Deeper Than Midnight', 'Stepping on Roses, Vol. 3', 'Threshold', 'Evenfall', 'Zombie Fallout', "The Warmth of Other Suns: The Epic Story of America's Great Migration", 'How to Flirt with a Naked Werewolf', 'Sister', 'Garments of Skin', 'Bride of the Water God, Volume 6', 'Love Unscripted', 'Wicked Appetite', "Kestrel's Midnight Song", 'Special A, Vol. 17', 'Across the Universe', 'الطنطورية', "Boys Don't Cry", 'Beyond the Horizons', 'Towers of Midnight', 'Hector and the Search for Happiness', 'New York', 'Darkest Powers Trilogy', 'Green Gem', 'Moon Over Manifest', 'Har någon sett mig någon annanstans?', 'A World Without Heroes', 'Finding Sky', 'The Land of Painted Caves', 'The Passing of the Great Race or the Racial Basis of European History', 'Daun Yang Jatuh Tak Pernah Membenci Angin', 'Flutter', 'Dark Matter: A Ghost Story', 'Worth Dying For', "The Tiger's Wife", 'Backstage Pass', 'The Red Garden', 'Don Camillo della Bassa: Gente così - Lo spumarino pallido', 'Blackveil', 'Jasper Jones', 'Uneasy Money', 'The Cock and Anchor: Being a Chronicle of Old Dublin City', 'The Rogue', 'A Visual Guide to Gospel Events: Fascinating Insights into Where They Happened and Why', 'A Lot like Love', 'A Touch Mortal', 'Demonglass', 'The Lying Game', 'Entwined', 'Ordeal', 'Scorpia Rising', 'The Crippled God', 'Bloodlust', 'The Warlock', 'Rebel Belle', 'Daytripper', 'Tvrđava', 'My Soul to Steal', 'Daughter of Smoke & Bone', 'Lover Unleashed', 'Left Neglected', 'So Much Closer', 'Where She Went', 'What Happened to Goodbye', 'Strange Dreams', 'Wings of the Wicked', 'A Red Herring Without Mustard', 'The Enchantress', 'The Grand Design', "Quiet: The Power of Introverts in a World That Can't Stop Talking", 'Annihilation of Caste', 'Wither', 'Dreams of a Dark Warrior', 'Forsaken', 'The Dark and Hollow Places', 'Inside Out & Back Again', "Cryer's Cross", 'The Peach Keeper', 'Sing You Home', 'Moxyland', 'Magic Slays', 'Where Things Come Back', 'Please Look After Mom', 'Beautiful Dreamer', 'Wisdom', 'The Power', 'Entangled', 'The Girl in the Green Raincoat', 'One Thousand Gifts: A Dare to Live Fully Right Where You Are', 'Metamorphosis and Other Stories', 'Degenerates', 'Imaginary Girls', 'The Sacred Band', 'The Emerald Atlas', 'Embrace', 'The Fry Chronicles', 'Awakened', 'The Power of Six', 'Chain Reaction', 'Unbroken: A World War II Story of Survival, Resilience and Redemption', 'The Finkler Question', 'Awaken', 'A Discovery of Witches', 'The Small Hand', 'Invincible', 'In Ghostly Company', "We'll Always Have Summer", 'The Paris Wife', 'Firstborn', 'The Iron Queen', 'Fated', 'The Devotion of Suspect X', 'The E.L. Konigsburg Collection', 'Waiting to Live', 'Deathless', 'Pearl Cove', 'Autumn Lover', 'Born at Midnight', 'Griffin & Sabine: An Extraordinary Correspondence', 'The Golden Lily', 'Silver Shadows', 'Iron Crowned', 'The Indigo Spell', 'The Ruby Circle', 'Seizure', 'La carte et le territoire', 'Kiss of Snow', 'You Against Me', 'The Twilight Saga Complete Collection', 'Dio di illusioni', 'Ζητείται ελπίς', 'First Step 2 Forever', 'The Troubled Man', 'City of Lost Souls', 'City of Heavenly Fire', "The Monkey's Paw", 'First Grave on the Right', 'Black Easter', 'If I Die', 'The German Revolution and the Debate on Soviet Power: Documents, 1918-1919; Preparing the Founding Congress', 'Fear', 'Light', 'Ruby Red', 'Defiance', 'Eternal Rider', 'മയ്യഴിപ്പുഴയുടെ തീരങ്ങളിൽ | Mayyazhippuzhayude Theerangalil', 'Leviathan Wakes', 'When God Was a Rabbit', 'Germs, Genes, & Civilization: How Epidemics Shaped Who We Are Today', 'A Scent of New-Mown Hay', 'Attachments', 'Sweet Valley Confidential: Ten Years Later', 'Sweeney Todd: The String of Pearls', 'A Spy at Home', 'Harry Potter: The Prequel', 'Consider Phlebas', 'Night Road', 'Om Chanting and Meditation', 'Medicus', 'A Cowgirl Remembers When...', 'Incendies', 'The Throne of Fire', 'State of Wonder', 'Romance', 'Battle Hymn of the Tiger Mother', 'Okay for Now', 'The Girl in the Steel Corset', 'The Dead of Night: The Ghost Stories of Oliver Onions', 'The Chronology of Water', 'Blade of the Immortal, Volume 23: Scarlet Swords', 'Loving Yusuf: Conceptual Travels from Present to Past', 'Dream of Ding Village', 'The Penderwicks at Point Mouette', 'Hereafter', 'Embassytown', 'Epic Fail', 'Never Have I Ever', 'Two Truths and a Lie', 'The Daylight War', "Monday's Child", "The Lover's Dictionary", "Tiger's Curse", 'Blood Destiny', 'The Elephant Tree', "Obama's Wars", 'Eve', 'The Heroes', 'Captive Prince', 'Mavi Melekler', 'The Last Guardian', 'Rivers of London', 'Red Riding Hood', 'Até ao Fim', 'The Night Circus', 'Cascade', 'Trial by Fire', 'Passion', 'Bite Club', 'Anna Dressed in Blood', 'Curran', 'Everlasting', 'Abandon', 'An Offer From a Gentleman', 'The Gray Wolf Throne', 'Everneath', 'Bossypants', 'The Story of Saiunkoku, Vol. 3', 'Life', 'Touch of Frost', 'Rock Hard', 'The Pale King', 'The Baby Killers', "Miss Peregrine's Home for Peculiar Children", 'The Cloud Roads', 'Sisterhood Everlasting', 'Starcrossed', 'Die for Me', 'Beauty Queens', 'Naughty Bits - Original', 'Heavy Duty People', "Crookedstar's Promise", 'Hellados', "The Hangman's Daughter", 'Dreams of Joy', 'Renaissance: Melodrama', 'Mirall trencat', 'The Grand Delusion', 'Rage of the Fallen', "Naamah's Blessing", 'The Son of Neptune', 'Black Dawn', 'Hounded', 'Modelland', 'The Lady of the Rivers', 'Judge On Trial', 'Angel Fire', 'Second Grave on the Left', 'Grave Mercy', 'The Snowman', 'Lost in Time', 'The Silent Girl', 'Prince of Thorns', 'Hard Bitten', 'The Girl Who Circumnavigated Fairyland in a Ship of Her Own Making', 'Requiem', 'Moby-Duck: The True Story of 28,800 Bath Toys Lost at Sea and of the Beachcombers, Oceanographers, Environmentalists, and Fools, Including the Author, Who Went in Search of Them', 'Hexed', 'The End of Everything', "Anya's Ghost", 'Isla and the Happily Ever After', 'Raja Gidh / راجه گدھ', 'In and Out of Step', 'Robopocalypse', 'Tales from a Not-So-Talented Pop Star', 'Dragon Bound', 'Fed Up!: Our Fight to Save America from Washington', 'Fuzzy Nation', 'The Iron Knight', "Tiger's Quest", 'Chantier Des Extases: Poésie', 'Hades', 'Enticed', 'Tales from Moominvalley', 'The Invention of Hugo Cabret', 'Ragazzi di vita', 'Pure', 'Half-Blood', 'The Goddess Test', 'Sotto la pelle', "La vera storia dell'ultimo re socialista", 'Providence', 'رغم الفراق', 'Lost in Shangri-la: A True Story of Survival, Adventure, and the Most Incredible Rescue Mission of World War II', 'Before I Go to Sleep', 'დიდოსტატის კონსტანტინეს მარჯვენა', 'The Age of Anxiety: A Baroque Eclogue', 'I Beati Paoli', 'Deity', 'The Shallows: What the Internet Is Doing to Our Brains', 'This Dark Endeavor', 'Now You See Me', "Manifesting Change: It Couldn't Be Easier", 'The Rose Garden', 'Rock Chick Redemption', 'Eutopia: A Novel of Terrible Optimism', 'Taltos', 'A Song of Ice and Fire', 'Drink Deep', 'Draculas', 'Incognito: The Secret Lives of the Brain', 'The Fiery Heart', 'The Hypnotist', 'Ice in My Veins', 'The Human Obsession', 'The Sisters Brothers', 'The Code of the Woosters', 'Fateful', 'Elizabeth', 'Catching Jordan', 'Dark Knight of the Skye', 'Damned', 'The Unwanteds', 'Blood Red Road', 'The Hidden', 'El enamorado de la Osa Mayor', 'The Shell of Sense', 'Joy in the Morning', 'Torrent', "In the Garden of Beasts: Love, Terror, and an American Family in Hitler's Berlin", 'Dark Triumph', 'Heatwave and Crazy Birds', 'Titaantjes', 'عقلي وقلبي', 'Lola and the Boy Next Door', 'Ready Player One', 'Secrets of Jewish Wealth Revealed!', 'Ashes', "Eating Smoke: One Man's Descent Into Crystal Meth Psychosis in Hong Kong's Triad Heartland", 'Truly, Madly, Deeply', 'Music at Night and Other Essays', 'Harry Potter and the Methods of Rationality', 'Clockwork Prince', 'The Nicole Snooki Polizzi Handbook - Everything You Need to Know about Snooki', 'The Language of Flowers', 'Rules of Civility', "The Midwife's Confession", 'Tinker, Tailor, Soldier, Spy', 'The Magician King', 'Ship of Fools', 'Street Gang: The Complete History of Sesame Street', 'The Devil All the Time', 'The Lean Startup', 'Wonderstruck', "Gabriel's Inferno", 'Hunting Human', 'The Proletarian Revolution and the Renegade Kautsky', "Mr. Churchill's Secretary", 'The Last Letter from Your Lover', 'Froi of the Exiles', 'Quintana of Charyn', 'Exiles: A Memoir', 'Outpost', 'The Outcast', 'Shadow and Bone', 'Pushing the Limits', "The Traitor's Emblem", 'Stories I Only Tell My Friends', 'Something Like Summer', 'The Immortal Rules', 'Death Bringer', 'MILA 2.0', 'The Ritual', 'The Dig', 'Insciallah', 'I giganti della montagna', 'Evolution of Insanity', 'Heart on a Chain', 'Janitors', 'Uncommon Criminals', 'Turned', "Give Me Tomorrow: The Korean War's Greatest Untold Story", 'Is Everyone Hanging Out Without Me?', 'Destiny of the Republic: A Tale of Madness, Medicine and the Murder of a President', 'Carrier of the Mark', 'Pegasus and the Fight for Olympus', 'A Million Suns', 'Shades of Earth', 'Up from the Grave', 'Moonsilver', 'Touchstone', 'Between', 'في ديسمبر تنتهي كل الأحلام', 'Witch Song', 'Deadlocked', 'Stealing Phoenix', 'Catherine the Great: Portrait of a Woman', 'The Affair', 'A Beautiful Dark', 'Shatter Me', 'Sweet Venom', 'The Girl of Fire and Thorns', 'Wildwood', 'Claimed', 'Touch of Power', 'The Guns of Navarone', 'يوميات اتنين مخطوبين', '13 Gifts', "Where's the Birth Certificate?: The Case that Barack Obama is not Eligible to be President", 'The Apothecary', 'The Hole of the Pit', 'The Selection', "The Soldier's Wife", 'Glitch', 'Last Breath', 'The Outcasts', 'Dinner with a Perfect Stranger: An Invitation Worth Considering', 'Reamde', 'Out of Sight, Out of Time', 'Emblaze', 'სამოსელი პირველი', 'The Darkest Minds', 'Killing Lincoln: The Shocking Assassination that Changed America Forever', 'A Perfect Blood', 'How to Be a Woman', 'The Scorpio Races', 'The Pledge', '11/22/63', 'The Martyred', 'Fire with Fire', 'A Dance with Dragons', 'Demonic: How the Liberal Mob is Endangering America', 'Article 5', 'The philosophy of human death', 'Translating Scotland. Nation and Identity', 'Chopsticks', 'Reckoning', 'The Probability of Miracles', 'The Marbled Swarm', "The Merchant's Daughter", 'The Sense of an Ending', 'Descendant', 'You Have to Stop This', 'Beautiful Chaos', 'The Best of Me', 'Children of Paranoia', 'The Boy in the Suitcase', 'Matrevolutionen: ät dig frisk med riktig mat', 'Rise of Empire', 'Theft of Swords', 'Lothaire', 'The Statistical Probability of Love at First Sight', 'Why We Broke Up', 'Underworld', 'Awake at Dawn', 'The Alloy of Law', 'Peter Nimble and His Fantastic Eyes', 'Harbor', 'For You', 'Highschool of the Dead, Vol. 5', 'Highschool of the Dead, Vol. 4', 'The Crown of Embers', 'Fifty Shades of Grey', 'The Keeper of Lost Causes', 'Reckless Magic', 'Midwinterblood', 'The Rook', 'The Time in Between', 'Dark Inside', 'Salvage the Bones', 'The Inheritance Cycle', 'Altered', 'Daimon', 'Too Far', 'Unspoken', 'Only Time Will Tell', 'Etiquette & Espionage', 'The Time of My Life', 'The Archived', 'Ethereal', 'The Dovekeepers', 'The Monster in the Hollows', 'The Future of Us', 'The Marriage Plot', 'Silent Hero: A Tribute to The Legend of Zelda', 'Lover Reborn', 'The Art of Fielding', 'Cirkeln', 'Red Eagles: Americas Secret MiGs', 'نصف ميت دفن حيًا', 'The Whisperer', 'The Gun Seller', "What's Left of Me", 'The Fallen Star', 'Second Chance Summer', 'Joanne, The Unpredictable', 'Captivated', 'Steve Jobs', 'My Immortal', 'Darth Plagueis', 'Heir of Novron', 'The Mortal Instruments', 'Fever', 'Time Between Us', 'The Death and Life of Charlie St. Cloud', 'Tilt', 'Catching Fire: How Cooking Made Us Human', 'Deadly Intent', "The O'Briens", 'The Years Distilled: Verses', 'Blood & Spirits', 'Αρνούμαι', 'The Frontiersmen: A Narrative', 'The Witches of the Glass Castle', 'Lies My Father Told Me', 'The White People and Other Weird Stories', 'The Gamble', 'Rock Chick Revenge', "Seriously... I'm Kidding", 'Η μητέρα του σκύλου', 'Cinder', 'The Song of Achilles', 'Cabin Fever', 'Seeds of Rebellion', 'La Biblia: Reina-Valera 1960', 'A Job From Hell', 'Kisses from Katie', 'Crossroads', 'The Storyteller', 'What It is Like to Go to War', 'Secret Fires', 'Alice in Zombieland', 'The Lost Stories', 'Houdini Heart', 'París', 'The Righteous Mind: Why Good People Are Divided by Politics and Religion', 'Ο ιππότης με τη σκουριασμένη πανοπλία', 'A Real Basket Case', 'A Stolen Life', 'The Art of Hearing Heartbeats', 'Tales of Superstition and Chivalry', 'The Prisoner of Cell 25', 'Caged in Darkness', 'The Program', 'Defending Jacob', 'The Skeleton Key', 'Playing for Keeps', 'Mysticism and Logic and Other Essays', 'The Catastrophic History of You and Me', 'Wonder', 'Why Be Happy When You Could Be Normal?', 'The Unbecoming of Mara Dyer', 'The Summer I Turned Pretty Trilogy', 'Martin Swans Diary: Black Water Crossing', 'Beautiful Ruins', 'The Rootless', 'Hillbilly Tales from the Smoky Mountains - And Other Homespun Remedies, Proverbs, and Poetry', 'Spell Bound', 'Tempest', 'Ο άνθρωπος που έγινε Θεός', 'Thinking, Fast and Slow', 'Breathe', 'Angelfall', 'Beautiful Disaster', 'Το θεώρημα του παπαγάλου', 'Lethal Rider', 'Enter, Night', "The Orphan Master's Son", 'Magic Rises', 'Prokleta avlija', 'Shadow of Night', 'Reason to Breathe', 'Hallowed', 'A Love Story How God Pursued Me and Found Me: An Impossibly True Story', 'Under the Never Sky', 'The One and Only Ivan', 'The Wishing Spell', 'Delirium', 'A Day with a Perfect Stranger', 'Shatter', "Shakespeare's Wife", 'Strange Tales from a Chinese Studio', 'At Peace', '....Și la sfârșit a mai rămas coșmarul', 'Alice the Brave', "Written in My Own Heart's Blood", 'கி.மு - கி.பி [Ki.Mu Ki.Pi]', 'Meant to Be', 'Good Strategy Bad Strategy: The Difference and Why It Matters', "Smokin' Seventeen", 'Death of Kings', 'Insurgent', 'The Treachery of Beautiful Things', 'The Hunger Games: Official Illustrated Movie Companion', 'Spy School', 'Moonblood', 'Headhunters', "Escape from Camp 14: One Man's Remarkable Odyssey from North Korea to Freedom in the West", 'Number 13', 'Sweet Evil', 'Tinker Tailor Soldier Spy', '2312', 'Tarzan of the Apes/The Return of Tarzan', 'The Complete Works of H.P. Lovecraft', 'Fifty Shades Darker', 'Starters', 'Winger', 'Behind the Beautiful Forevers: Life, Death, and Hope in a Mumbai Undercity', 'The Fault in Our Stars', 'Touch', 'American Sniper: The Autobiography of the Most Lethal Sniper in U.S. Military History', 'Code Name Verity', 'Prince of Wolves', 'Ascend', 'Doomed', 'Torn', 'Houtekiet', 'I am Cyrus: The Story of the Real Prince of Persia', 'Scarlet', 'Pivot Point', 'Look Into My Eyes', 'Aristotle and Dante Discover the Secrets of the Universe', 'Golden Trail', 'Blood in the Skies', 'Scent of Magic', 'New England Witch Chronicles', "I've Got Your Number", 'Creatura', 'Seducing the Myth', 'Darker After Midnight', 'Third Grave Dead Ahead', 'A Sunny Morning, A Comedy of Madrid', 'The Last Seal', 'The Ignatius Bible: Revised Standard Version, Second Catholic Edition', 'The Mark of Athena', 'The House of Hades', 'Gazing into the Eternal: Reflections upon a Deeper Purpose to Living', 'Historias y poemas de una lucha de clases', 'Unraveling', 'Why Nations Fail: The Origins of Power, Prosperity, and Poverty', "Ain't No Dust in Heaven", 'Switched', 'Cold Days', 'Vindima', 'Kin', 'The Lovely Bones', 'Table 21', '1Q84 #1-2', 'Slade', "Huey Lambert's Walking Nuclear Circus", 'I am an Island', 'Wild: From Lost to Found on the Pacific Crest Trail', 'The Dark Tower Series: Books 1-7', 'The God Complex', 'Between the Lines', 'Wool', "The Madman's Daughter", 'Cinema of Shadows', 'My Life Next Door', 'Mystery Man', 'Twice Upon a Time', 'Shōgun, Volume 1', 'Shōgun, Volume 2', 'High-Rise', 'Hopeless Magic', 'The Wind Through the Keyhole', 'Perfection', 'Some Time Never: A Fable for Supermen', 'Once Were Warriors', 'Consequences', 'Endless', 'Sever', 'Metamorfosis en el cielo', 'Narcopolis', "See You at Harry's", 'Ανθρωποφύλακες', "Cat's Eye", 'The Psychopath Test: A Journey Through the Madness Industry', 'Revealing Eden', 'A Street Cat Named Bob: How One Man and His Cat Found Hope on the Streets', 'Pegasus and the New Olympians', 'A Legacy of Madness: Recovering My Family from Generations of Mental Illness', 'The Age of Miracles', 'బారిష్టర్ పార్వతీశం [Barrister Parvateesam]', 'White Girl Problems', 'Of Poseidon', 'The False Prince', 'Mystic', 'The Golden Dynasty', 'Partials', 'The Blinding Knife', 'Girl of Nightmares', 'Captive in the Dark', 'Something Witchy This Way Comes', "Hidden Treasures in the Book of Job: How the Oldest Book in the Bible Answers Today's Scientific Questions", 'Donde los árboles cantan', 'Splintered', 'Night School', 'Obsidian', 'Fallen in Love', 'The Secret Circle: The Initiation and The Captive Part I', 'The Power of Habit: Why We Do What We Do in Life and Business', 'Revolution 2020: Love, Corruption, Ambition', 'The Expats', 'You Shall Never Know Security', 'Goddess Interrupted', 'Weird Things Customers Say in Bookshops', 'Love Unrehearsed', 'The Broken Eye', 'Hana', 'A Face Like Glass', 'Accordance', 'Blood Thirst', "Tiger's Destiny", 'Bitterblue', 'Taken by Storm', 'Revived', 'Me and Earl and the Dying Girl', 'Talisman of El', 'Enjambre Sutil: Cuentos', 'The Witness', 'Slated', 'Finale', 'Monument 14', 'UnSouled', '172 Hours on the Moon', 'Days of Blood & Starlight', 'The Coldest Girl in Coldtown', 'An Unsung Hero: Tom Crean - Antarctic Survivor', 'Edenbrooke', 'Just One Year', 'Keeper of the Lost Cities', 'The Innocent', 'Sliding on the Snow Stone', 'As Dead As It Gets', 'Taken at Dusk', "Let's Pretend This Never Happened: A Mostly True Memoir", 'Princess of the Silver Woods', "Tell the Wolves I'm Home", 'Anew', 'Wild Man', 'Born of Silence', 'King of Thorns', "The Serpent's Shadow", 'Until I Die', 'Criminal', 'Inescapable', 'Skagboys', 'One for the Murphys', 'Arranged', 'Falling Kingdoms', 'Lady Luck', 'The Demigod Diaries', 'Winter of the World', 'Justice', 'Earth Girl', 'Short-Straw Bride', "The Devil's Eyes", 'Persona normal', 'The Rise of Nine', "Bob Powell's Terror", 'Spark', 'Dare Me', 'Σήμα κινδύνου', 'Train Dreams', 'Dreamless', "Captain Vorpatril's Alliance", 'The Goddess Hunt', 'The Invaders', 'Vampires Adversaries', 'The Sounding', 'The Betrayal Knows My Name, Volume 04', 'Creeping Death from Neptune: Horror and Science Fiction Comics', 'Poughkeepsie', 'Onyx', 'Chaos Walking: A Trilogy', 'Boundless', 'Redshirts', 'The Chaperone', 'Horae Homileticae (Volume 14); Or, Discourses (Principally in the Form of Skeletons) Now First Digested Into One Continued Series and Forming a', 'Poseidon’s Children', 'Ask the Passengers', 'Nerve', 'The Kill Order', 'Thirst', 'Steal Like an Artist: 10 Things Nobody Told You About Being Creative', 'Unravel Me', 'I Wrote This For You', 'Brawn', 'Wrath', 'Death and What Comes Next', 'Avogadro Corp', 'What the Heart Wants', 'Under Western Eyes', 'Twice Tempted', 'Reached', 'These Broken Stars', "A Bite's Tale", 'The Long Earth', 'Earth Unaware', 'Tiny Beautiful Things: Advice on Love and Life from Dear Sugar', 'The Extraordinary Education of Nicholas Benedict', 'My Policeman', 'Ghettoside: A True Story of Murder in America', 'Attack on Titan, Vol. 1', 'The Light Between Oceans', 'The Hunger Angel', "A Dog's Journey", 'Fragments', 'Edge of Dawn', 'Shadows', 'Rock Chick Regret', 'Ignite Me', 'Cress', 'Winter', 'A Naked Singularity', 'The Manson File: Myth and Reality of an Outlaw Shaman', 'Temptation', 'The Infernal Devices: Clockwork Angel', 'The Unlikely Pilgrimage of Harold Fry', 'The Dragonet Prophecy', 'The Magic', 'Crisótemis', 'Through the Ever Night', 'Alice on the Outside', 'Everblaze', 'Exile', 'Every Day', 'هلوسات صحو', 'هنجراني', 'The Twelve', 'Intuition', 'The Opportunist', 'Predestined', 'Son', 'The Testing', 'The Pandarus File', 'Divergent', 'A Dance with Dragons 1: Dreams and Dust', 'A Dance with Dragons 2: After the Feast', 'Zoo', 'The Paladin Prophecy', 'ഭാരതപര്യടനം | Bharatha Paryatanam', 'Never Seduce a Scot', 'Opal', 'Just One Drop', 'The Case of the Displaced Detective: The Arrival', 'Zom-B', 'UnEnchanted', 'Burn for Burn', 'The Kissing Booth', 'Mystic City', 'First Contact', 'Law Man', 'Prodigy', 'The End of Your Life Book Club', 'The Absolutist', 'Εντολή', 'The Assassin and the Pirate Lord', 'Whispers at Moonrise', 'Αυτό το αστέρι είναι για όλους μας', 'The Assassin and the Desert', 'Three Poems: Host and Guest / Aluda Ketelauri / The Snake-Eater', 'The Living Human Curiosity Sideshow', 'Drama', 'Prince of the Elves', 'Let the Sky Fall', 'Full Force', 'Μαουτχάουζεν', "Rose O' the River", 'Motorcycle Man', 'Poison Princess', 'Legion', 'Wool Omnibus', 'Origin', 'Forgive Me, Leonard Peacock', 'Who Could That Be at This Hour?', 'The Marriage Bargain', 'The Hundred-Year-Old Man Who Climbed Out of the Window and Disappeared', 'Foretold', 'Out of the Dark', 'Şeker Portakalı', 'Conjured', 'Starflower', 'Love Does: Discover a Secretly Incredible Life in an Ordinary World', 'Corpse Delectable', 'The Casual Vacancy', 'The Hydrogen Sonata', 'Indebted', 'This Is How You Lose Her', 'வேங்கையின் மைந்தன் [Vengaiyin Maindhan]', 'The Absent One', 'მთვარის მოტაცება', 'Bring Up the Bodies', 'The Unwords', 'The Secret Keeper', 'Flights from the Lowlands', 'The Execution', 'All Our Yesterdays', 'Blood Tithe', 'The Goddess Legacy', 'Not Collateral Damage', 'Stung', 'Reboot', 'Thoughtless', 'Honor Student', 'Confessions of a Murder Suspect', 'The Beginning of Everything', "So Good They Can't Ignore You: Why Skills Trump Passion in the Quest for Work You Love", "Where'd You Go, Bernadette", 'Avengers Forever', 'Lies a River Deep', 'China Blues', 'Antifragile: Things That Gain from Disorder', 'Dearie: The Remarkable Life of Julia Child', "The Assassin's Curse", 'Fifty Shades Freed', 'Kingdom of the Wicked', 'Literature and Its Writers: A Compact Introduction to Fiction, Poetry, and Drama', 'Memoirs of an Imaginary Friend', "Mr. Penumbra's 24-Hour Bookstore", 'The Silver Linings Playbook', 'Queen of Air and Darkness', 'UnWholly', 'The Assassin and the Underworld', 'Brain on Fire: My Month of Madness', 'Tales from a Not-So-Smart Miss Know-It-All', 'The Iron Legends', 'It Ends With Revelations', 'Fifty-one Shades: A Parody', 'The Screaming Staircase', 'Stalk Me', 'Dare You To', 'ჯაყოს ხიზნები', "A Room of One's Own & The Voyage Out", 'The Assassin and the Empire', 'Drowning in the Shallows', 'The Religion of Man', 'Knight', 'Shadow', "The Shadowhunter's Codex", 'Blood Song', 'Lover at Last', 'Ceaseless', 'Alienated', 'Осколки неба или подлинная история The Beatles', "The Emperor's Soul", 'Perfect Scoundrels', 'United We Spy', 'La balada del café triste', "Facets of Fantasy Collector's Edition", 'The Eternity Cure', 'Visions', 'Fifty Shades Trilogy', 'My Brilliant Friend', 'Playing to Win: How Strategy Really Works', 'Daring Greatly: How the Courage to Be Vulnerable Transforms the Way We Live, Love, Parent, and Lead', "The Signal and the Noise: Why So Many Predictions Fail—But Some Don't", 'The Hunters', 'Mastery', "My Father's Arms Are a Boat", 'The Name of the Star', 'Joyland', 'Reflected in You', 'The Naturals', 'Asylum', 'Besieged: Life Under Fire on a Sarajevo Street', 'Goblinheart', 'The Round House', 'Sentinel', "Sora's Quest", 'Five Little Peppers Abroad', 'Ex Ponto', 'The Car Thief', 'Seduced in the Dark', 'Tempting the Best Man', 'Free Four: Tobias Tells the Divergent Knife-Throwing Scene', 'Elegy', 'لا مذكرات', 'Dreams of Gods & Monsters', 'The Prisoner of Heaven', 'Destroy Me', 'The Time Keeper', 'The Boy Who Sneaks in My Bedroom Window', 'ساق البامبو', 'The Unbound', 'Out of Breath', 'Undying', "Gabriel's Rapture", 'Tenth of December', 'Nexus', 'The Evolution of Mara Dyer', 'Opposition', 'Let the Storm Break', 'Miracles', 'The Problem of Pain', 'Leave It to Psmith', 'The Swerve: How the World Became Modern', 'Boomerang: Travels in the New Third World', 'Life... Love... Kumbh...', 'The Whispering Skull', 'Obsession', 'Caresses Soft as Sandpaper', 'Siege and Storm', 'Ruin and Rising', 'Siapa Pembunuh Palomino Molero?', 'The Marriage Trap', 'Tracker', 'Into the Still Blue', 'Champion', 'March 23rd', "Goblinproofing One's Chicken Coop: And Other Practical Advice in Our Campaign Against the Fairy Kingdom", 'Conflagration', 'City of Bones / City of Ashes / City of Glass / City of Fallen Angels / City of Lost Souls', 'The Complete Hush, Hush Saga: Hush, Hush / Crescendo / Silence / Finale', 'Stones Under the Scythe', "The Navigator's Handbook", 'The Case of the Displaced Detective: At Speed', 'Past, Present, and Promises', 'The Chilling Archives of Horror Comics, Vol. 3: Zombies', "Dead Wrong: Straight Facts on the Country's Most Controversial Cover-Ups", 'Stepping Over Seasons', 'ചങ്ങമ്പുഴ കൃഷ്ണപിള്ള: നക്ഷത്രങ്ങളുടെ സ്\u200cനേഹഭാജനം | Changampuzha Krishnapilla: Nakshathrangalude Snehabhajanam', 'As the Matzo Ball Turns', 'The Fish the Fighters and the Song-Girl', 'سرقات مشروعة', 'The Time of Contempt', 'Fallout: Equestria', 'Ancient Blood: A Novel of the Hegemony', 'Selected Poems of Gabriela Mistral', 'The Almond Tree', 'Captured', 'Pines', 'Maya: A Novel', 'Pocket Atlas of Remote Islands: Fifty Islands I Have Not Visited and Never Will', 'New Yesterdays', 'The Distance Between Us', 'Bill Bergson, Master Detective', 'My Life on the Road', 'On the Island', 'Of Triton', 'The Runaway King', 'Saga, Volume 1', 'Calamity', 'Written in Red', 'The Secret of Ella and Micha', 'Hopeless', 'The Madness Underneath', 'Curtsies & Conspiracies', 'The Sword of Summer', 'تويا', 'NOS4A2', 'The Call of Cthulhu', 'Entwined with You', 'You Had Me At Hello', 'Till The Last Breath', 'Taking Chances', '11.22.63', 'Perfect Timing', 'The Divergent Series 2-Book Collection', 'Diary of a Submissive: A Modern True Tale of Sexual Awakening', 'Chosen at Nightfall', 'The Oaks', 'Eleanor & Park', 'Walking Disaster', "To All the Boys I've Loved Before", 'Malice', 'David and Goliath: Underdogs, Misfits, and the Art of Battling Giants', 'Through the Zombie Glass', 'Prisoner B-3087', 'Amaranth', 'Les caves du Vatican', 'On Dublin Street', 'Styxx', 'Sweet Peril', 'The Retribution of Mara Dyer', 'Fall From Grace', 'Pali anđeo', 'Belonging', 'Reconstructing Amelia', 'Τα χειρόγραφα του φθινοπώρου', 'Just for Now', 'Heart of Obsidian', 'დიონისოს ღიმილი', 'The Perfect Game', 'The Ocean at the End of the Lane', 'This Girl', 'Struck By Lightning: The Carson Phillips Journal', 'Game', "Let's Explore Diabetes with Owls", 'Life After Life', 'This Is What Happy Looks Like', 'Promise of Blood', 'Last Days', 'If You Find Me', 'Americanah', "There's Someone Inside Your House", 'The Dinner', 'A Monster Calls', 'Mom & Me & Mom', 'Chasing the Prophecy', 'The Girls of Atomic City: The Untold Story of the Women Who Helped Win World War II', 'Red Sparrow', 'Ordinary Grace', 'Clockwork Angel; Clockwork Prince; Clockwork Princess', 'The Burn Palace', "Archangel's Legion", 'The Lost Heir', 'Cryonic', 'The Iron Traitor', 'A Tale for the Time Being', 'Honor', 'Six Years', 'Crossed', 'Fifth Grave Past the Light', 'Seven Minutes in Heaven', 'Orphan Train', 'The Blood Gospel', 'Into the Darkest Corner', 'The Golem and the Jinni', 'Anna Karenina', 'The First 90 Days: Critical Success Strategies for New Leaders at All Levels', "Klaeber's Beowulf and The Fight at Finnsburg Fourth Edition", 'Beyond Belief: My Secret Life Inside Scientology and My Harrowing Escape', 'Sometimes It Lasts', 'The Mystic Saga Omnibus', 'Dirty Red', 'If He Had Been with Me', 'Red Rising', 'Cruel Beauty', 'The Fever Series', 'Warm Bodies', 'Effortless', 'Adapting Eden', 'You Are a Badass: How to Stop Doubting Your Greatness and Start Living an Awesome Life', "Proof of Heaven: A Neurosurgeon's Journey into the Afterlife", 'The Drowning', 'Beyond the Event Horizon', 'Wallbanger', 'The Fall of Five', 'Piecas dienas', 'The Case of the Cosmological Killer: The Rendlesham Incident', 'Counting by 7s', 'Doll Bones', 'The Door in the Sky', "A Young Doctor's Notebook", 'The Nightlife: New York', 'The Last Sunset', 'Dead Ever After', 'Emperor of Thorns', 'Emerald City and other stories', 'Ten Tiny Breaths', 'Did six million really die ?', 'Armageddon Cometh', 'Charade', 'Flat-Out Love', 'Dinner with a Vampire', 'Rebel Spring', 'Down to You', 'The Gathering Darkness', 'Sweet Reckoning', 'Awakening the Fire', 'The Steward', 'الفيل الأزرق', 'Revenge', 'City of Screams', "La Vérité sur l'Affaire Harry Quebert", 'Rush', 'Burn', 'Losing It', 'The Beginning: Born at Midnight and Awake at Dawn', 'Slóð fiðrildanna', 'The Crown Tower', 'Rock the Heart', 'A Tale of the Other Kind', 'When Summer Ends', 'The Book of Life', "Escape from Mr. Lemoncello's Library", 'Manuscript Found in Accra', 'Easy', 'North American Lake Monsters', 'The Girl Who Was Supposed to Die', 'The Colossus Rises', 'Music of the Heart', 'The Proposition', 'Awoken', 'The Eye of God', 'Demons at Deadnight', 'Rebels: City of Indra', 'Fangirl', "The Winner's Curse", 'Teardrop', 'Fallen Too Far', 'Pegasus and the Origins of Olympus', 'Lean In: Women, Work, and the Will to Lead', 'Unseen', 'Spook House', 'Tales from a Not-So-Happy Heartbreaker', 'Dangerous Girls', 'Dream Caster', 'Muzeum porzuconych sekretów', 'Sword at Sunset', 'The Edge of Never', 'الأسود يليق بك', 'Fifty Shades Duo: Fifty Shades Darker / Fifty Shades Freed', 'Crazy Rich Asians', 'Gestapo', 'Thief', 'Southern Mystical Moments', 'A Court of Thorns and Roses', 'The Light in the Ruins', 'Fables of the Reconstruction', 'Openly Straight', 'The Hidden Kingdom', 'Proxy', 'A Conspiracy of Faith', 'The 5th Wave', 'Beautiful Bastard', 'Τα ποίηματα Α΄: 1897-1918', "Τα ποιήματα Β': 1919-1933", 'Wicked Betrayal', 'Undeniable', 'The Reason I Jump: the Inner Voice of a Thirteen-Year-Old Boy with Autism', 'The Coincidence of Callie & Kayden', 'And the Mountains Echoed', 'Beautiful Stranger', 'The Proposal', 'The Maleficent Seven', 'The Shock of the Fall', 'From Ashes', 'Finding Cassilia', 'Last Stand of Dead Men', 'Red Sorghum', 'Ghost in the Machine', 'The Humans', 'Doctor Sleep', "Abaddon's Gate", 'The Shining Girls', 'The Infinite Sea', 'The Last Star', 'Silenced', 'Fallen Crest High', 'In Flight', 'Ghost Hand', 'This Man', 'Down London Road', 'Dad Is Fat', 'Going Clear: Scientology, Hollywood, and the Prison of Belief', 'Save Yourself', 'We Were Liars', 'All Tomorrows: The Myriad Species and Mixed Fortunes of Man', 'Never Fade', 'In the Afterlight', 'The Sea of Tranquility', 'Сад Гетсиманський', 'The Orb of Truth', 'The Boys in the Boat: Nine Americans and Their Epic Quest for Gold at the 1936 Berlin Olympics', 'Lexicon', 'Touch & Geaux', "The Cuckoo's Calling", 'Secrets to Surrender', 'Own the Wind', 'Broken Harbor', 'The Silent Wife', 'Mortal', 'We Are All Completely Beside Ourselves', 'The Rosie Project', 'If I Should Die Before My Dog—', 'Family Secrets: Secrets of the Night, #1', 'Waffles and Pancakes: A Lesson in Bullying', 'Crossroads and the Himalayan Crystals', 'The Drowned World', 'Crossing the Seas: A Diary of My Thoughts', "Gabriel's Redemption", 'The Elite', "Maya's Notebook", 'The Ghost Bride', 'Armada', 'The Eye of Minds', 'Significance', 'თეთრი ბაირაღები', 'A Quest of Heroes', "Ember's Curse", 'The Bane Chronicles', 'The Kiss of Deception', 'The Chronicle of Sapta Sindhu', 'The Tragedy of the Chinese Revolution', 'Forever, Christian', 'The Redemption of Callie & Kayden', 'Male Rape: The Emergence of a Social and Legal Issue', 'Never Too Far', 'I Am Her...', 'de Kleine Johannes: I-II-III', 'Politics and the English Language', 'Ginko: Novel Menyentuh Tentang Dokter Perempuan Pertama di Jepang', 'Beauty from Pain', 'Jugend ohne Gott', 'The Hobbit, Part One', 'Captive Prince: Volume Two', 'Kings Rising', 'White Fire', 'Buch der Erinnerung', 'In the Night of Time', 'Crown of Midnight', 'The Long War', 'Brilliance', 'Steelheart', 'হাজার চুরাশির মা', 'التائهون', 'The Bone Season', 'Rule', 'დავით აღმაშენებელი. წიგნი I - II', 'დავით აღმაშენებელი. წიგნი III - IV', 'One Week Girlfriend', 'அக்னிச் சிறகுகள்', 'Between the Lives', 'The Bunker Diary', 'That First Kiss', 'Tampa', 'The Black Reaper', 'Місто', 'Crash into You', 'First Thing I See', 'A Thousand Pieces of You', 'The Girl with All the Gifts', "My Wolf's Bane", 'Two Boys Kissing', 'The Tied Man', 'After Dead: What Came Next in the World of Sookie Stackhouse', 'المرشد', 'Death of the Demon', 'This Man Confessed', "Patience's Love", 'The Foxhole Court', 'The Lowland', 'Never Go Back', 'MaddAddam', 'Rose Under Fire', 'One Summer: America, 1927', 'Metro 2033', 'Black Diamond', 'Ghosts of Ophidian', 'The Wild Girl', 'The Last Time We Say Goodbye', 'Forever Black', 'Men We Reaped: A Memoir', 'My Story', 'A Book About Absolutely Nothing.', 'The Maze Runner Trilogy', "All the Truth That's in Me", 'One Tiny Lie', 'Fluturi', 'Shift', 'The Son of Sobek', 'A Degree In Death', 'The Happy Spinster', 'Wait for You', 'The Simon and Kirby Library: Horror', 'Shattered', 'Epilogue', 'Hive', 'Think Like a Freak', 'Fracture Me', 'Talon', 'Words of Radiance', 'Hild', 'How to Love', 'High Tide', 'The 100', 'The Goldfinch', 'The Luminaries', 'Burial Rites', 'Ancillary Justice', 'Twisted Perfection', 'حكايات فرغلي المستكاوي', 'Losing Hope', 'Gathering Darkness', 'Frozen Tides', 'Fracture', 'March: Book One', 'The Dream Thieves', 'Me Before You', 'My Favorite Mistake', 'Rooftoppers', "Reaper's Property", 'Bad Things', 'Blue Lily, Lily Blue', 'The Raven King', 'Divergent Series Complete Box Set', 'How Not to Murder Your Grumpy', 'Snow Like Ashes', 'Vurt', 'Branded', 'Dept. of Speculation', 'The Alchemyst', 'The Disaster Artist: My Life Inside The Room, the Greatest Bad Movie Ever Made', 'Defy', 'The Longest Ride', 'زمن الضباع', 'I Am Princess X', 'Surviving Raine', 'Falling into You', 'Unhinged', 'Hunt for the Star', 'Trust: Betrayed', 'Stone Cold Touch', 'Every Last Breath', 'The Signature of All Things', 'The Story of a New Name', 'Braiding Sweetgrass: Indigenous Wisdom, Scientific Knowledge and the Teachings of Plants', 'نادي السيارات', 'Undressed', 'Arrow of the Mist', 'Stranded with a Billionaire', 'Murder of Crows', 'Panic', 'Intermix Nation', 'A Sound of Thunder', 'Zealot: The Life and Times of Jesus of Nazareth', 'The Troop', 'Hyperbole and a Half: Unfortunate Situations, Flawed Coping Mechanisms, Mayhem, and Other Things That Happened', 'Kendra Kandlestar and the Box of Whispers', 'The Feminine Mystique', "The Titan's Curse: The Graphic Novel", 'Obscured Darkness', 'Rolling Dice', 'Real', 'Just One Day', 'The Shadow Throne', 'Prisoner of Night and Fog', 'Vampire Origins - Project Ichorous', 'Shadow Catcher', "This Star Won't Go Out: The Life and Words of Esther Grace Earl", 'The Raven Boys', 'The Dark Secret', 'Chain of Gold', 'Chain of Iron', 'Five Days at Memorial: Life and Death in a Storm-Ravaged Hospital', 'The Hen Who Dreamed She Could Fly', 'The Enchantress Returns', 'Promise Me Darkness', 'Ugly Love', 'Broken Point', 'Call Me Tuesday', 'Reckless Endangerment', "Dr. Seuss's ABC: An Amazing Alphabet Book!", 'Driven', "The Husband's Secret", 'The Juliette Society', 'Beauty and the Billionaire', 'All My Life', 'Leo', 'Fixed on You', 'Remy', 'Beautiful Player', 'Price of a Kiss', 'When It Rains', 'Uzumaki', 'The Unexpected Everything', 'World After', 'I Am Malala: The Story of the Girl Who Stood Up for Education and Was Shot by the Taliban', 'The Rocker That Needs Me', 'Watchmen #1: At Midnight, All The Agents…', 'Never Trust a Liberal Over Three --Especially a Republican', 'The World of Divergent: The Path to Allegiant', 'Trust in Me', 'S.', 'The Mystery of Revenge', 'Captivated by You', 'I, the Sun', 'Diary of a Freedom Writer: The Experience', 'Fueled', 'Crashed', 'The Forever Song', 'The First Phone Call from Heaven', 'To Live and Die in Fantasyland', 'Annabel Horton: Lost Witch of Salem', 'The Edge of Always', 'Curse of The Salute', 'The Narrow Road to the Deep North', 'Requiem for Humanity', 'The Sixth Extinction: An Unnatural History', 'Wedding Night', 'Control', 'Wayward', 'A Court of Mist and Fury', 'Fighting Destiny', 'Annihilation', 'Evil Among Us', 'Friend-Zoned', 'UnDivided', 'Μυθιστόρημα', 'Silence of the Wolves', 'Ethereal Fury', 'Taunting Destiny', "Don't Make Me Beautiful", 'Lick', 'Woven', 'Arsen: A Broken Love Story', 'Love & Misadventure', 'The Last Ever After', 'Queen of Shadows', 'The Martian', 'For Such a Time', 'A House in the Sky', 'Blue Lorries', 'Zero to One: Notes on Startups, or How to Build the Future', 'You Are the Placebo: Making Your Mind Matter', 'Vampire Most Wanted', 'The Confidence Code: The Science and Art of Self-Assurance – What Women Should Know', 'Dorothy Must Die', 'Dreamers in Hell', 'Mus of Kerbridge', 'Murder Most Unladylike', 'Willing Captive', 'Challenger Deep', 'Acceptance', 'Authority', 'Essentialism: The Disciplined Pursuit of Less', 'Creativity, Inc.: Overcoming the Unseen Forces That Stand in the Way of True Inspiration', 'The Impossible Knife of Memory', 'The Invention of Wings', 'Half Bad', 'The Transfer', 'Landline', 'Tall, Tatted and Tempting', 'Innocent Blood', 'The Kill Switch', 'Beautiful Oblivion', 'The King', 'Timebound', 'A Long Way Home', 'Long After', 'Four: A Divergent Story Collection', 'The Dying of the Light', 'Spellbound in His Arms', 'Ruin', 'Tears of Tess', 'Crashing Down to Earth', 'It Happened One Wedding', 'Odinsbarn', 'Forever with You', 'Love Letters to the Dead', 'The Dark Eidolon and Other Fantasies', 'I Slept with Slender Man', 'The Opposite of Loneliness: Essays and Stories', 'All the Light We Cannot See', 'I Am Pilgrim', 'Super Mario Bros. 3: Brick by Brick', 'Beneath This Man', 'The Infinite Jeff: A Parable of Change', 'How to Fall in Love', 'Das zweite Buch der Träume', 'Galatea', "Wolf's Head", 'The Strange and Beautiful Sorrows of Ava Lavender', 'The Guard', "An Astronaut's Guide to Life on Earth", 'A World Without Princes', 'The Selection Stories: The Prince & The Guard', 'The Dionysus Connection', 'Escaping Destiny', "Since You've Been Gone", 'Walking On Air', "Against the Grain: A Coach's Wisdom on Character, Faith, Family, and Love", 'Rush Too Far', 'The Silkworm', 'Unscrupulous', 'Carter Reed', 'Greenglass House', 'Galactic Energies', 'The Auschwitz Escape', 'The Haunted Cavern: A Caledonian Tale', 'The Here and Now', "The Assassin's Blade", 'Mud Vein', 'The Tower of the Swallow', 'Life Song', 'The Crossover', 'Taming the Blowing Wind', 'The Finisher', 'Say I Love You, Vol. 1', 'The Storied Life of A.J. Fikry', 'Tangled', 'Η καμένη βάτος', 'On the Fence', 'Bigfoot: The Mysterious Monster', 'The Sex Lives of Siamese Twins', 'The Trigger: Hunting the Assassin Who Brought the World to War', 'The Circle', 'Fighting Redemption', 'Chaysing Dreams', 'Switch! The Lost Kingdoms of Karibu', 'The Assassin and the Healer', 'Sweet Thing', 'Quantum Roots', 'Clockwork Princess', 'My Heart and Other Black Holes', 'The Other Side', 'Sempre', 'Until November', 'A Capitalist in North Korea: My Seven Years in the Hermit Kingdom', 'The Target', 'Afterworlds', 'The Books of Magic', 'The Real Book of the Dead', 'Jack Who?: Perfect Storms', 'Introductions', 'The Romanov Sisters: The Lost Lives of the Daughters of Nicholas and Alexandra', 'The Rise of Mallory', 'A Constellation of Vital Phenomena', 'Rush Revere and the Brave Pilgrims', 'All the Bright Places', 'Grit: The Banter and Brutality of the Late-Night Cab', 'This One Summer', 'Grim', 'Twelve Years a Slave', 'Staying Strong: 365 Days a Year', 'Unite Me', 'Crocodile on the Sandbank', 'Bird Box', 'The Miniaturist', 'Rebirth', 'End of Days', 'The Guardian of Secrets and Her Deathly Pact', '10% Happier', 'Some Boys', 'Leopold Warndorf', 'Selling Scarlett', 'The Scriptlings', 'The Brightest Night', 'Men Explain Things to Me', 'A Beautiful Wedding', 'Cop Town', 'Dominion', 'Not Open: Win The Invisible Spiritual Culture War', 'The Time Traveler’s Wife', '21 Distinctions of Wealth: Attract the Abundance You Deserve', 'Death of the Body', 'Messages From Heaven', 'More Than Forever', 'Finding Cinderella', 'The One', 'A Knight of the Seven Kingdoms', 'The Immortal Collection', 'The 6th Extinction', 'Cibola Burn', 'Baptism of Fire', 'The Fever', 'Through the Woods', 'The Fill-In Boyfriend', 'The Gospel of Loki', 'Tokyo Ghoul, Tome 1', 'Everything Leads to You', '#Girlboss', 'The Obstacle Is the Way: The Timeless Art of Turning Trials into Triumph', 'The Sleepwalkers: How Europe Went to War in 1914', 'Liar, Temptress, Soldier, Spy: Four Women Undercover in the Civil War', 'Tales From Wonderland: Alice', 'Everything, Everything', 'The Girl You Left Behind', 'Everything I Never Told You', 'The Body Keeps the Score: Brain, Mind, and Body in the Healing of Trauma', 'The Stripper Diaries', 'The Blood of Olympus', 'Allegiant', 'Tiny Pretty Things', 'Sex in the Title: A Comedy about Dating, Sex, and Romance in NYC', 'فلتغفري', 'Worm', 'Mosquitoland', 'The Selection Series 0.5, 1-2 Box Set', 'Capital in the Twenty First Century', 'The Bands of Mourning', 'Living the Best Day Ever', 'Seven Sons', 'The Staff of Serapis', 'The Crown of Ptolemy', 'The Meat Market', 'Sweet Hope', 'Hard Up, Ardon #1', 'Night Film', 'A Man Called Ove', 'Mr. Mercedes', 'Pulse', 'Sweet Filthy Boy', 'The Wrath and the Dawn', 'The Unexpected: 18 Tales of Fright and Terror!', 'H is for Hawk', 'The Good Girl', 'Bad Feminist', 'Leaving Time', 'Zanoni', 'تصوف: منقذو الآلهة', 'The New Atlantis', 'Spilled Milk', 'Blackamoores: Africans in Tudor England, Their Presence, Status and Origins', 'Jamaica Inn', 'The Parasites', 'The Birds and Other Stories', 'Alien Species Intervention', 'People Who Eat Darkness: The True Story of a Young Woman Who Vanished from the Streets of Tokyo—and the Evil That Swallowed Her Up', 'I Was Here', "Puritan's Empire: A Catholic Perspective on American History", "Fruzzle's Mystery Talent: A Bed Time Fantasy Story for Children ages 3-10", 'Whirlwind', 'Rock Bottom', 'Morning Star', 'Golden Son', 'Probability Theory: The Logic of Science', 'Running Barefoot', 'Churning Waters', 'Laços fortes e decisões difíceis', 'Beginnings: Obsidian & Onyx', 'Obisidan: Schattendunkel', 'Marching Powder', 'Clean Sweep', 'Play', "The Magician's Land", 'Amity', 'The Fifth Season', 'Pop. 1280', 'The Grifters', 'A Bird Without Wings', 'Secrets of the Realm', 'El príncipe de la niebla', 'Move the Sun', 'Gone Girl', 'Кассандра', 'The Revenge of Seven', 'Одержима', 'The Starbirth Assignment: Shifter', 'Nimona', 'Point of Retreat', 'Walks Away Woman', 'I Too Had a Love Story', 'Witch in the Woods', 'Plague of Angels', 'Skin Game', 'The Greater Trumps', 'Beautiful You', 'Letters From Your Soul', 'More Happy Than Not', 'Simon vs. the Homo Sapiens Agenda', 'Cracked Hearts', 'Seraphina', 'The Templar Knight: Book Two of the Crusades Trilogy', 'Neil Patrick Harris: Choose Your Own Autobiography', 'Station Eleven', 'Finding Me: A Decade of Darkness, a Life Reclaimed - A Memoir of the Cleveland Kidnappings', 'Knight in Shining Suit', 'Personal', 'Manga - Hentai Anime and Manga: El, Adventure Kid, Akiba Girls, Aki Sora, Alien from the Darkness, Angels in the Court, Angel, Angel Blade, Angel of Darkness, Another Lady Innocent, a Wish of My Sister, Barabanba, Beat Angel Escalayer', 'My True Love Gave to Me: Twelve Holiday Stories', 'False Security', 'Jackaby', 'في قلبي أنثى عبرية', 'هيبتا', 'البارمان', 'Just Mercy', 'The Complete Malazan Book of the Fallen', 'Loving Mr. Daniels', 'The Maze Runner Series', 'Happy Halloween', 'The Book of Occult', 'Killer Instinct', 'Raw', 'Autres Temps... 1916', 'The Iron-Jawed Boy', "The Winner's Crime", "The Winner's Kiss", 'Bared to You', "It's Not What You Think", 'Transcendence', 'Carnelian', 'Firebolt', 'The Three-Body Problem', 'Superintelligence: Paths, Dangers, Strategies', 'Killing Sarai', 'Yours Truly, Taddy', 'Love, Lex', 'Interview with a Master', 'We Got Zombies On The Lawn Again, Ma', 'The Iron Trial', 'The Queen of Zombie Hearts', 'Titans, Humans, And The Beasts', 'Valhalla', 'Not That Kind of Girl: A Young Woman Tells You What She\'s "Learned"', 'The Will', 'Heir of Fire', 'Under Locke', 'Solitaire', 'Kiss the Sky', 'The Girl in 6E', 'The Book of Ivy', 'Ink and Bone', 'Night Owl', 'Death by Black Hole: And Other Cosmic Quandaries', 'Being Mortal: Medicine and What Matters in the End', 'P.S. I Still Love You', 'El Deafo', 'Burn for Me', 'Ancillary Sword', 'The First Fifteen Lives of Harry August', 'A Grimm Warning', 'In the Blood', 'The Ask and the Answer', 'The Knife of Never Letting Go', 'Monsters of Men', 'The Life We Bury', 'Endless Knight', 'Reasonable Doubt: Volume 1', 'A Gathering of Shadows', 'Fates', 'Circle of Five', 'Half Wild', 'Half Lost', 'Adultery', 'The Bone Clocks', "I'll Give You the Sun", 'The Young Elites', 'Brown Girl Dreaming', "Percy Jackson's Greek Gods", 'The Afternoon When She Died', 'Push Not the River', 'Nothing Left to Lose', 'A House Without Windows', 'The Iron-Jawed Boy and the Hand of the Moon', 'A Brief History of Seven Killings', 'A Spinner in the Sun: Grey Scale Illustrations', 'Yes Please', 'Seeker', 'The War That Saved My Life', 'Revival', 'The Darkest Part of the Forest', 'The Well House', 'The Unexpected Guest', 'The Art of Asking; or, How I Learned to Stop Worrying and Let People Help', 'Passenger', 'Wayfarer', 'Conduit', 'Shit my History Teacher DID NOT tell me!', 'Blood Infernal', 'Collected Poems: 1945-1990 R.S.Thomas: Collected Poems : R S Thomas', 'Calico Jack in your Garden', 'Everyday Sexism', 'Extraordinary Tales', 'Bad Romeo', 'As You Wish: Inconceivable Tales from the Making of The Princess Bride', 'The First Bad Man', 'Prince Lestat', 'What If? Serious Scientific Answers to Absurd Hypothetical Questions', 'Truthwitch', 'The Invisible Library', 'LOVELY TRIGGER', 'Twisted', "Assuming Names: A Con Artist's Masquerade", 'Vision in Silver', 'Central Park', 'The Hanging Tree', 'The Long Haul', 'The Slow Regard of Silent Things', 'The Heart of Betrayal', 'Quicker', 'Ruthless People', 'Камінний господар', 'A Unique Kind of Love', 'The Shadows', 'The Nightingale', 'The Innovators: How a Group of Hackers, Geniuses and Geeks Created the Digital Revolution', 'The Kind Worth Killing', 'Black Ice', 'Monster in His Eyes', 'The Children Act', 'More Than This', 'Run with the Wind', "It Ain't Me, Babe", "Logan's Story", 'My Death Experiences - A Preacher’s 18 Apocalyptic Encounter with Death, Heaven & Hell.', 'The Far Pavillions, Volume 2', 'God in the Dock', 'The Queen', 'A Darker Shade of Magic', 'Moon 514: Blaze and the White Griffon', 'Saving Luke', 'The Assistant', 'Vampire Princess Rising', 'The Warden and the Wolf King', 'Pax', 'Ιστορίες του κυρίου Κόυνερ', 'Souls Unfractured', 'Lullabies (Volume 2)', 'الصوت روح', "My Stroke of Insight: A Brain Scientist's Personal Journey", 'An Elephant Is On My House: And Other Poems', 'The Zodiac Legacy: Convergence', 'All I Know Now: Wonderings and Reflections on Growing Up Gracefully', "Don't Point That Thing At Me", 'A School for Unusual Girls', 'Honor and Polygamy', 'Shatter Me Complete Collection: Shatter Me, Destroy Me, Unravel Me, Fracture Me, Ignite Me', 'Оргія', 'Mateguas Island', 'Six of Crows', 'The Novice', 'Crooked Kingdom', 'White Hot', 'The Life-Changing Magic of Tidying Up: The Japanese Art of Decluttering and Organizing', 'Moon Rising', 'Red Queen', "My Sister's Grave", 'Arrangement in Black and White', 'Fish in a Tree', "Clearly's Corruption", 'The Rithmatist', 'Drept, legislaţie şi libertate: o nouă formulare a principiilor liberale de justiţie şi economie politică', 'Ensnared', 'Black Lies', 'Aegis Rising', 'Under a Painted Sky', 'Girl Online', 'NeuroTribes: The Legacy of Autism and the Future of Neurodiversity', 'Until Friday Night', 'The Buried Giant', 'Trigger Warning: Short Fictions and Disturbances', 'Dark Rooms', 'After We Collided', 'Uprooted', 'Story Thieves', 'Final Orders', 'Dead Wake: The Last Crossing of the Lusitania', 'Long Way Down', 'The Girl on the Train', 'Fluency', 'Fire & Flood', 'All Fall Down', "So You've Been Publicly Shamed", 'After We Fell', 'Palace of Treason', 'The Seven Sisters', 'The Wright Brothers', "Red Notice: A True Story of High Finance, Murder, and One Man's Fight for Justice", 'The Hook Up', 'How To NOT Be An Idiot When You Get Divorced', 'Bright Side', 'China Rich Girlfriend', 'Symptoms of Being Human', 'War Hawk', 'Magic America', 'Kim Kardashian Selfish', 'Cinder & Ella', 'Neverseen', 'The Long Way to a Small, Angry Planet', 'We Should All Be Feminists', 'Seveneves', 'The Trouble with Playing Cupid', "Amatore's Restaurant", 'A Little Life', 'The Revenant', 'My Lady Jane', 'The Bridge To Caracas', "Kerri's War", 'Stepbrother Dearest', 'The Genetic Lottery', 'The Girl Who Fell', 'The Queen of the Tearling', 'I Will Always Write Back: How One Letter Changed Two Lives', 'The Shadow of What Was Lost', 'Shot Down: The True Story of Pilot Howard Snyder and the Crew of the B-17 Susan Ruth', 'Just Around The Bend: Más o Menos', 'A Work in Progress', 'Nemesis Games', 'Better Than Before: Mastering the Habits of Our Everyday Lives', 'The Mortal Instruments, the Complete Collection (Boxed Set): City of Bones; City of Ashes; City of Glass; City of Fallen Angels; City of Lost Souls; City of Heavenly Fire', 'Manwhore', "My Best Friend's Brother", 'The Rest of Us Just Live Here', 'Dom Wars: Round Six', 'Handcuff Secrets', 'The Heir', 'Reason For Vengeance', 'The Watchmaker of Filigree Street', 'The Argonauts', "Tom Sutton's Creepy Things", 'Dogshit Saved My Life', 'The Waking', 'Saint Anything', 'سلسلة الشيطان يحكي - العدد الأول: مطعم اللحوم البشرية', 'The Lord God Made Them All', 'Seduction and Snacks', 'A Head Full of Ghosts', 'The Art of Being Normal', 'Splitter', 'Saga, Volume 4', 'Stepping Stones: The Huntress Series of Short Stories', "Sophia's Journal", 'Liliana', 'At the Going Down of the Sun', 'I Let You Go', 'Air Awakens', 'The Strange Library', 'Welcome to Night Vale', 'Jason', 'Extraordinary Means', 'Memory Man', 'Those Who Leave and Those Who Stay', 'The Fold', 'Hollow City', 'The Sympathizer', 'The Dark Forest', 'Glass Sword', 'Aurora', 'Chase the Dark', 'Thoughtful', 'A Shadow Bright and Burning', 'The Water Knife', 'All the Missing Girls', 'After Ever Happy', "13 Things Mentally Strong People Don't Do: Take Back Your Power, Embrace Change, Face Your Fears, and Train Your Brain for Happiness and Success", 'Nine Minutes', 'One Night with the Prince', 'Throne of Novoxos', 'Verdammt. Verliebt.', 'Godsgrave', 'Darkdawn', 'The Fever Code', 'A Study in Charlotte', 'The Little Paris Bookshop', 'MARS', 'Made', 'Cien Rostros de María, para la contemplación', 'Finding Audrey', 'The Rose & the Dagger', 'Flame in the Mist', 'Empress Theresa', 'Before We Were Strangers', 'The Anatomical Shape of a Heart', 'The Book of Negroes', 'Rising Strong: The Reckoning. The Rumble. The Revolution.', 'Marriage by Law', 'Every Last Word', 'The Judgement', 'Disclaimer', "Percy Jackson's Greek Heroes", 'Frozen Charlotte', 'One Plus One', 'Crystal Storm', 'Immortal Reign', 'Illuminae', 'Alice', 'Eeny Meeny', 'Hope: A Memoir of Survival in Cleveland', 'The Bone Labyrinth', 'Flawed', 'The Traitor Baru Cormorant', 'The Inexplicable Logic of My Life', 'Modern Romance', 'The Lost Girls', "The King's Scrolls", 'Finders Keepers', 'The Rosie Effect', 'Meditation: Insights and Inspirations', 'Lucky Go Happy: Make Happiness Happen!', 'Why Not-World', 'Serafina and the Black Cloak', 'Optatam Totius: Decree on Priestly Training', 'Magnificent Obsession', 'milk and honey', 'Ancillary Mercy', 'The Way I Used to Be', 'The Marvels', 'Akarnae', 'Cody: Clicking Beat on the Brink of Nada', 'Maybe Not', "The King's Men", 'The Cartel', 'Winter Turning', "My Grandmother Asked Me to Tell You She's Sorry", "An Author's Odyssey", 'Just Perfect', 'We Are the Ants', 'Sapiens: A Brief History of Humankind', "You're Never Weird on the Internet", 'The Rainbow Bridge: Bridge to Inner Peace and to World Peace', 'Very Good Lives: The Fringe Benefits of Failure and the Importance of Imagination', 'Black-Eyed Susans', 'A Court of Wings and Ruin', 'The Singularity is Coming: The Artificial Intelligence Explosion', 'Fire Starter', 'The Rose Society', 'Shadow Play', 'Extreme Ownership: How U.S. Navy SEALs Lead and Win', 'Furiously Happy: A Funny Book About Horrible Things', 'The 5 Love Languages: The Secret to Love that Lasts', 'The Creeping Shadow', 'أنتيخريستوس', 'Unique, Different, Found', "The Invention of Nature: Alexander von Humboldt's New World", 'Storm and Silence', 'Kulti', 'Praying the Bible', 'Library of Souls', 'My Beloved', 'Moment', 'Mansai Na Diva', 'An Absolutely Remarkable Thing', 'Planetfall', 'A Hidden Fire', 'Vida extra', "You Really Are Full of Shit, Aren't You?", 'The Force of Wind', 'Never Never', 'The Door of the Unreal: A Classic Werewolf Novel', 'Abuse', 'The Thing About Jellyfish', 'The Hollow Boy', 'Never Never: Part Two', 'Maybe Someday', 'Big Magic: Creative Living Beyond Fear', 'Happily Ever After', 'The Lightning-Struck Heart', 'Silent Scream', '1001 Movies You Must See Before You Die', 'This Is Where It Ends', 'Song Bird: Matters of the Heart', "In Order to Live: A North Korean Girl's Journey to Freedom", 'The Peripheral', 'The Demon in the Wood', 'Scion of Ikshvaku', 'Flash Boys: A Wall Street Revolt', 'Wintersong', 'Алмазная колесница . Том 1', 'Shadows of Carcosa: Tales of Cosmic Horror by Lovecraft, Chambers, Machen, Poe, and Other Masters of the Weird', 'And the Tide Turns', 'Wolf by Wolf', 'Go Set a Watchman', 'See Me', 'Inside the Bubble', 'Beauty Is a Wound', 'Follow You Home', 'All In', 'Off the Grid: The Catalyst', "The Aeronaut's Windlass", 'The Paper Menagerie and Other Stories', 'Blood Kiss', 'Obsidio', 'Unforgiven', 'Missoula: Rape and the Justice System in a College Town', 'The Deal', 'The Thousandth Floor', 'Bearing the Cross: Martin Luther King, Jr., and the Southern Christian Leadership Conference', 'Rebel of the Sands', 'Fear Me', 'Her Final Breath', 'Beautiful Broken Rules', 'بعثة بدوي', 'Beyond the Kingdoms', 'Dear Martin', 'Homecoming: The Assiduous Quest of Tobias Hopkins - Part One', 'Secret Deceptions', 'Queen Song', 'History Is All You Left Me', 'Paris Noir', 'Una historia de ayer', 'La Vampire', 'Did I Mention I Love You?', 'Hunger Makes Me a Modern Girl', 'Presence: Bringing Your Boldest Self to Your Biggest Challenges', "The Girl in the Spider's Web", 'Individualism şi ordine economică', 'Tipping the Velvet', 'November 9', 'Ice Planet Barbarians', 'Rationality: From AI to Zombies', 'Prisoners of Geography: Ten Maps That Tell You Everything You Need to Know About Global Politics', 'The Assiduous Quest of Tobias Hopkins: The Complete Novel', 'Fates and Furies', 'The Japanese Lover', 'You', 'Smoke Gets in Your Eyes & Other Lessons from the Crematory', 'Izza Ogledala', 'Ko pijanci obmolknejo', 'The Amazing Book Is Not on Fire', 'Mercy', 'The Story of the Lost Child', 'You Will Know Me', 'The Golden Braid', 'Royal Assassin', 'Sueños de piedra', 'Radio Silence', 'The Last Weynfeldt', 'Provenance', 'The Girl with Seven Names: A North Korean Defector’s Story', 'Ross Poldark', 'All the Birds in the Sky', 'Bilinmeyen Bir Kadının Mektubu', 'Finding the Rainbow', 'Vain', 'Notorious RBG: The Life and Times of Ruth Bader Ginsburg', "¡Adios, America!: The Left's Plan to Turn Our Country into a Third World Hellhole", 'Beautiful Broken Things', 'The V Girl: A Coming of Age Story', 'Muse of Nightmares', "Death's End", 'Sword of Destiny', 'The Loney', 'P.S. I Like You', 'The Road to Little Dribbling: Adventures of an American in Britain', 'The Vegetarian', 'The Bear and the Nightingale', 'Between the World and Me', 'Lady Midnight', 'Children of Time', 'The Dinosaur Knights', 'Binge', 'Société', 'Every Heart a Doorway', 'End of Watch', 'Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future', 'A Torch Against the Night', 'The Air He Breathes', 'The Mistake', 'Pretty Girls', 'A List of Cages', 'Salt to the Sea', 'Originals: How Non-Conformists Move the World', 'Spark Joy: An Illustrated Master Class on the Art of Organizing and Tidying Up', 'Fight Club 2', 'Wide Sargasso Sea', 'Forgotten, Saved, Loved', 'One Good Dragon Deserves Another', 'Grey', 'Love Me Never', 'The Lonely City: Adventures in the Art of Being Alone', 'Binti', 'Shadow Team GB', 'El camino de los reyes', 'The Rat Prince', 'Stars Above', 'Off the Grid', 'Words on Bathroom Walls', 'Complicate Me', 'Escaping Peril', 'Moonbreeze', 'Home: A Hidden Tale - Sinister Tales', 'Reasons to Stay Alive', 'Lab Girl', 'Sleeping Giants', 'The Widow', 'The Black Witch', 'Deep Work: Rules for Focused Success in a Distracted World', 'Love & Gelato', 'How to Kill an Incubus', 'Demented: A Short Horror Story Collection', 'Poet Anderson ...of Nightmares', 'Before', 'Nick and Charlie', 'The Female of the Species', 'The Abolition of Man', 'The Atlantis Gene', 'The Great Divorce', 'Evicted: Poverty and Profit in the American City', 'The Reason', 'The Blade Artist', 'The Hating Game', 'Asylum: A Hidden Tale - Sinister Tales', 'Tell Me Three Things', 'Lilac Girls', 'Oil and Marble', 'When Breath Becomes Air', 'A Thousand Boy Kisses', "A Mother's Reckoning: Living in the Aftermath of Tragedy", 'Cruel Crown', 'The Beauty of Darkness', 'Hidden Figures', 'Goodnight Punpun Omnibus, Vol. 1', 'Lips of a Mastodon', 'Les Disparus du Clairdelune', 'The Grownup', 'The Princess Diarist', 'Wolf Hollow', 'The Wild Robot', 'The Cruel Prince', 'The Wicked King', 'The Queen of Nothing', 'Hunger: A Memoir of (My) Body', 'The Crown', 'The Improbable Wonders of Moojie Littleman', 'Beautiful Affliction', 'A Grief Observed', 'Raelia', 'Fool Me Once', 'All the Ugly and Wonderful Things', 'Nevernight', 'Exile for Dreamers', 'The Summer that Melted Everything', 'Fugly', 'Mack', 'Beg For Mercy', 'Suit', 'Immortal Matchmakers, Inc.', 'Some Kind of Perfect', 'The Passenger', 'Never Split the Difference: Negotiating As If Your Life Depended On It', 'Toe to Toe', 'The Millennial Reincarnations', "The Life-Changing Magic of Not Giving a F*ck: How to Stop Spending Time You Don't Have with People You Don't Like Doing Things You Don't Want to Do", 'Hamilton: The Revolution', 'Arks Of Octava', 'In the Clearing', 'The Obelisk Gate', 'I See You', 'Truly Madly Guilty', 'The Hidden Oracle', 'Everything and a Happy Ending', 'Kepler Moon Alpha', 'The Art of Startup Fundraising', 'Black Hole', 'Charcoal Tears', 'The Problem with Forever', 'Forbid Me', 'Hell Bound', 'Troublemaker: Surviving Hollywood and Scientology', 'The Diabolic', 'Colonization', 'Vengeful', 'The Midnight Watch', 'Twilight / Life and Death', 'The Ballad of Black Tom', 'The Big Short: Inside the Doomsday Machine', 'Crippled America: How to Make America Great Again', 'The Library at Mount Char', 'The Girls', 'Why They Stay: Sex Scandals, Deals, and Hidden Agendas of Nine Political Wives', "But What If We're Wrong? Thinking About the Present As If It Were the Past", 'Homegoing', 'RoomHate', 'Paradox Effect: Time Travel and Purified DNA Merge to Halt the Collapse of Human Existence', 'Hillbilly Elegy: A Memoir of a Family and Culture in Crisis', 'War Storm', 'One True Loves', 'And I Darken', 'Doom Patrol: Book One', 'Grit: The Power of Passion and Perseverance', 'Shoe Dog: A Memoir by the Creator of Nike', 'Girl of Shadow', 'Making Faces', 'Alice Mongoose and Alistair Rat in Hawaii', 'The Score', 'An Invisible Client', 'White Collar Blackmail', 'Mindfulness Living in the Moment - Living in the Breath', 'The Oldest Soul - Animus', 'Like Lions', 'Lodestar', 'It Ends with Us', 'The Gene: An Intimate History', 'Bounty from the Box: The CSA Farm Cookbook', 'FREEDOM: The End of the Human Condition', 'Questa notte ho sognato in cubano', 'Britt-Marie Was Here', 'Wish', 'Bad Blood', 'Coinman: An Untold Conspiracy', 'Things as They are, or, The Adventures of Caleb Williams', 'Tommaso', 'After You', 'An Ember in the Ashes', 'The Dry', 'Frostblood', 'Dark Matter', 'The Hike', 'In a Dark, Dark Wood', 'Bluestone', 'The Course of Love', 'Downright Delinquents', 'Caraval', 'The Hammer of Thor', 'Århundradets kärlekssaga', 'The Burning Maze', 'The Tyrant’s Tomb', 'The Ship of the Dead', 'Dodging Satan: My Irish/Italian, Sometimes Awesome, But Mostly Creepy, Childhood', 'The Girl Before', 'Vom Ende der Einsamkeit', 'Love in Exile', 'The Body Reader', 'The Magic Misfits', 'The Girl Who Drank the Moon', 'The Girl in the Garden', 'Revolution', 'Our Chemical Hearts', 'A Curious Beginning', 'The Woman in Cabin 10', 'Darkstalker', 'Autonomous', 'The Girl in the Ice', 'We Are Okay', 'The Nix', 'The Hidden Life of Trees: What They Feel, How They Communicate: Discoveries from a Secret World', 'The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life', 'Empire of Storms', 'Persepolis Rising', "Tiamat's Wrath", 'Three Dark Crowns', 'The Kept Woman', 'Swing Time', 'Renegades', 'Strange the Dreamer', 'Bobby Kennedy: The Making of a Liberal Icon', 'Confederates: A Novel', 'Everybody Lies: Big Data, New Data, and What the Internet Can Tell Us About Who We Really Are', 'Between Two Worlds', 'The Midnight Star', 'One Clear Call', 'O Shepherd, Speak!', "Timbi's Dream", 'Tapping the Billionaire', 'Paper Princess', 'Holding Up the Universe', 'FantasticLand', 'The Sun Is Also a Star', 'SPQR: A History of Ancient Rome', 'The Couple Next Door', 'Autoboyography', 'Tales from the Shadowhunter Academy', 'Scythe', 'Seven Cuts', 'One Child', 'Behind Her Eyes', 'The Bird and the Sword', 'I Am Not Your Perfect Mexican Daughter', 'Harry Potter and the Cursed Child: Parts One and Two', 'Hideaway', 'Exordium of Tears', 'Resonance', 'The Seventh Plague', "Damn Fine Cherry Pie: And Other Recipes from TV's Twin Peaks", 'Out of Bounds', 'Dark Age', 'Light Bringer', 'Wolfsong', 'Gemina', 'Girl in Pieces', "The Gentleman's Guide to Vice and Virtue", 'Shrill: Notes from a Loud Woman', 'The Coaching Habit: Say Less, Ask More & Change the Way You Lead Forever', 'فن التخلي', 'Fantastic Beasts and Where to Find Them: The Original Screenplay', 'The Wall of Winnipeg and Me', 'Wildcard', 'Exotic Neurotic', 'Freedom: My Book of Firsts', 'The Girl with the Lower Back Tattoo', 'The Stone Bearers', 'The Blood Legacy: A Xianxia Cultivation Fantasy', 'Little Heaven', 'Hidden Bodies', 'Behind Closed Doors', 'Чорна Пантера і Білий Ведмідь', 'A Closed and Common Orbit', 'Hellboy and the B.P.R.D.: 1952 #1', 'Killers of the Flower Moon: The Osage Murders and the Birth of the FBI', 'كلاب الراعي', 'Talons of Power', 'Draekora', 'Deep World Fire', 'The Lies of Locke Lamora', 'Truly, Devious', 'Defeating Jihad: The Winnable War', 'I Dream of Yellow Kites: What if it was all just a nightmare?', 'Our Blue Orange', 'From Sand and Ash', 'شرح رواية أنتيخريستوس - التحليل والمصادر', 'Just One Damned Thing After Another', 'A Different Blue', 'Wonder Woman: Warbringer', 'Daughters of the Dragon', 'Scorched Earth: Restoring the Country after Obama', 'Born a Crime: Stories From a South African Childhood', 'Th1rteen R3asons Why', 'Rich People Problems', 'Scrappy Little Nobody', 'The Fireman', 'The Fisherman', 'The 7th Canon', 'Lincoln in the Bardo', 'The Zombie Room', 'The Weight of Glory', 'Her Every Fear', 'The Four Loves', 'Never Let You Go', 'A Conjuring of Light', 'The Silent Waters', "Africa's Child", 'The Butterfly Garden', 'A Merciful Death', 'Nutshell', "The World's Last Night: And Other Essays", 'The Dark Tower: And Other Stories', 'Of Other Worlds: Essays and Stories', 'Letters to the Lost', 'The Little Book of Hygge: The Danish Way to Live Well', 'Aurora Rising', 'The Princess Saves Herself in This One', 'The Collapsing Empire', 'Human Acts', 'Brain Damage', 'Carve the Mark', 'Fate', 'Waking Gods', 'The Dark Prophecy', 'Redstone', 'Rosto Inacabado (Pequenos segredos alquímicos) (PT)', 'The Beech Tree', 'The Golden Sword', 'Midnight Obsession', 'Think and Grow Rich', 'Tier One', 'El Diablo', 'The Trapped Girl', "King's Cage", 'Are We Smart Enough to Know How Smart Animals Are?', 'Ace of Shades', '4 3 2 1', 'By Your Side', '12 Rules for Life: An Antidote to Chaos', 'We Were the Lucky Ones', 'Why Not Me?', 'Dreadnought', 'The Immortalists', 'Asyri: The Wrath of the Fire Stone', 'The Red Scrolls of Magic', 'Dark Tales', 'Alex, Approximately', 'The Last Magician', 'Lord of Shadows', 'Anna of the Five Towns', 'If We Were Villains', 'The Six of Crows Duology Boxed Set', "Oh, The Places You'll Go!", 'Slammed', 'Brainwalker', 'Liars: How Progressives Exploit Our Fears for Power and Control', 'Diary of a Teenage Zombie Villager, Book 1', 'Diary of a Wimpy Kid 1', 'انتحار فاشل', 'العصبي', 'The Underground Railroad', 'Unsouled', 'In Trump We Trust: E Pluribus Awesome!', 'Un Aquilone di Farfalle: Romanzo', "Botanical Shakespeare: An Illustrated Compendium of All the Flowers, Fruits, Herbs, Trees, Seeds, and Grasses Cited by the World's Greatest Playwright", 'The Upside of Unrequited', 'The Stranger in the Woods: The Extraordinary Story of the Last True Hermit', "Assassin's Fate", 'Geekerella', "The Kremlin's Candidate", 'The Choice: Embrace the Possible', 'The Arbitrator', 'تذكرة وحيدة للقاهرة', 'A Reaper at the Gates', 'My Not So Perfect Life', 'Vicious', 'Kings of the Wyld', 'An Enchantment of Ravens', 'The Cheerleaders', 'His Unconquerable Enemy and Other Horror Stories by W.C. Morrow', 'Flaxman Low, Occult Psychologist, Collected Stories', 'A Court of Frost and Starlight', 'Twisted Love', 'The Fourth Monkey', 'Homo Deus: A History of Tomorrow', 'Thrawn', 'The Librarian of Auschwitz', 'Real Friends', 'Behave: The Biology of Humans at Our Best and Worst', 'Leah on the Offbeat', 'The Witch Boy', 'Release', 'Quests for Glory', 'Caged', 'In Farleigh Field', 'Una corte de niebla y furia', 'Stuck in the Game', 'Girl Made of Stars', 'House of Spies', 'Memories Of My Future', 'The Radium Girls: The Dark Story of America’s Shining Women', 'Make Your Bed: Little Things That Can Change Your Life...And Maybe the World', 'Eleanor Oliphant Is Completely Fine', 'Tower of Dawn', 'A \u200bSky Beyond the Storm', 'El laberinto de los espíritus', 'The Stone Sky', 'Angles - Part I', 'Patria', 'Love Warrior', '8 Days For Salvation', 'Leap of Faith', 'Eliza and Her Monsters', 'In Other Lands', 'The Alice Network', 'Our Dark Duet', 'The Hate U Give', 'The Rise and Fall of D.O.D.O.', 'The Fact of a Body: A Murder and a Memoir', 'We Are Legion (We Are Bob)', 'The Silent Corner', 'Before We Were Yours', 'Conversations with Friends', 'Astrophysics for People in a Hurry', 'Grunt: The Curious Science of Humans at War', 'The King in Yellow', 'The Gravity of Us', 'The Empty Grave', 'Sometimes I Lie', "I'm With You", 'Beneath a Scarlet Sky', 'Dogger', 'Esper Files', 'Ash Princess', 'One of Us Is Lying', 'The Girl Who Takes an Eye for an Eye', 'The Seven Husbands of Evelyn Hugo', 'ثلة من أسماء الإجرام', 'The Gray House', 'The City of Brass', "The Zookeeper's Wife", 'Crash and Burn', 'The Magic Strings of Frankie Presto', 'All Systems Red', 'Carry On', 'Final Girls', 'Record of a Spaceborn Few', 'Restart', "Archer's Voice", 'Wind from the Abyss', 'Lost Boy: The True Story of Captain Hook', 'Dark Guardian', 'Midnight Exposure', 'The Pisces', 'A Merciful Truth', "The Marsh King's Daughter", 'Sing, Unburied, Sing', 'Worlds Collide', 'The Chemist', 'Secret Slave: Kidnapped and abused for 13 years. This is my story of survival.', 'The Light We Lost', 'Operation Hail Storm', 'The Last Valentine', '101 Essays That Will Change The Way You Think', 'I Miss The World', 'Good Night Stories for Rebel Girls: 100 Tales of Extraordinary Women', 'The Calculating Stars', 'My Lesbian Experience With Loneliness', 'Refugee', 'Ramonst', 'Stillhouse Lake', 'The Risk', "Say You're Sorry", 'Into the Water', 'Moxie', 'Darkness of Dragons', 'The Good Daughter', 'The Illustrated Vivian Stanshall: A Fairytale of Grimm Art', "The Heart's Invisible Furies", 'Iron Gold', 'Sidetracked', 'Mummies!: Classic Monsters of Pre-Code Horror Comics', 'Without Merit', 'Wait for It', 'Let it Snow', 'God Bless You, Mr. Rosewater', 'The Poet X', 'Amok Koşucusu', '魔道祖师 [Mó Dào Zǔ Shī]', 'All the Lies', 'Paint It All Red', 'Her Body and Other Parties: Stories', 'Sweet Bean Paste', 'The Midnight Line', 'They Both Die at the End', 'The Child Finder', 'For We Are Many', "Assassin's Quest", 'Beartown', 'The Deepest Well: Healing the Long-Term Effects of Childhood Adversity', 'Is Goat Beef?', 'Big Little Lies', 'The Aureate Spectacles', 'Public Information', 'Tiger and the Robot', 'A Column of Fire', 'A Wrinkle in Time', 'Dear Ijeawele, or A Feminist Manifesto in Fifteen Suggestions', 'An American Marriage', 'Kingdom of Ash', 'When the Moon Comes', 'The Snow Child', "Why I'm No Longer Talking to White People About Race", 'Get Rich or Get Lucky', 'Daughter of the Pirate King', "Paperbacks from Hell: The Twisted History of '70s and '80s Horror Fiction", 'Una vita come tante', 'Hunting Prince Dracula', 'Close to Home', 'El día que dejó de nevar en Alaska', 'The War I Finally Won', 'Within the Shadows', 'First Year', 'We Were Eight Years in Power: An American Tragedy', 'On Tyranny: Twenty Lessons from the Twentieth Century', 'Firestarters: How Innovators, Instigators, and Initiators Can Inspire You to Ignite Your Own Life', 'President Donald Trump Inaugural Speech', 'I Have Never', 'A Stranger in the House', 'Oathbringer', 'Undercover Princess', 'The Last Mrs. Parrish', 'The Girl in the Tower', 'Pachinko', 'A Gentleman in Moscow', 'The Language of Thorns: Midnight Tales and Dangerous Magic', 'أرض السافلين', 'The Late Show', 'What Happened', 'La Belle Sauvage', "Being a Witch, and Other Things I Didn't Ask for", 'The Wife Between Us', 'Vow of Thieves', "Trickster's Choice", "Trickster's Queen", 'Nevermoor: The Trials of Morrigan Crow', 'Little Fires Everywhere', 'The Hazel Wood', 'Year One', 'Diary of Skeleton Steve, the Noob Years, Season 1', 'A Woman Is No Man', 'Confess', 'I Was Born for This', 'The Touch: A Supernatural Story', 'Shifting Moon', 'An Unkindness of Ghosts', 'Worm Holes', 'The Night Masquerade', 'Girls of Paper and Fire', 'Twelve Weapons', 'Alternatives to a Frozen Mouse', 'Sleeping Beauties', 'Why We Sleep: Unlocking the Power of Sleep and Dreams', 'To Kill a Kingdom', 'The Prince and the Dressmaker', 'Mistress Suffragette', 'Principles: Life and Work', 'Reversione: Reset the Future', "Samantha's Revenge", 'Leonardo da Vinci', 'Edgedancer', 'Insurgent Mexico', 'Children of Blood and Bone', 'Resistance', 'Sadie', 'Dead End Girl', 'A Merciful Secret', "Factfulness: Ten Reasons We're Wrong About the World – and Why Things Are Better Than You Think", 'The Tea Dragon Society', 'The Great Alone', 'Lost Connections: Uncovering the Real Causes of Depression - and the Unexpected Solutions', 'The Ways of Autumn', 'Artemis', 'Huế 1968: A Turning Point of the American War in Vietnam', 'A Summer of Good-Byes', 'Never Get Angry Again: The Foolproof Way to Stay Calm and in Control in Any Conversation or Situation', 'Sick Fux', 'Restore Me', 'Defy Me', "Maya's Magical Adventures", 'Head On', 'Frankenstein: The 1818 Text', "I'll Be Gone in the Dark: One Woman's Obsessive Search for the Golden State Killer", 'Not That Bad: Dispatches from Rape Culture', "Monday's Not Coming", 'The Rise and Fall of the Dinosaurs: A New History of a Lost World', 'The Poppy War', 'Mythos: The Greek Myths Retold', 'The President Is Missing', 'So You Want to Talk About Race', 'Life After Darkness: Finding Healing and Happiness After the Cleveland Kidnappings', 'A Higher Loyalty: Truth, Lies, and Leadership', 'Educated', 'The Largesse of the Sea Maiden', 'I Am, I Am, I Am: Seventeen Brushes with Death', 'Project Terror', 'We Happy Few: Doing What Must Be Done', '"Surely You\'re Joking, Mr. Feynman!": Adventures of a Curious Character', 'Battle Angel Alita Deluxe Edition, Vol. 1', 'Last Night at the Telegraph Club', 'Always and Forever, Lara Jean', 'Behold the Dreamers', 'Why We Never Repeat Jokes?', 'Coming Storm', 'A Butler Christmas', 'The Terminal List', 'Unwifeable: A Memoir', 'The Wicked Deep', 'Then She Was Gone', 'The Chalk Man', 'Other Words for Home', 'Baby Teeth', 'Archenemies', 'Love on the Line', 'City of Vikings', 'Turtles All the Way Down', 'Mission: Subhero', 'This is Going to Hurt: Secret Diaries of a Junior Doctor', 'The Koalemos Initiative', 'Rogue Protocol', 'Girl Wash your Face', 'The Search for Mother Missing: A Peek Inside International Adoption', 'the sun and her flowers', 'City of Skies', 'The Undoing Project: A Friendship That Changed Our Minds', 'For the Love of Armin', 'All of the Rogers', 'Polaris Rising', 'Snap', 'The Shadows Between Us', 'Raincheck', "Beautiful Boy: A Father's Journey Through His Son's Addiction", "Devil's Bait", 'Grim Fairy Tales', 'Dance of Thieves', 'Handbook for Mortals', 'The Taking of Peggy Martin', 'The Fates Divide', 'Only Human', "Dead Men's Trousers", 'Beautiful Machines: Tales Of The Uncanny', 'Betrayal of Faith', 'Christy', 'The Perfect Mother', 'Pieces of Her', 'On the Come Up', "Thinking in Bets: Making Smarter Decisions When You Don't Have All the Facts", 'Circe', 'Her Rule Would Always Last', 'The Poison Jungle', 'The Different Kinds Of Monsters: A Psychological and Supernatural Horror Novel', 'Red Russia', 'Milkman', 'Betrayal of Justice', 'Vietnam: An Epic Tragedy, 1945-1975', 'Neanderthal Opens the Door to the Universe', "America's Daughter", 'Saving Noah', 'Listen to Your Heart', 'Front Desk', 'A Collector’s Passion: Ezzat-Malek Soudavar and Persian Lacquer', "The Painter's Apprentice", 'The Kiss Quotient', 'Be More Pirate: Or How to Take On the World and Win', 'A Crystal of Time', 'How Women Rise: Break the 12 Habits Holding You Back from Your Next Raise, Promotion, or Job', 'Love and Other Words', 'Th1rt3en', 'Gray Hawk of Terrapin', 'Aru Shah and the End of Time', 'Artificial Condition', 'The Invisible Game: Mindset of a Winning Team', 'Survivor', 'Wundersmith: The Calling of Morrigan Crow', 'Fuel the Fire', 'King of Scars', 'Rule of Wolves', 'Aru Shah and the Tree of Wishes', 'Legendary', 'Call Me By Your Name', 'The 7 1/2 Deaths of Evelyn Hardcastle', "What If It's Us", 'Liars, Leakers, and Liberals: The Case Against the Anti-Trump Conspiracy', 'Adjustment Day', 'The Treatment', 'Us Against You', 'The Death of Mrs. Westaway', 'The Simple Wild', 'Powerful: Building a Culture of Freedom and Responsibility', 'Animant Crumbs Staubchronik', 'The Skeleton’s Holiday', 'Entrance', 'The Flatshare', 'We Hunt the Flame', 'Not Nice: Stop People Pleasing, Staying Silent, & Feeling Guilty... And Start Speaking Up, Saying No, Asking Boldly, And Unapologetically Being Yourself', "Boy's Life", 'BOAT SHOES – SOLILOQUY OF A USELESS EATER: Book Two', 'Willa of the Wood', 'Four Psychos', 'Blood Fund: A Novel', 'The 100-Year-Old Man Who Climbed Out the Window and Disappeared', 'Fire and Fury: Inside the Trump White House', 'Deadly Pretty Strangers: One dead body, one bereaved mother, one small favour ...', 'How to Change Your Mind: What the New Science of Psychedelics Teaches Us About Consciousness, Dying, Addiction, Depression, and Transcendence', 'The Winter of the Witch', 'The Last Time I Lied', 'Skyward', 'The Truth-Seeker’s Handbook: A Science-Based Guide', 'شجرتي شجرة البرتقال الرائعة', 'The Dragon Queen', 'Shadow of the Fox', 'Societatea deschisă și dușmanii ei', 'Daughter of the Siren Queen', 'Stinger', 'There There', 'Christmas in Smithville', 'Beholden', "Stop Mass Hysteria: America's Insanity from the Salem Witch Trials to the Trump Witch Hunt", 'Where the Crawdads Sing', 'Flights', 'Spinning Silver', 'Crossroads and the Dominion of Four', 'The Memory Police', 'Loki: Where Mischief Lies', 'I Am Waltz', 'Foundryside', 'Without', 'Capturing the Devil', 'The Spy and the Traitor: The Greatest Espionage Story of the Cold War', 'The Power of Dao: A Timeless Guide to Happiness and Harmony', 'Boy Swallows Universe', 'In The Night Wood', 'Maybe You Should Talk to Someone', 'The Covert Passive Aggressive Narcissist: Recognizing the Traits and Finding Healing After Hidden Emotional and Psychological Abuse', 'From Lukov with Love', 'Coeur pourri de laine', 'Das geheimnis der blumen', 'Gris Ange 2014', "Karna's Wheel", 'The Second Korean War', "The Lady's Guide to Petticoats and Piracy", 'All the Young Dudes', 'Norse Mythology', 'Orope - The White Snake', 'La Disparition de Stephanie Mailer', 'سيدة الزمالك', 'The Silence of the Girls', 'Bad Blood: Secrets and Lies in a Silicon Valley Startup', 'Cancer: It can be a lonely journey', 'Dream Dancer', 'Sawkill Girls', 'Hometown Girl Forever', 'From Here to Eternity: Traveling the World to Find the Good Death', 'Every Breath', 'Two Can Keep a Secret', 'Hometown Girl at Heart', 'Hometown Girl After All', 'One Day in December', 'The Perfect Nanny', 'Chasing the Red Queen', 'Elevation', 'Convenience Store Woman', 'The Tattooist of Auschwitz', 'Howards End', 'Notice Me', "The Clockmaker's Daughter", 'Imitatore', 'A Very Large Expanse of Sea', 'Ana Rocha: Shadows of Justice', 'With the Fire on High', 'Becoming', 'My Sister, the Serial Killer', '21 Lessons for the 21st Century', 'My Summer in St. Ives', 'In My Hands: Compelling Stories from a Surgeon and His Patients Fighting Cancer', 'All Your Perfects', 'A Spark of Light', 'The Sweetest Oblivion', 'Dear Evan Hansen', 'Lost Horizon', 'Surrounded by Idiots', 'Cut and Run', 'Becoming Mrs. Lewis', 'Nine Perfect Strangers', 'The Remarkable Journey of Coyote Sunrise', 'Measure What Matters', 'Go the F**k to Sleep', 'Harrow the Ninth', 'Fantastic Beasts: The Crimes of Grindelwald: The Original Screenplay', "Monk's Hood", 'The Bride Test', 'The Rise of Darth Vader', 'The Library Book', 'Birthday Girl', 'House of Salt and Sorrows', "BEHIND CLOSED DOORS: A Daughter's Story", 'My Lovely Wife', 'Vardaesia', 'على حين وطن - قصص قصيرة جدا', 'ان تمشي على يديك', 'Frankly in Love', 'I Want to Eat Your Pancreas', 'The Night Tiger', 'The Lost Man', 'The Gilded Wolves', 'An Anonymous Girl', 'Hunt Them Down', 'The Vanishing Stair', 'Missing Wings', 'Less', 'Five Feet Apart', 'Fire & Blood', 'The Binding', 'The Hive Queen', 'The Kingdom of Copper', 'Blood for Blood', 'The Gilded Ones', 'Serpent & Dove', 'Tales of the Astonishing Black Spark', 'The Octunnumi Fosbit Files Prologue', 'The Sign of the Beaver', 'The Silent Patient', 'Dark Days', 'Broken Promises', 'Atomic Habits: An Easy & Proven Way to Build Good Habits & Break Bad Ones', 'House of Sky and Breath', 'Love From A to Z', 'Say Nothing: A True Story of Murder and Memory in Northern Ireland', 'Lights on the Sea', 'The Overstory', 'The Heart of Aleppo: A Story of the Syrian Civil War', 'The Eighth Sister', 'Stellarlune', 'Lost in the Crowd', 'Avaland', 'The Priory of the Orange Tree', 'The Unicorn Tree', 'Brave, Not Perfect: Fear Less, Fail More, and Live Bolder', 'Four Dead Queens', 'The Woman in the Window', 'What the Wind Knows', 'This Is How It Always Is', 'Post Office', 'Talking as Fast as I Can: From Gilmore Girls to Gilmore Girls', "Maus I: Un Survivant Raconte: Mon Père Saigne L'histoire", 'The Killer Collective', 'Heartstopper: Volume One', 'Dakota Son', 'Where the Forest Meets the Stars', 'Finding Hope in the Darkness of Grief: Spiritual Insights Expressed Through Art, Poetry and Prose', 'A Woman of No Importance: The Untold Story of the American Spy Who Helped Win World War II', 'Daisy Jones & The Six', 'Safe Haven', 'Heir to the Empire', "I'm Thinking of Ending Things", 'Career of Evil', 'The Lincoln Lawyer', 'The Maddest Obsession', 'Second Son', 'This Savage Song', 'Cheaper by the Dozen', 'Before the Fall', 'Digital Minimalism: Choosing a Focused Life in a Noisy World', 'Lady Smoke', 'Bonfire', 'Genghis Khan and the Making of the Modern World', 'Love Wins: A Book About Heaven, Hell, and the Fate of Every Person Who Ever Lived', 'Animal, Vegetable, Miracle: A Year of Food Life', 'Girl in the Blue Coat', 'Stalking Jack the Ripper', '365 dni', 'How to Make Friends with the Dark', 'The Moment of Lift: How Empowering Women Changes the World', 'Midnight Sacrifice', 'The Guns of August', 'From Maid to Duchess', 'Mere Christianity', 'Hometown Girl Again', 'The Miseducation of Cameron Post', 'Shadow Me', 'A Psalm for the Wild-Built', 'Laura Dean Keeps Breaking Up with Me', 'Bone In The Throat', 'The Lost City of the Monkey God', 'Utopia for Realists: How We Can Build the Ideal World', 'The Book of Disquiet: The Complete Edition', 'Unparalleled', 'The Jewel', 'The Perfect Child', "Nicu II and Victoria's Incestuous Romance", 'Drums of Autumn', 'The Book Woman of Troublesome Creek', "A Good Girl's Guide to Murder", 'زندگی مه آلود پریا', 'Tribe: On Homecoming and Belonging', 'I Am Legend', 'گم شده ای در مه', 'سیمای شکسته پدر سالار', 'A Night Divided', 'Binding 13', 'The Secret of the Nagas', 'Treacherous Estate', 'The Travelling Cat Chronicles', 'The Worst Hard Time: The Untold Story of Those Who Survived the Great American Dust Bowl', 'Dhalgren', "A Winter's Promise", 'Tears of the Silenced', "Stop! Don't Read This, It's Impossible!", 'The Nowhere Man', 'Elliptical door (A multifaceted overview) (US)', 'Fear: Trump in the White House', 'Warcross', 'The Royal Ranger: A New Beginning', 'The Black Flamingo', "Fool's Assassin", 'Small Great Things', 'Punk 57', 'Colorless Tsukuru Tazaki and His Years of Pilgrimage', 'Normal People', 'Girl, Woman, Other', 'Our Dreams at Dusk: Shimanami Tasogare, Vol. 1', 'Invisible Women: Data Bias in a World Designed for Men', 'The Dragon Republic', 'A Christmas Date', 'Red, White & Royal Blue', 'The Emotion Code: How to Release Your Trapped Emotions for Abundant Health, Love, and Happiness', 'Exhalation', 'Creature', 'The Awakening: Fate in Motion', 'All Your Twisted Secrets', 'The Kiss Thief', 'Drum Beats, Heart Beats', 'I Wish You All the Best', 'Stepping Beyond Intention', 'The Subtle Knife', 'The Fall of the Phoenix', "Can't Hurt Me: Master Your Mind and Defy the Odds", 'Thin Air', 'False Step', 'Callasandra Fractured', 'Slow Burn', 'Her Royal Highness', 'Archibald Finch and the Lost Witches', 'Goose Island', 'El Hereje', 'El príncipe cruel', 'Lock Every Door', 'Still Me', "On Earth We're Briefly Gorgeous", 'The Psychology of Money', 'The Sword of Kaigen', "Crier's War", 'Verity', 'The Spitfire Girls', 'Gideon the Ninth', 'Recursion', "Tara's Book", 'The Turn of the Key', 'The School for Good and Evil', 'Loveless', 'Rebel', 'Sorcery of Thorns', 'The Unhoneymooners', 'The Stationery Shop', 'White Hot Kiss', 'One Small Sacrifice', 'A Newborn Business: Esports', 'The Nickel Boys', 'Lethal White', 'The Magic Fish', 'Evoke', 'The Scopas Factor', 'Samalio Pardulus', 'Wilder Girls', 'ما حذفه مقص الرقيب من رواية أرض السافلين و محتويات الموقع السفلي', 'By the Unholy Hand', 'Why They Marched: Untold Stories of the Women Who Fought for the Right to Vote', 'The Truth Behind the Lies: One Man’s Journey Through Wwiii', 'Ace of Spades', 'Stand By Me', 'The Speed of Life', '天官赐福 [Tiān Guān Cì Fú]', 'That Boy', 'That Wedding', 'Starsight', 'Supernova', 'The Sound of Suffering', "The Oracle's Journal", 'Down and Rising', 'Bunny', 'Spin the Dawn', 'Gender Queer', 'Harry Potter and the Sorcerer’s Stone', 'Brownout - 666: A journey through sex, love and violence in the ultimate search', 'Onder Duitse Knoet', 'Hairspray and Lighter', 'Shadows of Atlantis: Awakening', 'Keeping 13', 'The Testaments', 'Drive Your Plow Over the Bones of the Dead', 'Book One: Sporadic Memories', 'What We Think We Become', 'A Curse So Dark and Lonely', 'The Fountains of Silence', 'Dire Wolf of the Quapaw: a Jubal Smoak Mystery', 'Syrian Brides', 'The Grace Year', 'Ninth House', "Reaper's Creek", 'The Space Between Worlds', 'The Courage to Be Disliked: How to Free Yourself, Change your Life and Achieve Real Happiness', 'Heartstopper: Volume Two', 'The Most Popular President Who Ever Lived [So Far]', 'In the Dream House', 'Words on Fire', 'Temptation and Denial', 'This is How You Lose the Time War', 'Cold Waters', 'Heartstopper: Volume Three', 'Conjunction', 'Love is the Answer, God is the Cure: A True Story of Abuse, Betrayal and Unconditional Love', 'Reveal Me', 'The Ten Thousand Doors of January', 'Take My Heart', 'Eye for Eye', 'The Starless Sea', 'The Body: A Guide for Occupants', 'A Dead and Stormy Night', "The Mountain's Morning Song", 'Night of the Rat', 'The Lorax: Special How to Save the Planet edition', 'Scars and Voices: And Other Stories', '10 Minutes 38 Seconds in This Strange World', 'White Fragility: Why It’s So Hard for White People to Talk About Racism', 'The Boy, the Mole, the Fox and the Horse', 'The Eden Paradox', 'American Royals', 'The Institute', 'The Call to Serve', 'Omniscient Reader’s Viewpoint, Vol. 1', 'When She Returned', 'The Toll', 'Maybe He Just Likes You', 'The Family Upstairs', 'العالق في يوم أحد', 'Empire of Pain: The Secret History of the Sackler Dynasty', 'Get a Life, Chloe Brown', '10 Blind Dates', 'Hamnet', 'Cinderella Is Dead', 'Such a Fun Age', 'The Giver of Stars', 'The Water Dancer', 'The Words We Keep', 'Fable', 'A Tale of Magic...', 'Wayward Son', 'The Bromance Book Club', 'Imagine Me', 'Finding Chika: A Little Girl, an Earthquake, and the Making of a Family', 'Red Hands', 'Our Violent Ends', 'What You Did', 'Lovely War', 'The Deserter', 'Landfill Dogs book', 'The Pale-Faced Lie', 'The Transhumanism Handbook', 'My Year of Rest and Relaxation', 'Heaven Official’s Blessing [天官赐福]', "Divergent Mind: Thriving in a World That Wasn't Designed for You", 'The Dutch House', 'The First Step', 'Nine Elms', 'Before the Coffee Gets Cold', 'Interior Chinatown', 'Never Go With Your Gut: How Pioneering Leaders Make the Best Decisions and Avoid Business Disasters', "The MacKinnon's Bride", 'Dune Messiah', 'Whispers In The Tall Grass', 'The Ride of a Lifetime: Lessons Learned from 15 Years as CEO of the Walt Disney Company', 'Dragonslayer', 'Pleasant Day', 'Regretting You', 'One of Us Is Next', 'Dune', 'House of Earth and Blood', 'Matching Configurations', 'The Mindf*ck Series', 'All the Ways We Said Goodbye', 'My Dark Vanessa', "The Devil's Deceptions: Where we go After we Die", '100 Fun Bible Facts: The Exciting way to Learn', 'Dancing with The Field: Bringing Joy, Passion and Play into Everyday Life', 'Tweet Cute', 'American Dirt', 'Oona Out of Order', 'The House in the Cerulean Sea', 'The Outcasts - A Thousand Dreams of Redemption', 'The Hand on the Wall', 'If You Tell: A True Story of Murder, Family Secrets, and the Unbreakable Bond of Sisterhood', 'The Maidens', 'One True King', '100 Days of Sunlight', 'All of Me', 'Marriage for One', 'The Reddening', "Jubal's Field Trip To Heaven: Jubal and Chanan Enter Through the Narrow Gate", 'The Burning God', 'The Sun Down Motel', 'The Upside of Falling', 'Crave', 'The Thursday Murder Club', 'If It Bleeds', "I Don't Want To Be Friends", 'Kim Jiyoung, Born 1982', 'Everything I Know About Love', 'Stay with Me', 'Permanent Record', 'We Free the Stars', 'The Lady of the Tower', 'Body In The Woods', 'ذاكرة معدن', "The Curse of Cardoness: Maya's Magical Adventures continue", 'Betty', 'Think Fast or Die', 'Starship Sakira', 'The Tower of Nero', 'She Who Became the Sun', 'To Sleep in a Sea of Stars', 'Un cuento perfecto', 'The Well House III: The Redemption', 'The Cruel Prince / The Wicked King / The Queen of Nothing', 'Rhythm of War', 'The Beagle and the Hare', 'Clown in a Cornfield', 'An Experiment in Criticism', 'Credence', 'Addressed To Her: A Short Story', 'The Dangerous Gift', 'Tender is the Flesh', 'Infinite', 'Nosotros en la Luna', 'Anxious People', 'Rise of the Ranger', 'These Violent Delights', 'The Evening and the Morning', 'The Summer of Broken Rules', "Le Chant d'Achille", 'Honey Girl', 'Flash Point', 'Counting Down with You', "The Girls I've Been", 'The Once and Future Witches', 'Mistress of Rome', "Lady Chatterley's Lover", 'Above the Bay of Angels', 'A Gracious Enemy', 'The Mountains Sing', 'Antes de diciembre', 'The Cousins', 'Pro Truth: A Practical Plan for Putting Truth Back Into Politics', "More Than Love, A Husband's Tale", 'Daughter of No Worlds', 'The Wrong Family', 'The Boy in the Cellar', "Through God's Eye", 'Take a Hint, Dani Brown', 'Swimming in the Dark', 'Kim Ji-young, nacida en 1982', 'Defy the Night', 'You Deserve Each Other', 'The Importance of Being Wild', 'In Five Years', 'Know My Name', 'Piranesi', 'The Girl with the Louding Voice', 'How to Kill Your Family', 'Boyfriend Material', 'Pelosi', 'Earthlings', 'We Begin at the End', "Murder in the Coven: Maya's Magical Adventures continue", 'In My Dreams I Hold a Knife', 'Speaking for Myself: Faith, Freedom, and the Fight of Our Lives Inside the Trump White House', 'The Atlas Six', 'The Jasmine Throne', 'The Hawthorne Legacy', 'A Deadly Education', 'Black Leopard, Red Wolf', 'The Invisible Life of Addie LaRue', 'Breasts and Eggs', 'Ghostland: In Search of a Haunted Country', 'Annabel Horton And The Black Witch of Pau', 'Home Before Dark', "Layman's Handbook, A journey to SELF", 'The Gilded Cage', 'The Blood Traitor', 'All This Time', 'They Never Learn', 'The Hollow Places', 'Legendborn', 'Black Sun', 'From Brexit to Brazil', '100 Bible Facts About Jesus: The Exciting way to Learn', 'Heart Bones', 'False Flag', "Winter's Mourn", 'The Do-Over', 'The Blindspots Between Us: How to Overcome Unconscious Cognitive Bias and Build Better Relationships', 'Written in the Stars', 'Girl, Serpent, Thorn', 'The Holdout', 'Murder Board', 'Good Girl, Bad Blood', 'City Spies', 'Love Auction: Too Risky to Love Again', 'The Orchard', "Adhaata Asao's Liege", 'Unlocked', 'Bound by Honor', 'Heartstopper: Volume Four', 'The Threat Below', 'The Vanishing Half', 'Act Your Age, Eve Brown', 'Rage and Ruin', 'The Devil and the Dark Water', 'When Heroes Flew', 'The Ballad of Songbirds and Snakes', 'City of Girls', 'Felix Ever After', 'The Guest List', "Sheever's Journal, Diary of a Poison Master", 'Los siete maridos de Evelyn Hugo', 'Layla', 'Tooth for Tooth', 'Manacled', 'Ace: What Asexuality Reveals About Desire, Society, and the Meaning of Sex', 'One Lost Soul', 'The Empire of Gold', 'The Only Good Indians', 'Any Way the Wind Blows', 'Almond', 'Stamped: Racism, Antiracism, and You', 'Eight Perfect Murders', 'The Takeover', 'The Dead Writer', 'Cemetery Boys', 'Mirage', 'Firekeeper’s Daughter', 'The Inheritance Games', 'The Grim Reaper', 'Devolution: A Firsthand Account of the Rainier Sasquatch Massacre', 'Iron Widow', 'La última nota', 'The Paper Girl of Paris', 'The Push', 'Clap When You Land', 'She Drives Me Crazy', 'The Midnight Library', 'Trouble on Main Street', 'On the Other Hand: The Little Anthology of Big Questions', 'Ground Zero', 'Steel Dogs', 'Frankie the Ferret', 'The Hive', 'The Book of Lost Names', 'Today Tonight Tomorrow', 'Kingdom of the Cursed', 'The Steps: 12 Secrets To Raising Happy and Successful Kids', 'As Good As Dead', 'Concrete Rose', 'From Blood and Ash', 'Greenlights', 'A Woman to Blame', 'Beach Read', 'Humankind: A Hopeful History', 'Blonde Roots', 'Big Money: A Global Financial Thriller', 'Throttled', 'The Falling in Love Montage', "You've Reached Sam", "Rowley Jefferson's Awesome Friendly Adventure", 'The Wife Upstairs', 'The Things We Leave Unfinished', 'The Four Winds', 'A \u200bCourt of Silver Flames', 'بيت القبطية', 'Mexican Gothic', 'Skyhunter', 'Instant Karma', 'Live Digital or Be Irrelevant: My Firsthand Narrative of Transformation to Becoming a Digital Citizen Ready for a Dynamic Future', 'Fugitive Telemetry', 'Under the Whispering Door', 'What Happened To You? Conversations on Trauma, Resilience, and Healing', 'The Happiest Man on Earth', 'Amari and the Night Brothers', 'Después de diciembre', 'Adapt and Plan for the New Abnormal of the COVID-19 Coronavirus Pandemic: Adapt and Plan for the New Abnormal of the COVID-19 Coronavirus Pandemic', 'Midnight Sun', 'The Lost Apothecary', 'Dial A for Aunties', 'Heartstopper: Volume Five', 'The Place That Gave', 'Lore', 'Open Water', 'Money Game: A Wealth Manifestation Guide. Level Up Your Mindset Step-By-Step & Create An Abundant Life', 'How the King of Elfhame Learned to Hate Stories', 'Mallard the Quack', 'The Past', 'The Perfect Marriage', 'Lycanthropy and Other Chronic Illnesses', 'Six Crimson Cranes', 'Extreme', 'The Asset', 'Den of Vipers', 'Shattered Kingdom', 'The Mountain Is You: Transforming Self-Sabotage Into Self-Mastery', 'A Gallery of Mothers', 'A Time for Swords', 'The Rose Code', 'A Life on Our Planet: My Witness Statement and a Vision for the Future', 'Win', 'If Shadows Could Tell: an Aurora Steller mystery novel', 'The Bridge Kingdom', 'The Prison Healer', 'Klara and the Sun', 'Death Leaves a Shadow', 'The Spanish Love Deception', 'Alone With You in the Ether', 'Warping Minds & Other Misdemeanors', 'They Came From The North', 'A Kingdom of Flesh and Fire', 'The Last Lumenian', 'Dueling Fates', 'Murder At The Fort: A Double Homicide Cold Case And Cover Up!', "Don't Close Your Eyes", 'Betrayal High', 'Melania and Me: The Rise and Fall of My Friendship with the First Lady', 'Grimm Up North', 'Project Hail Mary', 'The Ancestor', "The Pragmatist's Guide to Relationships: Ruthlessly Optimized Strategies for Dating, Sex, and Marriage", 'House of Hollow', 'XOXO', 'The Last House on Needless Street', 'We Should All Be Millionaires: A Woman’s Guide to Earning More, Building Wealth, and Gaining Economic Power', 'Lonely Castle in the Mirror', 'Tres meses', 'Neon Gods', 'Local Woman Missing', 'Not Okay', 'Мина Мазайло. Вибрані твори', 'Lost in Yaba: Down and Out in Laos', 'Four Thousand Weeks: Time Management for Mortals', 'Later', 'In Plain Sight: A True Story of Kidnapping and Rape', 'Crying in H Mart', 'Median Gray', 'Madam Speaker: Nancy Pelosi and the Lessons of Power', "Leaving Isn't the Hardest Thing", 'The Black Order', 'One Last Stop', 'Once There Were Wolves', 'Razorblade Tears', "Somebody's Daughter", 'The Almanack of Naval Ravikant: A Guide to Wealth and Happiness', 'White Knuckle', 'The Last Thing He Told Me', 'People We Meet on Vacation', 'Slow Brewing Tea', 'A Fairy Awesome Story', 'In the Pines', 'The Venice Sketchbook', 'The Worm and His Kings', 'The Anthropocene Reviewed', 'Complicated Moonlight', 'The Maid', 'The Darkness Outside Us', 'Operation Pedestal: The Fleet That Battled to Malta, 1942', 'A Touch of Darkness', 'The \u200bCrown of Gilded Bones', 'After Dunkirk', 'Pattaya Youtuber: And other true stories from Thailand', 'Keeping Secrets', 'CEO-Stories: Children Employed by Owners', 'Skeleton Creek', 'A Promised Land', 'Malibu Rising', "Here's to Us", 'Pack Up the Moon', 'Addicted to You', 'Ricochet', 'Addicted for Now', 'Addicted After All', 'A Castle of Doomsday', 'Arctic Storm Rising', 'The Daughter Of Kurdland: A Life Dedicated to Humankind', 'In Our Bones', 'Instructions for Dancing', 'Karolina Dalca, Dark Eyes', 'The Other Emily', "The Assassin's Betrayal", 'The Emperor', 'Survive the Night', 'It Happened One Summer', 'First Light', 'The Golden Scallop', 'Better than the Movies', 'My Heart Is a Chainsaw', 'The Mustachioed Woman of Shanghai', "Dragons Don't Dance Ballet", 'The Seventh Spark: Volume One – Knights of the Trinity', 'The Final Girl Support Group', 'Кафе "Європа". Життя після комунізму', 'Still Crazy', 'The Odd and the Strange: A Collection of Very Short Fiction', 'The Sunbearer Trials', 'Hard Land', 'Facing the Mountain: A True Story of Japanese American Heroes in World War II', 'Thirteen for Dinner', 'The Last Dying Light', 'Problems at the Pub', 'Mad Love', 'Once Upon a Broken Heart', 'Come with Me', 'Glorious Christmas', 'Holly Jolly: Campfire Stories', 'Appellate Judge', 'The Fairy Next Book', 'Життя деінде', 'The Second Mrs. Astor', 'Mischief and the Guardian Cats', 'Slewfoot: A Tale of Bewitchery', 'Read People Like a Book: How to Analyze, Understand, and Predict People’s Emotions, Thoughts, Intentions, and Behaviors', 'The Archon of Peace', 'The Darkest Temptation', 'Muhammad, the World-Changer: An Intimate Portrait', 'Rock Paper Scissors', 'Making Hearts', 'Not a Happy Family', 'Journey to the West: A Long March from Eastern Dream to Western Reality', 'West With Giraffes', 'Förvildade', 'Back To You', 'Gild', 'صالة أورفانيللي', 'The Ex Hex', 'The Cheat Code', "How the World Really Works: A Scientist's Guide to Our Past, Present and Future", 'When the children come', 'Beautiful World, Where Are You', "You'd Be Home Now", 'The Fairiest Fairy of Them All', 'Twisted Games', 'A Dowry of Blood', 'The Bomber Mafia: A Dream, a Temptation, and the Longest Night of the Second World War', 'Twisted Hate', 'The Love Hypothesis', 'Hunt the Stars', 'Cloud Cuckoo Land', 'Just a Typo: The Cancellation of Celebrity Mo Riverlake', 'The Woman in the Library', 'The Singing Trees', 'The Last Cuentista', 'Billy Summers', 'The Chancellor: The Remarkable Odyssey of Angela Merkel', 'Effacement', 'The Anomaly', 'All The Young Dudes - Volume One: Years 1 - 4', 'All the Young Dudes - Volume Two: Years 5 - 7', 'All The Young Dudes - Volume Three: ‘Til the End', 'The Sleeper', 'A Magic Steeped in Poison', 'The Girl Who Fell Beneath the Sea', 'Aristotle and Dante Dive into the Waters of the World', 'Vintage Collection of Animal Skeleton Illustrations', 'Her Name Is Knight', 'A Time for Change: How White Supremacy Ideology Harms All Americans', 'Black Eagle', 'Conquer Your Deliverance: How to Live a Life of Total Freedom', 'Daughter of the Deep', 'Foul Lady Fortune', 'Surviving Chaos: How I Found Peace at A Beach Bar', 'The Skeleton On Round Island: From "Mackinac And Lake Stories", 1899', 'Under the Bus', 'Westwind Secrets', 'Stop Overthinking: 23 Techniques to Relieve Stress, Stop Negative Spirals, Declutter Your Mind, and Focus on the Present', 'Lore Olympus, Vol. 1', 'A Shadow in the Ember', 'Supreme Betrayal', 'Fairy, Fairy, Quite Contrary', 'Tell Me I’m Worthless', 'Things I Wanted to Say, But Never Did', 'As Long as the Lemon Trees Grow', "Zoroastrians' Fight for Survival", 'Females of Valor', 'What She Found', 'A Decade of Desire: Erotic Memoirs from The Office Diaries', 'All Rhodes Lead Here', 'Home: Habitat, Range, Niche, Territory', 'Arminius and Thusnelda Versus Rome', 'Twenty Years Later', 'The Storyteller: Tales of Life and Music', 'The Fine Print', 'Roots of To-Be Templars', 'Drawpoint', 'A Flicker in the Dark', 'Cleopatra and Frankenstein', "The Body Code: Unlocking Your Body's Ability to Heal Itself", 'The Missionary', 'Drink Deep from the Well of Good Intentions', 'Never', 'Notes on an Execution', 'Daughter of the Moon Goddess', 'The Locked Door', 'Atlas Loved', 'The War of Two Queens', 'The Brothers Silver', 'Jesus Listens: Daily Devotional Prayers of Peace, Joy, and Hope', 'How High We Go in the Dark', 'Inspired by The Holy Ghost', 'Hell Followed With Us', 'Deep Sleep', 'Becoming the One: Heal Your Past, Transform Your Relationship Patterns, and Come Home to Yourself', 'Babel', 'The Saints of Swallow Hill', 'Every Summer After', 'Open Season', 'Heartstopper: Volume 1-4', 'Gallant', 'Lessons in Chemistry', 'Kill Switch', 'The Cheat Sheet', 'Leading Hybrid and Remote Teams: A Manual on Benchmarking to Best Practices for Competitive Advantage', 'She Thinks Like a Boss : Leadership: 9 Essential Skills for New Female Leaders in Business and the Workplace. How to Influence Teams Effectively and Combat Imposter Syndrome', 'Corrupt', 'Feeling Lucky', 'Feel Me', 'La Nuit où les étoiles se sont éteintes', 'Quantum Energetics and Spirituality Volume 1: Aligning with Universal Consciousness', 'Hook, Line, and Sinker', 'The Watchers', 'All That’s Left in the World', 'Reminders of Him', 'Terms and Conditions', 'Chance', 'The Best of Mystery: 63 Short Stories Chosen by the Master of Suspense', 'The Book of Cold Cases', 'Intermezzo', 'La casa sul mare celeste', 'The Will of the Many', "I Guess I Haven't Learned That Yet: Discovering New Ways of Living When the Old Ways Stop Working", 'The Son', 'She Gets the Girl', 'Just Once', 'Sea of Tranquility', 'The Power of Regret: How Looking Backward Moves Us Forward', 'The Paris Apartment', 'Kingdom of the Feared', 'Dear Barack: The Extraordinary Partnership of Barack Obama and Angela Merkel', 'The Diamond Eye', 'The Undertaking of Hart and Mercy', 'Believe Me', 'Why They Stay: Sex Scandals, Deals, and Hidden Agendas of Eight Political Wives', 'Hooked', 'Stalker Stalked', 'The Addiction Manifesto', 'Woman of Light', 'The Final Gambit', 'Finding Me', 'Book Lovers', 'The High Auction', 'Grandmaster of Demonic Cultivation: Mo Dao Zu Shi (Novel) Vol. 1', "The Scum Villain's Self-Saving System: Ren Zha Fanpai Zijiu Xitong, Vol. 1", "Heaven Official's Blessing: Tian Guan Ci Fu (Novel) Vol. 1", "The Scum Villain's Self-Saving System: Ren Zha Fanpai Zijiu Xitong, Vol. 2", "Heaven Official's Blessing: Tian Guan Ci Fu (Novel) Vol. 2", 'The Bodyguard', 'Hidden Pictures', 'Twin Crowns', 'Find Your People: Building Deep Community in a Lonely World', 'The Tales of Peter the Pixie Vol 1: New Friends', 'I Kissed Shara Wheeler', 'Haunting Adeline', 'Tomorrow, and Tomorrow, and Tomorrow', "Heaven Official's Blessing: Tian Guan Ci Fu (Novel) Vol. 3", "The Lesbiana's Guide to Catholic School", 'Cunning Folk', 'Champagne Widows: First Woman of Champagne, Veuve Clicquot', 'The Lighthouse Effect: How Ordinary People Can Have an Extraordinary Impact in the World', 'SOME ANIMALS', 'Listen To Me', 'A Man with A White Shadow', 'The Girl In The Toile Wallpaper', 'A Story of Yesterday', 'Say You Swear', 'Forty-Ninth', 'Fierce Love: Creating a Love that Lasts—One Conversation at a Time', 'Last Seen in Lapaz', 'Eyes of the Void', 'The Big Dark Sky', 'The Mosquito Bowl: A Game of Life and Death in World War II', 'The Coven of Deeds', 'Odin', 'My Money My Way: Taking Back Control of Your Financial Life', "The Bible: Enter Here: Bringing God's Word to Life for Today's Teens", 'Searching for Ganesha: Collecting Images of the Sweet-Loving, Elephant-Headed Hindu Deity Everybody Admires', 'Hunting Adeline', 'This Time Tomorrow', 'The Last Sentinel', 'What WE Lost: Inside The Attack on Canada’s Largest Children’s Charity', 'The Shadow Sect', 'Belladonna', 'The Ascension of Mary', 'Girl Missing', 'Lost Identity', 'The Pallbearers Club', 'The Ballad of Never After', 'Drowning', 'A Team of One: An Unsanctioned Asset Thriller', 'Yellowface', "I'm Glad My Mom Died", 'Bloodmarked', 'Better Than the Movies', 'My Dirty California', 'How to Sell a Haunted House', 'Magenta', 'NIGHT TERROR: A Genetics Investigation Team Thriller', 'Love on the Brain', 'Building a Second Brain: A Proven Method to Organize Your Digital Life and Unlock Your Creative Potential', "A Lady's Guide to Fortune-Hunting", 'Son of Mercia', 'The Sacred Well Murders', 'The First to Die at the End', '5 Stars', 'Beyond the Moonlit Sea', 'Penis Politics: A Memoir of Women, Men and Power', "Heaven Official's Blessing: Tian Guan Ci Fu (Novel) Vol. 4", 'Soul Cure: How to Heal Your Pain and Discover Your Purpose', 'Sustainable & Responsible Investing 360°: Lessons Learned from World Class Investors', 'Desperation in Death', 'Wolf Hustle: A Black Woman on Wall Street', 'My Graphic Bipolar Fantasies: & Other Short Stories', 'Dark State', 'Upgrade', 'The Secret of the Blood Charm', "Prisoners of the Castle: An Epic Story of Survival and Escape from Colditz, the Nazis' Fortress Prison", 'Smart Brevity: The Power of Saying More with Less', 'The Whalebone Theatre', 'Wrong Place Wrong Time', 'I Remember You', 'Lady Justice: Women, the Law, and the Battle to Save America', 'Accidental Mystic', 'Does It Hurt?', 'Station Eternity', "Heaven Official's Blessing: Tian Guan Ci Fu (Novel) Vol. 5", "Heaven Official's Blessing: Tian Guan Ci Fu (Novel) Vol. 6", "Heaven Official's Blessing: Tian Guan Ci Fu (Novel) Vol. 7", 'No Plan B', 'The Romantic', 'Things We Never Got Over', 'If You Could See the Sun', 'Love Connection: Romance in the Land of the Rising Sun', 'The American Roommate Experiment', 'Below', 'All Good People Here', 'The Ancient Code: A SciFi Adventure', 'Anshuman krit Saral Vastu Gyan', 'Fairy Tale', 'Demon Copperhead', 'Betting on You', 'The Oldest Dance', 'Twisted Lies', 'Refined', 'The Southern Lawyer', 'Oath of Loyalty', 'The Chain Between Worlds', "The Monarch's Ring", 'Love on the Line 2', 'A Million Kisses in Your Lifetime', 'Lady, in Waiting', 'Lightlark', 'The Marriage Portrait', 'Shrines of Gaiety', 'It Starts with Us', 'Dinners with Ruth: A Memoir on the Power of Friendships', 'Carrie Soto Is Back', 'Skeleton Halloween sketchbook: Gift for girls, women, adults, teens,kids, teachers (8.5×11) size 110 pages', 'Life Between Seconds', 'Tress of the Emerald Sea', 'Yumi and the Nightmare Painter', 'Everything the Darkness Eats', 'The Housemaid', 'LOOP', 'The Memory Keeper of Kyiv', 'The Husky and His White Cat Shizun: Erha He Ta De Bai Mao Shizun (Novel) Vol. 1', "The Maid's Diary", 'Power And Prediction: The Disruptive Economics of Artificial Intelligence', "Jack's Day", 'A Gracious Enemy & After the War Volume One', 'The Virgins of Venice', 'Love Auction II: Love Designs', 'Segment of One', 'The Friendly Mouse', 'Check & Mate', 'Praying Like Monks, Living Like Fools: An Invitation to the Wonder and Mystery of Prayer', 'The Handler', 'The Serpent and the Wings of Night', "Financial Feminist: Overcome the Patriarchy's Bullsh*t to Master Your Money and Build a Life You Love", "This Time It's Real", 'A Day of Fallen Night', 'Divine Rivals', 'All Hallows', 'Dark Horse', 'Dust Child', 'On the Development of the Skeleton of the Tuatara, Sphenodon Punctatus ; With Remarks on the egg, on the Hatching and on the Hatched Young', 'Everybody Knows', "Chloe's Purpose", 'Night Angels', 'Bottled Lightning', 'Homo Cosmicus 2: Titan: A Science Fiction Novel', 'Immoral Origins', "The Great Plant-Based Con: Why Eating a Plants-Only Diet Won't Improve Your Health or Save the Planet", 'The Inmate', 'Burner', 'Trials of Conviction', 'The Confidante: The Untold Story of the Woman Who Helped Win WWII and Shape Modern America', 'The Stolen Heir', 'True Teryn', 'Leon the Lion', 'Legends & Lattes', 'King of Wrath', "I'm Just Saying: The Art of Civil Discourse: A Guide to Maintaining Courteous Communication in an Increasingly Divided World", "While Time Remains: A North Korean Defector's Search for Freedom in America", 'Take Command: Find Your Inner Strength, Build Enduring Relationships, and Live the Life You Want', "Eado's Birth", 'Harry Potter and the Cursed Child. Parts One and Two', 'Our Lady of the Artilects', 'Five Survive', 'Love, Theoretically', 'An American Beauty', 'Time Chain', 'Wake Up With Purpose!: What I’ve Learned in My First Hundred Years', 'Counter Identity', 'The Light We Carry: Overcoming in Uncertain Times', 'All My Knotted-Up Life: A Memoir', 'Tippy the Knight', 'Vision to Reality: Stop Working, Start Living', "Dante's End", 'A Little Pinprick', 'Fourth Wing', "Loki's Price", 'Thrall', 'The Paris Affair', 'System Change', 'Taming Flame', 'Long Way Home', 'The Last Ark: Lost Secrets of Qumran', 'Final Offer', 'I Fell in Love With Hope', 'City of Dreams', 'Happy Place', 'The Irish Boarding House', 'House of Marionne', 'Icebreaker', 'Hello Beautiful', 'Finley’s Way', 'A Gracious Enemy & After the War Volume Two', 'Skeleton Tattoos: A Tattoo Coloring Book For Adults, Relaxation With Beautiful Modern Tattoo Designs Such As Sugar Skulls, Animals, Guns, Roses and More!', 'Scavenger Hunt', 'Imogen, Obviously', 'Yours Truly', "Garth Marenghi's TerrorTome", 'The Hunted', 'One Last Kill', 'The Secret of Leifeng Pagoda', 'Never Lie', 'Her Own Legacy', 'The Man Without A Face', 'The Seven Deaths of Evelyn Hardcastle', 'None of This Is True', 'The Ashes & the Star-Cursed King', 'The Bookstore Sisters', 'Behavior Reports: A WWII Submarine Adventure Novel', 'The Grey Wolf', 'Call the Canaries Home', 'The Dragon Storm - Gates', 'Dempsey', "I'll Stop the World", 'Fatal Identity', 'The Only One Left', 'Fractal Noise', "The Devil's Playground", 'The Brothers Hawthorne', 'A Curse for True Love', 'Unanimity', 'Becoming Free Indeed: My Story of Disentangling Faith from Fear', 'Whalefall', 'After Death', 'The Seven Year Slip', 'Secrets II', 'The Marriage Act', 'Those Empty Eyes', 'Pericles and Aspasia: A Story of Ancient Greece', 'King of Pride', 'The Sun and the Star: A Nico di Angelo Adventure', 'The Chalice of the Gods', 'Savage Grounds', 'Promises', 'Proud Pada', "Victor's Blessing", 'Hammered', 'Murder in the Family', 'Tom Lake', 'Angel Devil', 'Silk Road', 'Riding the Devil', 'Dead Fall', 'Androne', 'Stage Fright', 'The 16 Undeniable Laws of Communication: Apply Them and Make the Most of Your Message', 'The Light of Eternal Spring', 'The Horror at Murden Cove', 'Wings of Destiny: A USS Enterprise Naval Adventure Novel', 'Dark Eyes: White Lies', 'Little Red Riding Hood', 'Quantum Radio', 'God Is the Cure, Love Is the Answer: A Memoir', 'Diplomats & Admirals: From Failed Negotiations and Tragic Misjudgments to Powerful Leaders and Heroic Deeds, the Untold Story of the Pacific War from Pearl Harbor to Midway', 'Dome: Rebellion', 'Glucose Control Eating: Lose Weight Stay Slimmer Live Healthier Live Longer', 'Holly', 'The Forgotten Palace', "The Biographies of Jesus' Apostles: Ambassadors in Chains", 'A Day in the Life of Cowboy Mike and Winston', 'Macom Farm', 'Burned Out', 'Pompeii: A Novel', 'A Day of Reckoning', 'Tom Clancy Weapons Grade', 'Fire Prayers: Building Arsenals That Destroy Satanic Kingdoms', 'Powerless', 'Tree of Aeons', 'From Manchester to the Arctic', 'The Boy From Block 66: A WW2 Jewish Holocaust Survival True Story', 'Cynric Ella', 'Valentine', 'Suffering, Redemption and Triumph: The first wave of post-war Australian immigrants 1945-66', 'Triumph: Life on the Other Side of Trials, Transplants, Transition and Transformation', 'Who Has Buried the Dead?: From Stalin to Putin … The last great secret of World War Two', 'The Pragmatist’s Guide to Crafting Religion: A playbook for sculpting cultures that overcome demographic collapse & facilitate long-term human flourishing', 'The Right Move', 'A Storm of Infinite Beauty', 'Unstoppable', 'Black Fire', 'Marry Christmas', 'Iron Flame', 'Life for Life', 'The Trial of Joe Harlan Junior', 'Judgment Prey', 'One Moment in Time', 'The Alchemy Fire Murder: a Mary Wandwalker Mystery', 'Magical Elements of the Periodic Table Presented Alphabetically by the Metal Horn Unicorns', 'Poems from Still Waters Running Deep', 'Wildfire', 'The Polymorph', 'Code Red', "The Stars Don't Lie", 'The Frozen River', 'Girl on Trial', 'Child of Another Kind', 'Vanished: True Stories from Families of Australian Missing Persons', 'Orchard of Skeletons', 'Lesson', 'Lesson II', 'The Ball at Versailles', "My Sister's Betrayal", "The Ruins of Woodman's Village", 'The Balance of Time', 'Miracle', 'Against the Machine: Evolution', 'Ward D', 'Nineteen Steps', 'Stranger on the Shore', 'Андрій Лаговський', 'RELIC: A SciFi Adventure', 'Assistant to the Villain', 'A Touch of Innocence', 'The Final Steps: A Harbor Springs Cozy Legal Mystery', 'Addicted to Time', 'Swift Judgment', 'The Coworker', 'Triple Deception', 'Move to Millions: The Proven Framework to Become a Million Dollar CEO with Grace & Ease Instead of Hustle & Grind', 'Wife For Sale', 'As Above', 'Burning Evidence: A Legal Thriller filled with Gripping Courtroom Drama', 'Ailene', 'Boy of Chaotic Making', 'Woke Up Like This', 'So Below', 'Only Good Enemies', 'The American Girl', 'The Spy Coast', 'The Raven and the Nine', 'Ring Of Love', 'The Mayor of Maxwell Street', "Always Remember: Ben's Story", 'Get the Boy, Own the Future', 'Prince of Pain I', 'Prince of Pain II', 'Path of the Berserker', 'Heir of Broken Fate', 'The Good Doctor', 'Sidewinder', 'Prince of Pain III', 'Sunstruck', 'Walking into Dreams', 'Of Monsters And Planes', 'Slow Time Between the Stars', 'The Long Game', 'How It Unfolds', 'Desire', 'The Warm Hands of Ghosts', 'The Three Witches and the Master', 'What I Wish I Said: Confessions of a Columnist', 'Gilded Tower', 'Isabella Warrior Queen', 'Prince of Pain IV', 'A Touch of Savagery', 'Sins of the Maker', 'The Alaska Job', 'My Unbeating Heart', 'Hex of the Witch', 'Brotherhood of the Goat', 'Bratva Connection: Maxim', "Murder O'Clock", 'Losing My Breath', 'The Wife in the Photo', 'Fated to Love You', 'And In-Between', 'The Duke of D.C.: The American Dream', 'Murder in the Pacific: Ifira Point', 'Yours', 'Ours', '"Look Here, Sir, What a Curious Bird": Searching for Ali, Alfred Russel Wallace\'s Faithful Companion', 'Sown in Tears: A Historical Novel of Love and Struggle', 'Earth of Another Kind', 'Heart of Night and Fire', 'Enemies Among Us', 'The Dead Tell Lies', 'Hard Knocks', 'Tales of Old: Greek Mythology: Volume 1', "Puck's Legacy", 'Escape the Matrix: A Guide to Living Free in a System-Driven World', 'Chasing the Dragon: BY NEW BLOOD DAGGER AND SCOTTISH CRIME DEBUT SHORTLISTED AUTHOR', 'Killing Johnny Miracle', 'طفيليات', 'مشاغب', 'House of Vampires and Flame', 'The Last Run', 'The Kitten and His Prince', 'Search and Destroy', "O'SHAUGHNESSY INVESTIGATIONS, INC.: The Cases Nobody Wanted", 'Gods of Another Kind', 'Sacrifices For Kingdoms', 'The Darkest Core', 'The Wrong Daughter', 'Ghost Doors', 'Cult of the Clan', 'Blood Debt', 'Dislocated', 'The Girl with the Porcelain Lips', 'The Dragon Storm: Abracadabra', 'Storm Surge: Book Two of the Stormsong Trilogy', 'Marked by Magic', 'Dark Voyage Matters of the Mind', 'Seasonable Doubt', 'The Survival Rule', 'Searching For Zen: A Tale Of Divine Destiny', 'Borealis: A Worldmaker of Yand Novel', 'Blackbird', 'The Lies of Vampires and Slayers', 'The Namatjira Connection', 'The Forest: A new Saskia van Essen crime mystery thriller', 'Lucky Son Of A Gun', 'A Cursed Son', 'A Dagger of Lightning', 'Murder On Family Grounds: A Mary Wandwalker Mystery', 'Viciously Yours', 'Magical Midlife Awakening', 'The Art of Avoiding Your Werewolf', 'Heretical Fishing: A Cozy Guide to Annoying the Cults, Outsmarting the Fish, and Alienating Oneself', 'The Art of Avoiding Your Alpha', 'Finistère', 'The Descent', 'FDR Unmasked: 73 Years of Medical Cover-ups That Rewrote History', 'Code Yellow in Gretna Green', "Shadow's Siege"]

2. description column¶

In [26]:
unique_values('description')
Out[26]:
["It is the middle of the summer, but there is an unseasonal mist pressing against the windowpanes. Harry Potter is waiting nervously in his bedroom at the Dursleys' house in Privet Drive for a visit from Professor Dumbledore himself. One of the last times he saw the Headmaster, he was in a fierce one-to-one duel with Lord Voldemort, and Harry can't quite believe that Professor Dumbledore will actually appear at the Dursleys' of all places. Why is the Professor coming to visit him now? What is it that cannot wait until Harry returns to Hogwarts in a few weeks' time? Harry's sixth year at Hogwarts has already got off to an unusual start, as the worlds of Muggle and magic start to intertwine...",
 'Harry Potter is about to start his fifth year at Hogwarts School of Witchcraft and Wizardry. Unlike most schoolboys, Harry never enjoys his summer holidays, but this summer is even worse than usual. The Dursleys, of course, are making his life a misery, but even his best friends, Ron and Hermione, seem to be neglecting him.Harry has had enough. He is beginning to think he must do something, anything, to change his situation, when the summer holidays come to an end in a very dramatic fashion. What Harry is about to discover in his new year at Hogwarts will turn his world upside down...',
 "Harry Potter has no idea how famous he is. That's because he's being raised by his miserable aunt and uncle who are terrified Harry will learn that he's really a wizard, just as his parents were. But everything changes when Harry is summoned to attend an infamous school for wizards, and he begins to discover some clues about his illustrious birthright. From the surprising way he is greeted by a lovable giant, to the unique curriculum and colorful faculty at his unusual school, Harry finds himself drawn deep inside a mystical world he never knew existed and closer to his own noble destiny.",
 "Harry Potter, along with his best friends, Ron and Hermione, is about to start his third year at Hogwarts School of Witchcraft and Wizardry. Harry can't wait to get back to school after the summer holidays. (Who wouldn't if they lived with the horrible Dursleys?) But when Harry gets to Hogwarts, the atmosphere is tense. There's an escaped mass murderer on the loose, and the sinister prison guards of Azkaban have been called in to guard the school...",
 'It is the summer holidays and soon Harry Potter will be starting his fourth year at Hogwarts School of Witchcraft and Wizardry. Harry is counting the days: there are new spells to be learnt, more Quidditch to be played, and Hogwarts castle to continue exploring. But Harry needs to be careful - there are unexpected dangers lurking...',
 "Box Set containing Harry Potter and the Sorcerer's Stone, Harry Potter and the Chamber Of Secrets, Harry Potter and the Prisoner of Azkaban, Harry Potter and the Goblet Of Fire, and Harry Potter and the Order of the Phoenix!",
 "Six years of magic, adventure, and mystery make this luxurious boxed set the perfect gift for Harry Potter fans of all ages. Follow Harry from his first days at Hogwarts School for Witchcraft and Wizardry, through his many adventures with Hermione and Ron, to his confrontations with rival Draco Malfoy and the dreaded Professor Snape. From the thrilling search for the Sorcerer's Stone to the Triwizard Tournament to the return of He-Who-Must-Not-Be-Named, each adventure is more riveting and exhilarating than its predecessor, and now all six books are available together for the first time in an elegant hardcover boxed set.",
 'Seconds before the Earth is demolished to make way for a galactic freeway, Arthur Dent is plucked off the planet by his friend Ford Prefect, a researcher for the revised edition of The Hitchhiker\'s Guide to the Galaxy who, for the last fifteen years, has been posing as an out-of-work actor.Together this dynamic pair begin a journey through space aided by quotes from The Hitchhiker\'s Guide ("A towel is about the most massively useful thing an interstellar hitchhiker can have") and a galaxy-full of fellow travelers: Zaphod Beeblebrox--the two-headed, three-armed ex-hippie and totally out-to-lunch president of the galaxy; Trillian, Zaphod\'s girlfriend (formally Tricia McMillan), whom Arthur tried to pick up at a cocktail party once upon a time zone; Marvin, a paranoid, brilliant, and chronically depressed robot; Veet Voojagig, a former graduate student who is obsessed with the disappearance of all the ballpoint pens he bought over the years.Where are these pens? Why are we born? Why do we die? Why do we spend so much time between wearing digital watches? For all the answers stick your thumb to the stars. And don\'t forget to bring a towel!',
 'At last in paperback in one complete volume, here are the five novels from Douglas Adams\'s Hitchhiker series. "The Hitchhiker\'s Guide to the Galaxy"Seconds before the Earth is demolished for a galactic freeway, Arthur Dent is saved by Ford Prefect, a researcher for the revised Guide. Together they stick out their thumbs to the stars and begin a wild journey through time and space."The Restaurant at the End of the Universe"Facing annihilation at the hands of warmongers is a curious time to crave tea. It could only happen to the cosmically displaced Arthur Dent and his comrades as they hurtle across the galaxy in a desperate search for a place to eat."Life, the Universe and Everything"The unhappy inhabitants of planet Krikkit are sick of looking at the night sky- so they plan to destroy it. The universe, that is. Now only five individuals can avert Armageddon: mild-mannered Arthur Dent and his stalwart crew."So Long, and Thanks for All the Fish"Back on Earth, Arthur Dent is ready to believe that the past eight years were all just a figment of his stressed-out imagination. But a gift-wrapped fishbowl with a cryptic inscription conspires to thrust him back to reality. So to speak."Mostly Harmless"Just when Arthur Dent makes the terrible mistake of starting to enjoy life, all hell breaks loose. Can he save the Earth from total obliteration? Can he save the Guide from a hostile alien takeover? Can he save his daughter from herself?Also includes the short story "Young Zaphod Plays It Safe".',
 'Bill Bryson describes himself as a reluctant traveller, but even when he stays safely at home he can\'t contain his curiosity about the world around him. "A Short History of Nearly Everything" is his quest to understand everything that has happened from the Big Bang to the rise of civilisation - how we got from there, being nothing at all, to here, being us. The ultimate eye-opening journey through time and space, revealing the world in a way most of us have never seen it before.',
 "It is the driest, flattest, hottest, most infertile and climatically aggressive of all the inhabited continents, and still Australia teems with life - a large portion of it quite deadly. In fact, Australia has more things that can kill you in a very nasty way than anywhere else.Ignoring such dangers - and yet curiously obsessed by them - Bill Bryson journeyed to Australia and promptly fell in love with the country. And who can blame him? The people are cheerful, extroverted, quick-witted and unfailingly obliging: their cities are safe and clean and nearly always built on water; the food is excellent; the beer is cold and the sun nearly always shines. Life doesn't get much better than this...",
 'After living in Britain for two decades, Bill Bryson recently moved back to the United States with his English wife and four children (he had read somewhere that nearly 3 million Americans believed they had been abducted by aliens--as he later put it, "it was clear my people needed me"). They were greeted by a new and improved America that boasts microwave pancakes, twenty-four-hour dental-floss hotlines, and the staunch conviction that ice is not a luxury item. Delivering the brilliant comic musings that are a Bryson hallmark, I\'m a Stranger Here Myself recounts his sometimes disconcerting reunion with the land of his birth. The result is a book filled with hysterical scenes of one man\'s attempt to reacquaint himself with his own country, but it is also an extended if at times bemused love letter to the homeland he has returned to after twenty years away.',
 "'I come from Des Moines. Somebody had to'And, as soon as Bill Bryson was old enough, he left. Des Moines couldn't hold him, but it did lure him back. After ten years in England, he returned to the land of his youth, and drove almost 14,000 miles in search of a mythical small town called Amalgam, the kind of trim and sunny place where the films of his youth were set. Instead, his search led him to Anywhere, USA; a lookalike strip of gas stations, motels and hamburger outlets populated by lookalike people with a penchant for synthetic fibres. Travelling around thirty-eight of the lower states - united only in their mind-numbingly dreary uniformity - he discovered a continent that was doubly lost; lost to itself because blighted by greed, pollution, mobile homes and television; lost to him because he had become a stranger in his own land.The Lost Continent is a classic of travel literature - hilariously, stomach-achingly funny, yet tinged with heartache - and the book that first staked Bill Bryson's claim as the most beloved writer of his generation.",
 "Bill Bryson's first travel book, The Lost Continent, was unanimously acclaimed as one of the funniest books in years. In Neither Here nor There he brings his unique brand of humour to bear on Europe as he shoulders his backpack, keeps a tight hold on his wallet, and journeys from Hammerfest, the northernmost town on the continent, to Istanbul on the cusp of Asia. Fluent in, oh, at least one language, he retraces his travels as a student twenty years before.Whether braving the homicidal motorist of Paris, being robbed by gypsies in Florence, attempting not to order tripe and eyeballs in a German restaurant, window-shopping in the sex shops of the Reeperbahn or disputing his hotel bill in Copenhagen, Bryson takes in the sights, dissects the culture and illuminates each place and person with his hilariously caustic observations. He even goes to Liechtenstein.",
 '"Suddenly, in the space of a moment, I realized what it was that I loved about Britain-which is to say, all of it."After nearly two decades spent on British soil, Bill Bryson - bestselling author of The Mother Tongue and Made in America-decided to return to the United States. ("I had recently read," Bryson writes, "that 3.7 million Americans believed that they had been abducted by aliens at one time or another, so it was clear that my people needed me.") But before departing, he set out on a grand farewell tour of the green and kindly island that had so long been his home.Veering from the ludicrous to the endearing and back again, Notes from a Small Island is a delightfully irreverent jaunt around the unparalleled floating nation that has produced zebra crossings, Shakespeare, Twiggie Winkie\'s Farm, and places with names like Farleigh Wallop and Titsey. The result is an uproarious social commentary that conveys the true glory of Britain, from the satiric pen of an unapologetic Anglophile.',
 "Only Bill Bryson could make a book about the English language so entertaining. With his boundless enthusiasm and restless eye for the absurd, this is his astonishing tour of English.From its mongrel origins to its status as the world's most-spoken tongue; its apparent simplicity to its deceptive complexity; its vibrant swearing to its uncertain spelling and pronunciation; Bryson covers all this as well as the many curious eccentricities that make it as maddening to learn as it is flexible to use.Bill Bryson's classic Mother Tongue is a highly readable and hilarious tale of how English came to be the world's language.",
 "This four-volume, boxed set contains J.R.R. Tolkien's epic masterworks The Hobbit and the three volumes of The Lord of the Rings (The Fellowship of the Ring, The Two Towers, and The Return of the King).In The Hobbit, Bilbo Baggins is whisked away from his comfortable, unambitious life in Hobbiton by the wizard Gandalf and a company of dwarves. He finds himself caught up in a plot to raid the treasure hoard of Smaug the Magnificent, a large and very dangerous dragon.The Lord of the Rings tells of the great quest undertaken by Frodo Baggins and the Fellowship of the Ring: Gandalf the wizard; the hobbits Merry, Pippin, and Sam; Gimli the dwarf; Legolas the elf; Boromir of Gondor; and a tall, mysterious stranger called Strider. J.R.R. Tolkien's three volume masterpiece is at once a classic myth and a modern fairy tale—a story of high and heroic adventure set in the unforgettable landscape of Middle-earth",
 "One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind themIn ancient times the Rings of Power were crafted by the Elven-smiths, and Sauron, the Dark Lord, forged the One Ring, filling it with his own power so that he could rule all others. But the One Ring was taken from him, and though he sought it throughout Middle-earth, it remained lost to him. After many ages it fell by chance into the hands of the hobbit Bilbo Baggins.From Sauron's fastness in the Dark Tower of Mordor, his power spread far and wide. Sauron gathered all the Great Rings to him, but always he searched for the One Ring that would complete his dominion.When Bilbo reached his eleventy-first birthday he disappeared, bequeathing to his young cousin Frodo the Ruling Ring and a perilous quest: to journey across Middle-earth, deep into the shadow of the Dark Lord, and destroy the Ring by casting it into the Cracks of Doom.The Lord of the Rings tells of the great quest undertaken by Frodo and the Fellowship of the Ring: Gandalf the Wizard; the hobbits Merry, Pippin, and Sam; Gimli the Dwarf; Legolas the Elf; Boromir of Gondor; and a tall, mysterious stranger called Strider.",
 'Alternate Cover Edition ISBN 0618260269 (copyright page ISBN is 0618346252 - different from back cover)One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkeness bind themIn ancient times the Rings of Power were crafted by the Elven-smiths, and Sauron, The Dark Lord, forged the One Ring, filling it with his own power so that he could rule all others. But the One Ring was taken from him, and though he sought it throughout Middle-earth, it remained lost to him. After many ages it fell into the hands of Bilbo Baggins, as told in The Hobbit.In a sleepy village in the Shire, young Frodo Baggins finds himself faced with an immense task, as his elderly cousin Bilbo entrusts the Ring to his care. Frodo must leave his home and make a perilous journey across Middle-earth to the Cracks of Doom, there to destroy the Ring and foil the Dark Lord in his evil purpose.--back cover',
 "Brian is on his way to Canada to visit his estranged father when the pilot of his small prop plane suffers a heart attack. Brian is forced to crash-land the plane in a lake--and finds himself stranded in the remote Canadian wilderness with only his clothing and the hatchet his mother gave him as a present before his departure. Brian had been distraught over his parents' impending divorce and the secret he carries about his mother, but now he is truly desolate and alone. Exhausted, terrified, and hungry, Brian struggles to find food and make a shelter for himself. He has no special knowledge of the woods, and he must find a new kind of awareness and patience as he meets each day's challenges. Is the water safe to drink? Are the berries he finds poisonous? Slowly, Brian learns to turn adversity to his advantage--an invading porcupine unexpectedly shows him how to make fire, a devastating tornado shows him how to retrieve supplies from the submerged airplane. Most of all, Brian leaves behind the self-pity he has felt about his predicament as he summons the courage to stay alive. A story of survival and of transformation, this riveting book has sparked many a reader's interest in venturing into the wild.",
 'Neef is a changeling, a human baby stolen by fairies and replaced with one of their own. She lives in "New York Between," a Manhattan alongside our own, home to creatures of folklore. Protected by her fairy godmother until she breaks a Fairy Law, now she must face the challenge of the Green Lady of Central Park or be sacrificed! Neef is determined, but time is running out.',
 'Ivy Carson belonged to the notorious Carson family, which lived in a run-down house in suburban Rosewood. But Ivy was not a typical Carson. There was something wonderful about her. Ivy explained it by saying that she was a changeling, a child of supernatural parents who had been exchanged for the real Ivy Carson at birth. This classic book was first published in 1970. It was awarded a Christopher Medal and named an outstanding book for young people by the Junior Library Guild.',
 "One of the most acclaimed novels in recent memory, The Known World is a daring and ambitious work by Pulitzer Prize winner Edward P. Jones.The Known World tells the story of Henry Townsend, a black farmer and former slave who falls under the tutelage of William Robbins, the most powerful man in Manchester County, Virginia. Making certain he never circumvents the law, Townsend runs his affairs with unusual discipline. But when death takes him unexpectedly, his widow, Caldonia, can't uphold the estate's order, and chaos ensues. Jones has woven a footnote of history into an epic that takes an unflinching look at slavery in all its moral complexities.",
 'This is the story of Alaska and the Alaskans. Written with a vividness and clarity which shifts scenes frequently, and yet manages to tie the work into a rewarding whole, McPhee segues from the wilderness to life in urban Alaska to the remote bush country.',
 'Little orphan Heidi goes to live high in the Alps with her gruff grandfather and brings happiness to all who know her on the mountain. When Heidi goes to Frankfurt to work in a wealthy household, she dreams of returning to the mountains and meadows, her friend Peter, and her beloved grandfather.',
 "Alternate Cover Edition of ISBN 0441102670.The desert planet Arrakis, called Dune, has been destroyed. Now, the Bene Gesserit, heirs to Dune's power, have colonized a green world--and are turning it into a desert, mile by scorched mile.Here is the last book Frank Herbert wrote before his death. A stunning climax to the epic Dune legend that will live on forever...",
 "The desert planet of Arrakis has begun to grow green and lush. The life-giving spice is abundant. The nine-year-old royal twins, possesing their father's supernatural powers, are being groomed as Messiahs.But there are those who think the Imperium does not need messiahs...",
 'Book Five in the Magnificent Dune Chronicles—the Bestselling Science Fiction Adventure of All TimeLeto Atreides, the God Emperor of Dune, is dead. In the fifteen hundred years since his passing, the Empire has fallen into ruin. The great Scattering saw millions abandon the crumbling civilization and spread out beyond the reaches of known space. The planet Arrakis—now called Rakis—has reverted to its desert climate, and its great sandworms are dying.Now the Lost Ones are returning home in pursuit of power. And as these factions vie for control over the remnants of the Empire, a girl named Sheeana rises to prominence in the wastelands of Rakis, sending religious fervor throughout the galaxy. For she possesses the abilities of the Fremen sandriders—fulfilling a prophecy foretold by the late God Emperor....',
 'In 1939, as Hitler casts his enormous, cruel shadow across the world, the seeds of apartheid take root in South Africa. There, a boy called Peekay is born. His childhood is marked by humiliation and abandonment, yet he vows to survive and conceives heroic dreams, which are nothing compared to what life actually has in store for him. He embarks on an epic journey through a land of tribal superstition and modern prejudice where he will learn the power of words, the power to transform lives and the power of one.',
 'In April 1992, a discovery was made that changed the way we view the world. Dr. George Smoot, a distinguished cosmologist and adventurer whose quest for cosmic knowledge had taken him from the Brazilian rain forest to the South Pole, unveiled his momentous discovery, bringing to light the very nature of the universe. For anyone who has ever looked up at the night sky and wondered, for anyone who has ever longed to pull aside the fabric of the universe for a glimpse of what lies behind it. Wrinkles in Time is the story of Smoot\'s search to uncover the cosmic seeds of the universe.Wrinkles in Time is the Double Helix of cosmology, an intimate look at the inner world of men and women who ask. "Why are we here?" It tells the story of George Smoot\'s dogged pursuit of the cosmic wrinkles in the frozen wastes of Antarctica, on mountaintops, in experiments borne aloft aboard high-altitude balloons, U-2 spy planes, and finally a space satellite. Wrinkles in Time presents the hard science behind the structured violence of the big bang theory through breathtakingly clear, lucid images and meaningful comparisons. Scientists and nonscientists alike can follow with rapt attention the story of how, in a fiery creation, wrinkles formed in space ultimately to become stars, galaxies, and even greater delicate structures. Anyone can appreciate the implications of a universe whose end is written in its beginnings - whose course developed according to a kind of cosmic DNA, which guided the universe from simplicity and symmetry to ever-greater complexity and structure. As controversial as it may seem today, Wrinkles in Time reveals truths that, in an earlier century, would have doomed its proclaimers to the fiery stake. For four thousand years some people have accepted the Genesis account of cosmic origin; for most of this century, scientists debated two rival scientific explanations known as the steady state and big bang theories. And now, Wrinkles in Time tells what really happened. The personal story behind astrophysicist George Smoot\'s incredible discovery of the origin of the cosmos, hailed by Stephen Hawking as "The scientific discovery of the century, if not of all time."',
 'Tom Wolfe, the master social novelist of our time, the spot-on chronicler of all things contemporary and cultural, presents a sensational new novel about life, love, and learning--or the lack of it--amid today\'s American colleges.Our story unfolds at fictional Dupont University: those Olympian halls of scholarship housing the cream of America\'s youth, the roseate Gothic spires and manicured lawns suffused with tradition . . . Or so it appears to beautiful, brilliant Charlotte Simmons, a sheltered freshman from North Carolina. But Charlotte soon learns, to her mounting dismay, that for the upper-crust coeds of Dupont, sex, cool, and kegs trump academic achievement every time.As Charlotte encounters the paragons of Dupont\'s privileged elite--her roommate, Beverly, a Groton-educated Brahmin in lusty pursuit of lacrosse players; Jojo Johanssen, the only white starting player on Dupont\'s godlike basketball team, whose position is threatened by a hotshot black freshman from the projects; the Young Turk of Saint Ray fraternity, Hoyt Thorpe, whose heady sense of entitlement and social domination is clinched by his accidental brawl with a bodyguard for the governor of California; and Adam Geller, one of the Millennial Mutants who run the university\'s "independent" newspaper and who consider themselves the last bastion of intellectual endeavor on the sex-crazed, jock-obsessed campus--she is seduced by the heady glamour of acceptance, betraying both her values and upbringing before she grasps the power of being different--and the exotic allure of her own innocence.With his trademark satirical wit and famously sharp eye for telling detail, Wolfe\'s I Am Charlotte Simmons draws on extensive observations at campuses across the country to immortalize the early-21st-century college-going experience.',
 'Now hailed as an American classic Tropic of Cancer, Henry Miller’s masterpiece, was banned as obscene in this country for twenty-seven years after its first publication in Paris in 1934. Only a historic court ruling that changed American censorship standards, ushering in a new era of freedom and frankness in modern literature, permitted the publication of this first volume of Miller’s famed mixture of memoir and fiction, which chronicles with unapologetic gusto the bawdy adventures of a young expatriate writer, his friends, and the characters they meet in Paris in the 1930s. Tropic of Cancer is now considered, as Norman Mailer said, "one of the ten or twenty great novels of our century."',
 "Banned in America for almost thirty years because of its explicit sexual content, this companion volume to Miller's Tropic of Cancer chronicles his life in 1920s New York City. Famous for its frank portrayal of life in Brooklyn's ethnic neighborhoods, and Miller's outrageous sexual exploits, Tropic of Capricorn is now considered a cornerstone of modern literature. ",
 "Sexus is the first volume of the scandalous trilogy The Rosy Crucifixion, Henry Miller's major life workHenry Miller called the end of his life in America and the start of a new, bohemian existence in 1930s Paris his 'rosy crucifixion'. His searing fictionalized autobiography of this time of liberation was banned for nearly twenty years. Sexus, the first volume in The Rosy Crucifixion trilogy, looks back to his early sexual escapades in Brooklyn, and his growing infatuation with the playful, teasing dance hall hostess who will become the great obsession of his life.",
 'In 1939, after ten years as an expatriate, Henry Miller returned to the United States with a keen desire to see what his native land was really like—to get to the roots of the American nature and experience. He set out on a journey that was to last three years, visiting many sections of the country and making friends of all descriptions. The Air-Conditioned Nightmare is the result of that odyssey.',
 "When Isabel Archer, a beautiful, spirited American, is brought to Europe by her wealthy Aunt Touchett, it is expected that she will soon marry. But Isabel, resolved to determine her own fate, does not hesitate to turn down two eligible suitors. She then finds herself irresistibly drawn to Gilbert Osmond, who, beneath his veneer of charm and cultivation, is cruelty itself. A story of intense poignancy, Isabel's tale of love and betrayal still resonates with modern audiences.",
 'Set against the backdrop of French colonial Vietnam, The Lover reveals the intimacies and intricacies of a clandestine romance between a pubescent girl from a financially strapped French family and an older, wealthy Chinese-Vietnamese man.',
 'A tender tale set in Beirut tells of first love between a youth and a young girl named Selma, who is promised in marriage to another man',
 '"For sheer storytelling delight and pure adventure, Treasure Island has never been surpassed. From the moment young Jim Hawkins first encounters the sinister Blind Pew at the Admiral Benbow Inn until the climactic battle for treasure on a tropic isle, the novel creates scenes and characters that have fired the imaginations of generations of readers. Written by a superb prose stylist, a master of both action and atmosphere, the story centers upon the conflict between good and evil - but in this case a particularly engaging form of evil. It is the villainy of that most ambiguous rogue Long John Silver that sets the tempo of this tale of treachery, greed, and daring. Designed to forever kindle a dream of high romance and distant horizons, Treasure Island is, in the words of G. K. Chesterton, \'the realization of an ideal, that which is promised in its provocative and beckoning map; a vision not only of white skeletons but also green palm trees and sapphire seas.\' G. S. Fraser terms it \'an utterly original book\' and goes on to write: \'There will always be a place for stories like Treasure Island that can keep boys and old men happy.\'',
 "A beautiful young woman stands poised over the gambling tables in an expensive hotel. She is aware of, and resents, the gaze of an unusual young man, a stranger, who seems to judge her, and find her wanting. The encounter will change her life.The strange young man is Daniel Deronda, brought up with his own origins shrouded in mystery, searching for a compelling outlet for his singular talents and remarkable capacity for empathy. Deronda's destiny will change the lives of many.",
 'The brilliant, bestselling, landmark novel that tells the story of the Buendia family, and chronicles the irreconcilable conflict between the desire for solitude and the need for love—in rich, imaginative prose that has come to define an entire genre known as "magical realism."',
 'An acclaimed bestseller and international sensation, Patrick Suskind\'s classic novel provokes a terrifying examination of what happens when one man\'s indulgence in his greatest passion—his sense of smell—leads to murder.In the slums of eighteenth-century France, the infant Jean-Baptiste Grenouille is born with one sublime gift—an absolute sense of smell. As a boy, he lives to decipher the odors of Paris, and apprentices himself to a prominent perfumer who teaches him the ancient art of mixing precious oils and herbs. But Grenouille\'s genius is such that he is not satisfied to stop there, and he becomes obsessed with capturing the smells of objects such as brass doorknobs and fresh-cut wood. Then one day he catches a hint of a scent that will drive him on an ever-more-terrifying quest to create the "ultimate perfume"—the scent of a beautiful young virgin. Told with dazzling narrative brilliance, Perfume is a hauntingly powerful tale of murder and sensual depravity.',
 'Electronics engineer Dan Davis has finally made the invention of a lifetime: a household robot with extraordinary abilities, destined to dramatically change the landscape of everyday routine. Then, Dan was tricked by an unscrupulous greedy business partner and a greedier fiancee into spending thirty years in suspended animation, the long sleep, just when he was on the verge of a success beyond his wildest dreams.They never imagine that the future time in which Dan, a modern-day and future-time, Rip Van Winkle, will awaken has mastered time travel, giving him a way to get back to them, and at them, and get his revenge!.',
 'NAME: Valentine Michael SmithANCESTRY: HumanORIGIN: MarsValentine Michael Smith is a human being raised on Mars, newly returned to Earth. Among his people for the first time, he struggles to understand the social mores and prejudices of human nature that are so alien to him, while teaching them his own fundamental beliefs in grokking, watersharing, and love.',
 'The stars were closed to Max Jones. To get into space you either needed connections, a membership in the Guild, or a whole lot more money than Max, the son of a widowed, poor mother, was ever going to have. What Max does have going for him are his uncle’s prized astrogation manuals—book on star navigation that Max literally commits to memory word for word, equation for equation. From the First Golden Age of Heinlein, this is the so-called juvenile (written, Heinlein always claims, just as much for adults) that started them all and made Heinlein a legend for multiple generations of readers.',
 "The capstone and crowning achievement of Heinlein's famous Future History, Time Enough for Love follows Lazarus Long through a vast and magnificent timescape of centuries and worlds. Heinlein's longest and most ambitious work, it is the story of a man so in love with Life that he refused to stop living it; and so in love with Time that he became his own ancestor.",
 'NEW YORK TIMES BESTSELLER • Robert Heinlein at his superlative best. A fascinating and thought-provoking novel—one to make you smile, to make you wonder, and to make you care!After that firewalking gig in Polynesia, the whole world was suddenly changed around him. Instead of fundamentalist minister Alexander Hergensheimer, he was now supposed to be Alec Graham, an underworld figure in the middle of an affair with his stewardess Margrethe—who was the only good thing in the whole mess.Then there was an impossible iceberg that wrecked the ship in the tropics. Rescued by a Royal \xa0Mexican plane, they were hit by a double earthquake. From then on, as changed world followed changed world, things went from bad to worse.To Alex, all the signs increasingly pointed to Armageddon and the Day of Judgement. And Margrethe was a determined heathen. Somehow he had to bring her to a state of grace, for Heaven would be no paradise without her. But time was growing short.\xa0Somewhere, there had to be a solution to it all. And, of course, there was. But it was truly a Hell of a solution.',
 'When a passenger check-in desk at London\'s Heathrow Airport disappears in a ball of orange flame, the explosion is deemed an act of God. But which god, wonders holistic detective Dirk Gently? What god would be hanging around Heathrow trying to catch the 3:37 to Oslo? And what has this to do with Dirk\'s latest--and late-- client, found only this morning with his head revolving atop the hit record "Hot Potato"? Amid the hostile attentions of a stray eagle and the trauma of a very dirty refrigerator, super-sleuth Dirk Gently will once again solve the mysteries of the universe...',
 'Douglas Adams changed the face of science fiction with his cosmically comic novel The Hitchhiker’s Guide to the Galaxy and its classic sequels. Sadly for his countless admirers, he hitched his own ride to the great beyond much too soon. Culled posthumously from Adams’s fleet of beloved Macintosh computers, this selection of essays, articles, anecdotes, and stories offers a fascinating and intimate portrait of the multifaceted artist and absurdist wordsmith.Join Adams on an excursion to climb Kilimanjaro…dressed in a rhino costume; peek into the private life of Genghis Khan—warrior and world-class neurotic; root for the harried author’s efforts to get a Hitchhiker movie off the ground in Hollywood; thrill to the further exploits of private eye Dirk Gently and two-headed alien Zaphod Beeblebrox. Though Douglas Adams is gone, he’s left us something very special to remember him by. Without a doubt.',
 'What do a dead cat, a computer whiz-kid, an Electric Monk who believes the world is pink, quantum mechanics, a Chronologist over 200 years old, Samuel Taylor Coleridge (poet), and pizza have in common? Apparently not much; until Dirk Gently, self-styled private investigator, sets out to prove the fundamental interconnectedness of all things by solving a mysterious murder, assisting a mysterious professor, unravelling a mysterious mystery, and eating a lot of pizza – not to mention saving the entire human race from extinction along the way (at no extra charge). To find out more, read this book (better still, buy it, then read it) – or contact Dirk Gently’s Holistic Detective Agency. ‘A thumping good detective-ghost-horror-whodunnit-time travel-romantic-musical-comedy epic.’ The author',
 "Librarian's Note: For an alternate cover edition of the same ISBN, click here.This beloved story -first published more than fifty years ago- introduces readers to Milo and his adventures in the Lands Beyond. For Milo, everything’s a bore. When a tollbooth mysteriously appears in his room, he drives through only because he’s got nothing better to do. But on the other side, things seem different. Milo visits the Island of Conclusions (you get there by jumping), learns about time from a ticking watchdog named Tock, and even embarks on a quest to rescue Rhyme and Reason! Somewhere along the way, Milo realizes something astonishing. Life is far from dull. In fact, it’s exciting beyond his wildest dreams. . . .",
 'From the author of White Noise (winner of the National Book Award) and The Silence , an eerily convincing fictional speculation on the events leading up to the assassination of John F. KennedyIn this powerful, unsettling novel, Don DeLillo chronicles Lee Harvey Oswald\'s odyssey from troubled teenager to a man of precarious stability who imagines himself an agent of history. When "history" presents itself in the form of two disgruntled CIA operatives who decide that an unsuccessful attempt on the life of the president will galvanize the nation against communism, the scales are irrevocably tipped.A gripping, masterful blend of fact and fiction, alive with meticulously portrayed characters both real and created, Libra is a grave, haunting, and brilliant examination of an event that has become an indelible part of the American psyche.',
 '"One of the most intelligent, grimly funny voices to comment on life in present-day America" (The New York Times), Don DeLillo presents an extraordinary new novel about words and images, novelists and terrorists, the mass mind and the arch-individualist. At the heart of the book is Bill Gray, a famous reclusive writer who escapes the failed novel he has been working on for many years and enters the world of political violence, a nightscape of Semtex explosives and hostages locked in basement rooms. Bill\'s dangerous passage leaves two people stranded: his brilliant, fixated assistant, Scott, and the strange young woman who is Scott\'s lover—and Bill\'s.',
 'Set against the backdrop of a lush and exotic Greece, The Names is considered the book which began to drive "sharply upward the size of his readership" (Los Angeles Times Book Review). Among the cast of DeLillo\'s bizarre yet fully realized characters in The Names are Kathryn, the narrator\'s estranged wife; their son, the six-year-old novelist; Owen, the scientist; and the neurotic narrator obsessed with his own neuroses. A thriller, a mystery, and still a moving examination of family, loss, and the amorphous and magical potential of language itself, The Names stands with any of DeLillo\'s more recent and highly acclaimed works. "The Names not only accurately reflects a portion of our contemporary world but, more importantly, an original world of its own is created."--Chicago Sun-Times"DeLillo sifts experience through simultaneous grids of science and poetry, analysis and clear sight, to make a high-wire prose that is voluptuously stark."--Village Voice Literary Supplement"DeLillo verbally examines every state of consciousness from eroticism to tourism, from the idea of America as conceived by the rest of the world, to the idea of the rest of the world as conceived by America, from mysticism to fanaticism."--New York Times',
 "Spanning the period between the Chicago World's Fair of 1893 and the years just after World War I, this novel moves from the labor troubles in Colorado to turn-of-the-century New York, to London and Gottingen, Venice and Vienna, the Balkans, Central Asia, Siberia at the time of the mysterious Tunguska Event, Mexico during the Revolution, postwar Paris, silent-era Hollywood, and one or two places not strictly speaking on the map at all.With a worldwide disaster looming just a few years ahead, it is a time of unrestrained corporate greed, false religiosity, moronic fecklessness, and evil intent in high places. No reference to the present day is intended or should be inferred.The sizable cast of characters includes anarchists, balloonists, gamblers, corporate tycoons, drug enthusiasts, innocents and decadents, mathematicians, mad scientists, shamans, psychics, and stage magicians, spies, detectives, adventuresses, and hired guns. There are cameo appearances by Nikola Tesla, Bela Lugosi, and Groucho Marx.As an era of certainty comes crashing down around their ears and an unpredictable future commences, these folks are mostly just trying to pursue their lives. Sometimes they manage to catch up; sometimes it's their lives that pursue them.Meanwhile, the author is up to his usual business. Characters stop what they're doing to sing what are for the most part stupid songs. Strange sexual practices take place. Obscure languages are spoken, not always idiomatically. Contrary-to-the-fact occurrences occur. If it is not the world, it is what the world might be with a minor adjustment or two. According to some, this is one of the main purposes of fiction.Let the reader decide, let the reader beware. Good luck.--Thomas PynchonAbout the Author:Thomas Pynchon is the author of V., The Crying of Lot 49, Gravity's Rainbow, Slow Learner, a collection of short stories, Vineland and, most recently, Mason and Dixon. He received the National Book Award for Gravity's Rainbow in 1974.",
 "Charles Mason (1728-1786) and Jeremiah Dixon (1733-1779) were the British surveyors best remembered for running the boundary between Pennsylvania and Maryland that we know today as the Mason-Dixon Line. Here is their story as re-imagined by Thomas Pynchon, featuring Native Americans and frontier folk, ripped bodices, naval warfare, conspiracies erotic and political, major caffeine abuse. We follow the mismatch'd pair—one rollicking, the other depressive; one Gothic, the other pre-Romantic—from their first journey together to the Cape of Good Hope, to pre-Revolutionary America and back, through the strange yet redemptive turns of fortune in their later lives, on a grand tour of the Enlightenment's dark hemisphere, as they observe and participate in the many opportunities for insanity presented them by the Age of Reason.",
 "Winner of the 1973 National Book Award, Gravity's Rainbow is a postmodern epic, a work as exhaustively significant to the second half of the 20th century as Joyce's Ulysses was to the first. Its sprawling, encyclopedic narrative, and penetrating analysis of the impact of technology on society make it an intellectual tour de force.",
 "First published in 1979, Joan Didion's The White Album records indelibly the upheavals and aftermaths of the 1960s. Examining key events, figures, and trends of the era—including Charles Manson, the Black Panthers, and the shopping mall—through the lens of her own spiritual confusion, Joan Didion helped to define mass culture as we now understand it. Written with a commanding sureness of tone and linguistic precision, The White Album is a central text of American reportage and a classic of American autobiography.",
 'Writing with the telegraphic swiftness and microscopic sensitivity that have made her one of our most distinguished journalists, Joan Didion creates a shimmering novel of innocence and evil.A Book of Common Prayer is the story of two American women in the derelict Central American nation of Boca Grande. Grace Strasser-Mendana controls much of the country\'s wealth and knows virtually all of its secrets; Charlotte Douglas knows far too little. "Immaculate of history, innocent of politics," she has come to Boca Grande vaguely and vainly hoping to be reunited with her fugitive daughter. As imagined by Didion, her fate is at once utterly particular and fearfully emblematic of an age of conscienceless authority and unfathomable violence.',
 "The first nonfiction work by one of the most distinctive prose stylists of our era, Joan Didion's Slouching Towards Bethlehem remains, decades after its first publication, the essential portrait of America—particularly California—in the sixties.It focuses on such subjects as John Wayne and Howard Hughes, growing up a girl in California, ruminating on the nature of good and evil in a Death Valley motel room, and, especially, the essence of San Francisco's Haight-Ashbury, the heart of the counterculture.",
 "Inez Victor knows that the major casualty of the political life is memory. But the people around Inez have made careers out of losing track. Her senator husband wants to forget the failure of his last bid for the presidency. Her husband's handler would like the press to forget that Inez's father is a murderer. And, in 1975, the year in which much of this bitterly funny novel is set, America is doing its best to lose track of its one-time client, the lethally hemorrhaging republic of South Vietnam.As conceived by Joan Didion, these personages and events constitute the terminal fallout of democracy, a fallout that also includes fact-finding junkets, senatorial groupies, the international arms market, and the Orwellian newspeak of the political class. Moving deftly from Honolulu to Jakarta, between romance, farce, and tragedy, Democracy is a tour de force from a writer who can dissect an entire society with a single phrase.",
 'A ruthless dissection of American life in the late 1960s, Play It as It Lays captures the mood of an entire generation, the ennui of contemporary society reflected in spare prose that blisters and haunts the reader. Set in a place beyond good and evil - literally in Hollywood, Las Vegas, and the barren wastes of the Mojave Desert, but figuratively in the landscape of an arid soul - it remains more than three decades after its original publication a profoundly disturbing novel, riveting in its exploration of a woman and a society in crisis and stunning in the still-startling intensity of its prose.',
 'The remarkable, acclaimed series of interconnected detective novels – from the author of 4 3 2 1: A NovelThe New York Review of Books has called Paul Auster’s work “one of the most distinctive niches in contemporary literature.” Moving at the breathless pace of a thriller, this uniquely stylized triology of detective novels begins with City of Glass, in which Quinn, a mystery writer, receives an ominous phone call in the middle of the night. He’s drawn into the streets of New York, onto an elusive case that’s more puzzling and more deeply-layered than anything he might have written himself. In Ghosts, Blue, a mentee of Brown, is hired by White to spy on Black from a window on Orange Street. Once Blue starts stalking Black, he finds his subject on a similar mission, as well. In The Locked Room, Fanshawe has disappeared, leaving behind his wife and baby and nothing but a cache of novels, plays, and poems.This Penguin Classics Deluxe Edition includes an introduction from author and professor Luc Sante, as well as a pulp novel-inspired cover from Art Spiegelman, Pulitzer Prize-winning graphic artist of Maus and In the Shadow of No Towers.',
 'Nathan Glass has come to Brooklyn to die. Divorced, retired, estranged from his only daughter, the former life insurance salesman seeks only solitude and anonymity. Then Glass encounters his long-lost nephew, Tom Wood, who is working in a local bookstore—a far cry from the brilliant academic career Tom had begun when Nathan saw him last. Tom\'s boss is the colorful and charismatic Harry Brightman—a.k.a. Harry Dunkel—once the owner of a Chicago art gallery, whom fate has also brought to the "ancient kingdom of Brooklyn, New York." Through Tom and Harry, Nathan\'s world gradually broadens to include a new circle of acquaintances. He soon finds himself drawn into a scam involving a forged page of The Scarlet Letter, and begins to undertake his own literary venture, The Book of Human Folly, an account of "every blunder, every pratfall, every embarrassment, every idiocy, every foible, and every inane act I have committed during my long and checkered career as a man."\xa0The Brooklyn Follies is Paul Auster\'s warmest, most exuberant novel, a moving, unforgettable hymn to the glories and mysteries of ordinary human life.',
 'Marco Stanley Fogg is an orphan, a child of the sixties, a quester tirelessly seeking the key to his past, the answers to the ultimate riddle of his fate. As Marco sets out on a journey from the canyons of Manhattan to the deserts of Utah, he encounters a gallery of characters and a series of events as rich and surprising as any in modern fiction.Beginning during the summer that men first walked on the moon, and moving backward and forward in time to span three generations, Moon Palace is propelled by coincidence and memory, and illuminated by marvelous flights of lyricism and wit. Here is the most entertaining and moving novel yet from an author well known for his breathtaking imagination.',
 "Mr. Bones, the canine hero of Paul Auster's astonishing new book, is the sidekick and confidant of Willy G. Christmas, a brilliant and troubled homeless man from Brooklyn. As Willy's body slowly expires, he sets off with Mr. Bones for Baltimore in search of his high school English teacher and a new home for his companion. Mr. Bones is our witness during their journey, and out of his thoughts, Paul Auster has spun one of the richest, most compelling tales in American fiction.",
 "\n\nA man pieces together clues to his past--and the identity of his captors--in this fantastic, labyrinthine novel\n\nAn old man awakens, disoriented, in an unfamiliar chamber. With no memory of who he is or how he has arrived there, he pores over the relics on the desk, examining the circumstances of his confinement and searching his own hazy mind for clues.\nDetermining that he is locked in, the man--identified only as Mr. Blank--begins reading a manuscript he finds on the desk, the story of another prisoner, set in an alternate world the man doesn't recognize. Nevertheless, the pages seem to have been left for him, along with a haunting set of photographs. As the day passes, various characters call on the man in his cell--vaguely familiar people, some who seem to resent him for crimes he can't remember--and each brings frustrating hints of his identity and his past. All the while an overhead camera clicks and clicks, recording his movements, and a microphone records every sound in the room. Someone is watching.\nBoth chilling and poignant, Travels in the Scriptorium is vintage Auster: mysterious texts, fluid identities, a hidden past, and, somewhere, an obscure tormentor. And yet, as we discover during one day in the life of Mr. Blank, his world is not so different from our own.\n",
 'New York Times\xa0bestselling author Paul Auster (The New York Trilogy) opens Leviathan with the tearing of a bomb explosion and the death of one Benjamin Sachs. Ben’s one-time best friend, Peter Aaron, begins to retrospectively investigate the transformation that led Ben from his enviable stable life, to one of a recluse. Both were once intelligent, yet struggling novelists until Ben’s near-death experience falling from a fire escape triggers a tumble in which he becomes withdrawn and disturbed, living alone and building bombs in a far-off cabin. That is, until he mysteriously disappears, leaving behind only a manuscript titled Leviathan, pages rustling in the wind.',
 "Brilliant, illuminating, and immensely absorbing, Collapse is destined to take its place as one of the essential books of our time, raising the urgent question: How can our world best avoid committing ecological suicide?In his million-copy bestseller Guns, Germs, and Steel, Jared Diamond examined how and why Western civilizations developed the technologies and immunities that allowed them to dominate much of the world. Now in this brilliant companion volume, Diamond probes the other side of the equation: What caused some of the great civilizations of the past to collapse into ruin, and what can we learn from their fates?As in Guns, Germs, and Steel, Diamond weaves an all-encompassing global thesis through a series of fascinating historical-cultural narratives. Moving from the Polynesian cultures on Easter Island to the flourishing American civilizations of the Anasazi and the Maya and finally to the doomed Viking colony on Greenland, Diamond traces the fundamental pattern of catastrophe. Environmental damage, climate change, rapid population growth, and unwise political choices were all factors in the demise of these societies, but other societies found solutions and persisted. Similar problems face us today and have already brought disaster to Rwanda and Haiti, even as China and Australia are trying to cope in innovative ways. Despite our own society's apparently inexhaustible wealth and unrivaled political power, ominous warning signs have begun to emerge even in ecologically robust areas like Montana.Brilliant, illuminating, and immensely absorbing, Collapse is destined to take its place as one of the essential books of our time, raising the urgent question: How can our world best avoid committing ecological suicide?",
 'Once we bowled in leagues, usually after work--but no longer. This seemingly small phenomenon symbolizes a significant social change that Robert Putnam has identified in this brilliant volume, which The Economist hailed as "a prodigious achievement."Drawing on vast new data that reveal Americans\' changing behavior, Putnam shows how we have become increasingly disconnected from one another and how social structures--whether they be PTA, church, or political parties--have disintegrated. Until the publication of this groundbreaking work, no one had so deftly diagnosed the harm that these broken bonds have wreaked on our physical and civic health, nor had anyone exalted their fundamental power in creating a society that is happy, healthy, and safe.Like defining works from the past, such as The Lonely Crowd and The Affluent Society,  and like the works of C. Wright Mills and Betty Friedan, Putnam\'s Bowling Alone has identified a central crisis at the heart of our society and suggests what we can do.',
 "Written by Nikola Tesla at the age of sixty-three, this autobiography is a fascinating glimpse into the interior life of a man who may have contributed more to the fields of electricity, radio, and television than any other person living or dead, a man certainly possessed of genius and one who some consider the most important man of the twentieth century.My Inventions is a firsthand account not only of the art and science behind the conception, execution, and reception of Tesla's most famous inventions but of his early life and first creative efforts as well.",
 'Building on the national bestselling success of Sex, Drugs, and Cocoa Puffs , preeminent pop culture writer Chuck Klosterman unleashes his best book yet—the story of his cross-country tour of sites where rock stars have died and his search for love, excitement, and the meaning of death.For 6,557 miles, Chuck Klosterman thought about dying. He drove a rental car from New York to Rhode Island to Georgia to Mississippi to Iowa to Minneapolis to Fargo to Seattle, and he chased death and rock ‘n’ roll all the way. Within the span of twenty-one days, Chuck had three relationships end—one by choice, one by chance, and one by exhaustion. He snorted cocaine in a graveyard. He walked a half-mile through a bean field. A man in Dickinson, North Dakota, explained to him why we have fewer windmills than we used to. He listened to the KISS solo albums and the Rod Stewart box set. At one point, poisonous snakes became involved. The road is hard. From the Chelsea Hotel to the swampland where Lynyrd Skynyrd’s plane went down to the site where Kurt Cobain blew his head off, Chuck explored every brand of rock star demise. He wanted to know why the greatest career move any musician can make is to stop breathing...and what this means for the rest of us.',
 'Countless writers and artists have spoken for a generation, but no one has done it quite like Chuck Klosterman. With an exhaustive knowledge of popular culture and an almost effortless ability to spin brilliant prose out of unlikely subject matter, Klosterman attacks the entire spectrum of postmodern America: reality TV, Internet porn, Pamela Anderson, literary Jesus freaks, and the real difference between apples and oranges (of which there is none). And don\'t even get him started on his love life and the whole Harry-Met-Sally situation. Whether deconstructing Saved by the Bell episodes or the artistic legacy of Billy Joel, the symbolic importance of The Empire Strikes Back or the Celtics/Lakers rivalry, Chuck will make you think, he\'ll make you laugh, and he\'ll drive you insane -- usually all at once. Sex, Drugs, and Cocoa Puffs is ostensibly about art, entertainment, infotainment, sports, politics, and kittens, but -- really -- it\'s about us. All of us. As Klosterman realizes late at night, in the moment before he falls asleep, "In and of itself, nothing really matters. What matters is that nothing is ever \'in and of itself.\'" Read to believe.',
 "Robert M. Pirsig's Zen & the Art of Motorcycle Maintenance is an examination of how we live, a meditation on how to live better set around the narration of a summer motorcycle trip across America's Northwest, undertaken by a father & his young son.",
 'With a new Afterword to the 2002 edition, No Logo employs journalistic savvy and personal testament to detail the insidious practices and far-reaching effects of corporate marketing—and the powerful potential of a growing activist sect that will surely alter the course of the 21st century. First published before the World Trade Organization protests in Seattle, this is an infuriating, inspiring, and altogether pioneering work of cultural criticism that investigates money, marketing, and the anti-corporate movement.As global corporations compete for the hearts and wallets of consumers who not only buy their products but willingly advertise them from head to toe—witness today\'s schoolbooks, superstores, sporting arenas, and brand-name synergy—a new generation has begun to battle consumerism with its own best weapons. In this provocative, well-written study, a front-line report on that battle, we learn how the Nike swoosh has changed from an athletic status-symbol to a metaphor for sweatshop labor, how teenaged McDonald\'s workers are risking their jobs to join the Teamsters, and how "culture jammers" utilize spray paint, computer-hacking acumen, and anti-propagandist wordplay to undercut the slogans and meanings of billboard ads (as in "Joe Chemo" for "Joe Camel").No Logo will challenge and enlighten students of sociology, economics, popular culture, international affairs, and marketing."This book is not another account of the power of the select group of corporate Goliaths that have gathered to form our de facto global government. Rather, it is an attempt to analyze and document the forces opposing corporate rule, and to lay out the particular set of cultural and economic conditions that made the emergence of that opposition inevitable." —Naomi Klein, from her Introduction',
 "In Russia's struggle with Napoleon, Tolstoy saw a tragedy that involved all mankind. War and Peace broadly focuses on Napoleon’s invasion of Russia in 1812 and follows three of the most well-known characters in literature: Pierre Bezukhov, the illegitimate son of a count who is fighting for his inheritance and yearning for spiritual fulfillment; Prince Andrei Bolkonsky, who leaves his family behind to fight in the war against Napoleon; and Natasha Rostov, the beautiful young daughter of a nobleman who intrigues both men.As Napoleon’s army invades, Tolstoy brilliantly follows characters from diverse backgrounds—peasants and nobility, civilians and soldiers—as they struggle with the problems unique to their era, their history, and their culture. And as the novel progresses, these characters transcend their specificity, becoming some of the most moving—and human—figures in world literature.Tolstoy gave his personal approval to this translation, published here in a new single volume edition, which includes an introduction by Henry Gifford, and Tolstoy's important essay `Some Words about War and Peace'.",
 'Banned in Russia, Tolstoy\'s The Kingdom of God Is Within You was deemed a threat to church and state. The culmination of a lifetime\'s thought, it espouses a commitment to Jesus\'s message of turning the other cheek. In a bold and original manner, Tolstoy shows his readers clearly why they must reject violence of any sort—even that sanctioned by the state or the church—and urges them to look within themselves to find the answers to questions of morality.In 1894, one of the first English translations of this book found its way into the hands of a young Gandhi. Inspired by its message of nonresistance to evil, the Mahatma declared it a source of "independent thinking, profound morality, and truthfulness." Much of this work\'s emotional and moral appeal lies in its emphasis on fair treatment of the poor and working class. Its view of Christianity, not as a mystic religion but as a workable philosophy originating from the words of a remarkable teacher, extends its appeal to secular and religious readers alike.',
 'This is the story of a man who said that he would stop the motor of the world and did. Was he a destroyer or the greatest of liberators?Why did he have to fight his battle, not against his enemies, but against those who needed him most, and his hardest battle against the woman he loved? What is the world’s motor — and the motive power of every man? You will know the answer to these questions when you discover the reason behind the baffling events that play havoc with the lives of the characters in this story. Tremendous in its scope, this novel presents an astounding panorama of human life — from the productive genius who becomes a worthless playboy — to the great steel industrialist who does not know that he is working for his own destruction — to the philosopher who becomes a pirate — to the composer who gives up his career on the night of his triumph — to the woman who runs a transcontinental railroad — to the lowest track worker in her Terminal tunnels. You must be prepared, when you read this novel, to check every premise at the root of your convictions.This is a mystery story, not about the murder — and rebirth — of man’s spirit. It is a philosophical revolution, told in the form of an action thriller of violent events, a ruthlessly brilliant plot structure and an irresistible suspense. Do you say this is impossible? Well, that is the first of your premises to check.',
 "Ayn Rand here sets forth the moral principles of Objectivism, the philosophy that holds human life--the life proper to a rational being--as the standard of moral values and regards altruism as incompatible with man's nature, with the creative requirements of his survival, and with a free society.",
 'Anthem is Ayn Rand\'s classic tale of a dystopian future of the great "We"—a world that deprives individuals of a name or independence—that anticipates her later masterpieces, The Fountainhead and Atlas Shrugged. They existed only to serve the state. They were conceived in controlled Palaces of Mating. They died in the Home of the Useless. From cradle to grave, the crowd was one—the great WE.In all that was left of humanity, there was only one man who dared to think, seek, and love. He lived in the dark ages of the future. In a loveless world, he dared to love the woman of his choice. In an age that had lost all trace of science and civilization, he had the courage to seek and find knowledge. But these were not the crimes for which he would be hunted. He was marked for death because he had committed the unpardonable sin: He had stood forth from the mindless human herd. He was a man alone. He had rediscovered the lost and holy word—I."I worship individuals for their highest possibilities as individuals, and I loathe humanity, for its failure to live up to these possibilities."\u2003—Ayn Rand',
 "Ayn Rand's first published novel, a timeless story that explores the struggles of the individual against the state in Soviet Russia.First published in 1936, 'We the Living' portrays the impact of the Russian Revolution on three human beings who demand the right to live their own lives and pursue their own happiness. It tells of a young woman’s passionate love, held like a fortress against the corrupting evil of a totalitarian state.'We the Living' is not a story of politics, but of the men and women who have to struggle for existence behind the Red banners and slogans. It is a picture of what those slogans do to human beings. What happens to the defiant ones? What happens to those who succumb? Against a vivid panorama of political revolution and personal revolt, Ayn Rand shows what the theory of socialism means in practice.Ayn Rand  (1905–1982) was born in pre-revolutionary St. Petersburg to a prosperous Jewish family as Alisa Rosenbaum. When the Bolsheviks requisitioned her family's business, they fled to the Crimea, and she later moved to America as soon as she was offered the chance. After beginning her writing career with screenplays, she published the novel \n'We the Living'\n in 1936. Her status was later established with \n'The Fountainhead' (1943)\n and her magnus opus, 'Atlas Shrugged' (1957). Also a prolific non-fiction writer, as well as the founder of the philosophical school of Objectivism, she has had an unequivocal impact on both literature and culture, regardless of one's perspective of her works.",
 'Sailing Alone Around the Room, by America’s Poet Laureate, Billy Collins, contains both new poems and a generous gathering from his earlier collections The Apple That Astonished Paris, Questions About Angels, The Art of Drowning, and Picnic, Lightning. These poems show Collins at his best, performing the kinds of distinctive poetic maneuvers that have delighted and fascinated so many readers. They may begin in curiosity and end in grief; they may start with irony and end with lyric transformation; they may, and often do, begin with the everyday and end in the infinite. Possessed of a unique voice that is at once plain and melodic, Billy Collins has managed to enrich American poetry while greatly widening the circle of its audience.',
 "Presents the author's thesis that processed foods and drugs approved by the FDA can be harmful to consumers' health and offers advice on the use of alternative therapies and natural cures to treat and prevent illnesses and disabilities.",
 'The author releases the specific product brand names, previously censored by the U.S. Government, that he believes can be used to prevent, treat, and cure disease, and he discusses his covert involvement with the food industry and various governments.',
 'The classical novel (and basis for the acclaimed film) now in a new editionIntroduction by Kevin BakerThe Natural, Bernard Malamud\'s first novel, published in 1952, is also the first—and some would say still the best—novel ever written about baseball. In it Malamud, usually appreciated for his unerring portrayals of postwar Jewish life, took on very different material—the story of a superbly gifted "natural" at play in the fields of the old daylight baseball era—and invested it with the hardscrabble poetry, at once grand and altogether believable, that runs through all his best work. Four decades later, Alfred Kazin\'s comment still holds true: "Malamud has done something which—now that he has done it!—looks as if we have been waiting for it all our lives. He has really raised the whole passion and craziness and fanaticism of baseball as a popular spectacle to its ordained place in mythology."',
 'In what is perhaps her richest and most deeply searching novel, Anne Tyler gives us a story about what it is to be an American, and about Maryam Yazdan, who after thirty-five years in this country must finally come to terms with her “outsiderness.”Two families, who would otherwise never have come together, meet by chance at the Baltimore airport—the Donaldsons, a very American couple, and the Yazdans, Maryam’s fully assimilated son and his attractive Iranian American wife. Each couple is awaiting the arrival of an adopted infant daughter from Korea. After the babies from distant Asia are delivered, Bitsy Donaldson impulsively invites the Yazdans to celebrate with an “arrival party,” an event that is repeated every year as the two families become more deeply intertwined.Even independent-minded Maryam is drawn in. But only up to a point. When she finds herself being courted by one of the Donaldson clan, a good-hearted man of her vintage, recently widowed and still recovering from his wife’s death, suddenly all the values she cherishes—her traditions, her privacy, her otherness—are threatened. Somehow this big American takes up so much space that the orderly boundaries of her life feel invaded.A luminous novel brimming with subtle, funny, and tender observations that cast a penetrating light on the American way as seen from two perspectives, those who are born here and those who are still struggling to fit in.',
 'In an astonishing feat of narrative invention, our most ambitious novelist imagines an alternate version of American history. In 1940 Charles A. Lindbergh, heroic aviator and rabid isolationist, is elected President. Shortly thereafter, he negotiates a cordial "understanding" with Adolf Hitler, while the new government embarks on a program of folksy anti-Semitism.For one boy growing up in Newark, Lindbergh\'s election is the first in a series of ruptures that threatens to destroy his small, safe corner of America - and with it, his mother, his father, and his older brother.(back cover)',
 "Jon Stewart, host of the Emmy and Peabody Award-winning The Daily Show, and his coterie of patriots, deliver a hilarious look at American government.American-style democracy is the world's most beloved form of government, which explains why so many other nations are eager for us to impose it on them. But what is American democracy? In America (The Book), Jon Stewart and The Daily Show writing staff offer their insights into our unique system of government, dissecting its institutions, explaining its history and processes, and exploring the reasons why concepts like one man, one vote, government by the people, and every vote counts have become such popular urban myths. Topics include: Ancient Rome: The First Republicans; The Founding Fathers: Young, Gifted, and White; The Media: Can it Be Stopped?; and more!",
 "In these nineteen whip-smart essays, Jon Stewart takes on politics, religion, and celebrity with seething irreverent wit, a brilliant sense of timing, and a palate for the absurd -- and these one-of-a-kind forays into his hilarious world will expose you to all it's wickedly naked truths.",
 "Collected here are twenty-six of Gabriel Garcia Marquez's most brilliant and enchanting short stories, presented in the chronological order of their publication in Spanish from three volumes: Eyes of a Blue Dog, Big Mama's Funeral, and The Incredible and Sad Tale of lnnocent Eréndira and Her Heartless Grandmother. Combining mysticism, history, and humor, the stories in this collection span more than two decades, illuminating the development of Marquez's prose and exhibiting the themes of family, poverty, and death that resound throughout his fiction.",
 'Memories of My Melancholy Whores is Gabriel García Márquez’s first work of fiction in ten years, written at the height of his powers, the Spanish edition of which Ilan Stavans called, “Masterful. Erotic. As hypnotizing as it is disturbing” (Los Angeles Times).On the eve of his ninetieth birthday, our unnamed protagonist–an undistinguished journalist and lifelong bachelor–decides to give himself “the gift of a night of wild love with an adolescent virgin.”The girl, whom an old madam procures for him, is splendidly young, with the silent power of a sleeping beauty. The night of love blossoms into a transforming year. It is a year in which he relives, in a rush of memories, his lifetime of (paid-for) sexual adventures and experiences a revelation that brings him to the edge of dying–not of old age, but, at long last, of uncorrupted love. Memories of My Melancholy Whores is a brilliant gem by the master storyteller.',
 'New York Times Bestseller A Best Book of the Chicago Tribune , Christian Science Monitor , Rocky Mountain News "The Cubs against the Cardinals in the heat of August and of a pennant race—this is baseball at it\'s best." —George F. Will, author of Men at The Craft of Baseball A thrilling deep dive into the strategic and emotional complexities of baseball from the acclaimed author of Friday Night Lights Three Nights in August captures baseball in its quintessential the three-game series. As the St. Louis Cardinals battle their archrival Chicago Cubs, we see the dugout through the eyes of legendary manager Tony La Russa, considered by many to be the shrewdest mind in the game today. In his twenty-seven years of managing, La Russa has been named Manager of the Year a record-making five times and now stands as the third-winningest baseball manager of all time. A great leader, he\'s built his success on the conviction that ball games are won not only by the numbers but also by the hearts and minds of those who play. Drawing on unprecedented access to a major league manager and his team, Buzz Bissinger brings a revelatory intimacy to baseball and offers some surprising observations. Bissinger also furthers the debate on major league managerial style and strategy in his provocative afterword.',
 'Cryptonomicon zooms all over the world, careening conspiratorially back and forth between two time periods—World War II and the present. Our 1940s heroes are the brilliant mathematician Lawrence Waterhouse, crypt analyst extraordinaire, and gung-ho, morphine-addicted marine Bobby Shaftoe. They\'re part of Detachment 2702, an Allied group trying to break Axis communication codes while simultaneously preventing the enemy from figuring out that their codes have been broken. Their job boils down to layer upon layer of deception. Dr. Alan Turing is also a member of 2702, and he explains the unit\'s strange workings to Waterhouse. "When we want to sink a convoy, we send out an observation plane first... Of course, to observe is not its real duty—we already know exactly where the convoy is. Its real duty is to be observed... Then, when we come round and sink them, the Germans will not find it suspicious."All of this secrecy resonates in the present-day story line, in which the grandchildren of the WWII heroes—inimitable programming geek Randy Waterhouse and the lovely and powerful Amy Shaftoe—team up to help create an offshore data haven in Southeast Asia and maybe uncover some gold once destined for Nazi coffers. To top off the paranoiac tone of the book, the mysterious Enoch Root, key member of Detachment 2702 and the Societas Eruditorum, pops up with an unbreakable encryption scheme left over from WWII to befuddle the 1990s protagonists with conspiratorial ties.',
 "In the year 1689, a cabal of Barbary galley slaves -- including one Jack Shaftoe, aka King of the Vagabonds, aka Half-Cocked Jack -- devises a daring plan to win freedom and fortune. A great adventure ensues -- a perilous race for an enormous prize of silver ... nay, gold ... nay, legendary gold. In Europe, the exquisite and resourceful Eliza, Countess de la Zeur, is stripped of her immense personal fortune by France's most dashing privateer. Penniless and at risk from those who desire either her or her head (or both), she is caught up in a web of international intrigue, even as she desperately seeks the return of her most precious possession. Meanwhile, Newton and Leibniz continue to propound their grand theories as their infamous rivalry intensifies, stubborn alchemy does battle with the natural sciences, dastardly plots are set in motion ... and Daniel Waterhouse seeks passage to the Massachusetts colony in hopes of escaping the madness into which his world has descended. This P.S. edition features an extra 16 pages of insights into the book, including author interviews, recommended reading, and more.",
 'Quicksilver is the story of Daniel Waterhouse, fearless thinker and conflicted Puritan, pursuing knowledge in the company of the greatest minds of Baroque-era Europe, in a chaotic world where reason wars with the bloody ambitions of the mighty, and where catastrophe, natural or otherwise, can alter the political landscape overnight.It is a chronicle of the breathtaking exploits of "Half-Cocked Jack" Shaftoe--London street urchin turned swashbuckling adventurer and legendary King of the Vagabonds--risking life and limb for fortune and love while slowly maddening from the pox.And it is the tale of Eliza, rescued by Jack from a Turkish harem to become spy, confidante, and pawn of royals in order to reinvent Europe through the newborn power of finance.A gloriously rich, entertaining, and endlessly inventive novel that brings a remarkable age and its momentous events to vivid life, Quicksilver is an extraordinary achievement from one of the most original and important literary talents of our time.And it\'s just the beginning...(back cover)This P.S. edition includes 16 pages of supplementary materials.Cover design by Richard L. AquanCover illustration from the Mary Evans Picture Library; painting of Great Fire of London on stepback',
 "Sangamon Taylor's a New Age Sam Spade who sports a wet suit instead of a trench coat and prefers Jolt from the can to Scotch on the rocks. He knows about chemical sludge the way he knows about evil -- all too intimately. And the toxic trail he follows leads to some high and foul places. Before long Taylor's house is bombed, his every move followed, he's adopted by reservation Indians, moves onto the FBI's most wanted list, makes up with his girlfriend, and plays a starring role in the near-assassination of a presidential candidate. Closing the case with the aid of his burnout roomate, his tofu-eating comrades, three major networks, and a range of unconventional weaponry, Sangamon Taylor pulls off the most startling caper in Boston Harbor since the Tea Party. As he navigates this ecological thriller with hardboiled wit and the biggest outboard motor he can get his hands on, Taylor reveals himself as one of the last of the white-hatted good guys in a very toxic world.",
 "The Diamond Age: Or, a Young Lady's Illustrated Primer is a postcyberpunk novel by Neal Stephenson. It is to some extent a science fiction coming-of-age story, focused on a young girl named Nell, and set in a future world in which nanotechnology affects all aspects of life. The novel deals with themes of education, social class, ethnicity, and the nature of artificial intelligence.",
 "In reality, Hiro Protagonist delivers pizza for Uncle Enzo's CosoNostra Pizza Inc., but in the Metaverse he's a warrior prince. Plunging headlong into the enigma of a new computer virus that's striking down hackers everywhere, he races along the neon-lit streets on a search-and-destroy mission for the shadowy virtual villain threatening to bring about infocalypse. Snow Crash is a mind-altering romp through a future America so bizarre, so outrageous… you'll recognize it immediately.",
 'The ultimate guide to human-centered design Even the smartest among us can feel inept as we fail to figure out which light switch or oven burner to turn on, or whether to push, pull, or slide a door. The fault, argues this ingenious -- even liberating -- book, lies not in ourselves, but in product design that ignores the needs of users and the principles of cognitive psychology. The problems range from ambiguous and hidden controls to arbitrary relationships between controls and functions, coupled with a lack of feedback or other assistance and unreasonable demands on memorization. The Design of Everyday Things shows that good, usable design is possible. The rules are make things visible, exploit natural relationships that couple function and control, and make intelligent use of constraints. The guide the user effortlessly to the right action on the right control at the right time. The Design of Everyday Things is a powerful primer on how -- and why -- some products satisfy customers while others only frustrate them.',
 "Paulo Coelho's masterpiece tells the mystical story of Santiago, an Andalusian shepherd boy who yearns to travel in search of a worldly treasure. His quest will lead him to riches far different, and far more satisfying, listening to our hearts, of recognizing opportunity and learning to read the omens strewn along life's path, and, most importantly, to follow our dreams.",
 'Accompanied by their bodyguard, Alex Louis Armstrong, our heroes seek out their closest childhood friend, mechanic Winry Rockbell, to fix their battered "auto-mail" bodyparts. Soon their quest for the Philosopher\'s Stone takes them to the great central library, where the Stone\'s formula may be hidden...if the mysterious figure named Lust doesn\'t get there first! But the secret of the Philosopher\'s Stone may be even more frightening than the beings who guard it...',
 "Breaking the laws of nature is a serious crime!In an alchemical ritual gone wrong, Edward Elric lost his arm and his leg, and his brother Alphonse became nothing but a soul in a suit of armor. Equipped with mechanical “auto-mail” limbs, Edward becomes a state alchemist, seeking the one thing that can restore his and his brother’s bodies...the legendary Philosopher’s Stone. the mystical power to alter the natural world; something between magic, art and science. When two brothers, Edward and Alphonse Elric, dabbled in this power to grant their dearest wish, one of them lost an arm and a leg…and the other became nothing but a soul locked into a body of living steel. Now Edward is an agent of the government, a slave of the military-alchemical complex, using his unique powers to obey orders…even to kill. Except his powers aren't unique. The world has been ravaged by the abuse of alchemy. And in pursuit of the ultimate alchemical treasure, the Philosopher's Stone, their enemies are even more ruthless than they are…",
 '\n“I got you to look after me, and you got me to look after you, and that\'s why.”\nThey are an unlikely pair: George is "small and quick and dark of face"; Lennie, a man of tremendous size, has the mind of a young child. Yet they have formed a "family," clinging together in the face of loneliness and alienation. Laborers in California\'s dusty vegetable fields, they hustle work when they can, living a hand-to-mouth existence. But George and Lennie have a plan: to own an acre of land and a shack they can call their own.While the powerlessness of the laboring class is a recurring theme in Steinbeck\'s work of the late 1930s, he narrowed his focus when composing Of Mice and Men, creating an intimate portrait of two men facing a world marked by petty tyranny, misunderstanding, jealousy, and callousness. But though the scope is narrow, the theme is universal: a friendship and a shared dream that makes an individual\'s existence meaningful.A unique perspective on life\'s hardships, this story has achieved the status of timeless classic due to its remarkable success as a novel, a Broadway play, and three acclaimed films.',
 "A bizarre chain of events begins when sixteen unlikely people gather for the reading of Samuel W. Westing's will. And though no one knows why the eccentric, game-loving millionaire has chosen a virtual stranger—and a possible murderer—to inherit his vast fortune, one thing's for sure: Sam Westing may be dead ... but that won't stop him from playing one last game!",
 'A literary sensation and runaway bestseller, this brilliant novel presents with seamless authenticity and exquisite lyricism the true confessions of one of Japan\'s most celebrated geisha.In "Memoirs of a Geisha," we enter a world where appearances are paramount; where a girl\'s virginity is auctioned to the highest bidder; where women are trained to beguile the most powerful men; and where love is scorned as illusion. It is a unique and triumphant work of fiction - at once romantic, erotic, suspenseful - and completely unforgettable.',
 "When a world, renowned scientist is found brutally murdered in a Swiss research facility, a Harvard professor, Robert Langdon, is summoned to identify the mysterious symbol seared onto the dead man's chest. His baffling conclusion: it is the work of the Illuminati, a secret brotherhood presumed extinct for nearly four hundred years - reborn to continue their bitter vendetta against their sworn enemy, the Catholic church.In Rome, the college of cardinals assembles to elect a new pope. Yet somewhere within the walls of the Vatican, an unstoppable bomb of terrifying power relentlessly counts down to oblivion. While the minutes tick away, Langdon joins forces with Vittoria Vetra, a beautiful and mysterious Italian scientist, to decipher the labyrinthine trail of ancient symbols that snakes across Rome to the long-forgotten Illuminati lair - a secret refuge wherein lies the only hope for the Vatican.But with each revelation comes another twist, another turn in the plot, which leaves Langdon and Vetra reeling and at the mercy of a seemingly invisible enemy...",
 'ISBN 9780307277671 moved to this edition.While in Paris, Harvard symbologist Robert Langdon is awakened by a phone call in the dead of the night. The elderly curator of the Louvre has been murdered inside the museum, his body covered in baffling symbols. As Langdon and gifted French cryptologist Sophie Neveu sort through the bizarre riddles, they are stunned to discover a trail of clues hidden in the works of Leonardo da Vinci—clues visible for all to see and yet ingeniously disguised by the painter.Even more startling, the late curator was involved in the Priory of Sion—a secret society whose members included Sir Isaac Newton, Victor Hugo, and Da Vinci—and he guarded a breathtaking historical secret. Unless Langdon and Neveu can decipher the labyrinthine puzzle—while avoiding the faceless adversary who shadows their every move—the explosive, ancient truth will be lost forever.',
 "A shocking scientific discovery. A conspiracy of staggering brilliance. A thriller unlike any you've ever read....When a NASA satellite discovers an astonishingly rare object buried deep in the Arctic ice, the floundering space agency proclaims a much-needed victory—a victory with profound implications for NASA policy and the impending presidential election. To verify the authenticity of the find, the White House calls upon the skills of intelligence analyst Rachel Sexton. Accompanied by a team of experts, including the charismatic scholar Michael Tolland, Rachel travels to the Arctic and uncovers the unthinkable: evidence of scientific trickery—a bold deception that threatens to plunge the world into controversy. But before she can warn the President, Rachel and Michael are ambushed by a deadly team of assassins. Fleeing for their lives across a desolate and lethal landscape, their only hope for survival is to discover who is behind this masterful plot. The truth, they will learn, is the most shocking deception of all.",
 "The incredible national bestseller that is changing people's lives -- and increasing their net worth!  CAN YOU SPOT THE MILLIONAIRE NEXT DOOR?  Who are the rich in this country? What do they do? Where do they shop? What do they drive? How do they invest? Where did their ancestors come from? How did they get rich? Can I ever become one of them?  Get the answers in The Millionaire Next Door, the never-before-told story about wealth in America. You'll be surprised at what you find out....",
 'BOOKS',
 'Trump reveals the business secrets that have made him America’s foremost deal maker!\xa0“I like thinking big. I always have. To me it’s very simple: If you’re going to be thinking anyway, you might as well think big.”—Donald J. Trump\xa0 Here is Trump in action—how he runs his business and how he runs his life—as he meets the people he needs to meet, chats with family and friends, clashes with enemies, and changes the face of the New York City skyline. But even a maverick plays by rules, and Trump has formulated eleven guidelines for success. He isolates the common elements in his greatest deals; he shatters myths; he names names, spells out the zeros, and fully reveals the deal-maker’s art. And throughout, Trump talks—really talks—about how he does it. Trump: The Art of the Deal is an unguarded look at the mind of a brilliant entrepreneur and an unprecedented education in the practice of deal-making. It’s the most streetwise business book there is—and the ultimate read for anyone interested in achieving money and success, and knowing the man behind the spotlight. \xa0',
 'First he made five billion dollars.Then he made The Apprentice .Now The Donald shows you how to make a fortune, Trump style.HOW TO GET RICHReal estate titan, bestselling author, and TV impresario Donald J. Trump reveals the secrets of his success in this candid and unprecedented book of business wisdom and advice. Over the years, everyone has urged Trump to write on this subject, but it wasn’t until NBC and executive producer Mark Burnett asked him to star in The Apprentice that he realized just how hungry people are to learn how great personal wealth is created and first-class businesses are run. Thousands applied to be Trump’s apprentice, and millions have been watching the program, making it the highest rated debut of the season.In How To Get Rich , Trump tells all–about the lessons learned from The Apprentice , his real estate empire, his position as head of the 20,000-member Trump Organization, and his most important role, as a father who has successfully taught his children the value of money and hard work.With his characteristic brass and smarts, Trump offers insights on how toinvest wiselyimpress the boss and get a raisemanage a business efficientlyhire, motivate, and fire employeesnegotiate anythingmaintain the quality of your brandthink big and live largePlus, The Donald tells all on the art of the hair!With his luxury buildings, award-winning golf courses, high-stakes casinos, and glamorous beauty pageants, Donald J. Trump is one of a kind in American business. Every day, he lives the American dream. Now he shows you how it’s done, in this rollicking, inspirational, and illuminating behind-the-scenes story of invaluable lessons and rich rewards.From the Hardcover edition.',
 "The host of the hit reality show The Apprentice presents an invaluable collection of grounded, hard-hitting advice on business success, from people who have made it to the boss’s chair at some of America’s most thriving companies.How can you find the way to the top?Ask people who are already there.Because you can’t know it all. No matter how smart you are, no matter how comprehensive your education, no matter how wide-ranging your business experience, there’s simply no way to acquire all the wisdom you need to make your business flourish. You need to learn from those who have blazed a trail before you.Donald Trump has asked many of the brightest, most successful businesspeople he knows—and some he doesn't know—to answer this What's the best business advice you ever received? The result is a compelling resource of wisdom and wit that reveals how some of the most accomplished people conduct their personal and business affairs, giving an inside look into the secrets of corporate success. But the advice doesn’t only come from the upper echelons of the Fortune 500. Thoughts poured in from executives at thriving companies large and small, ranging from well-known icons such as Staples, American Airlines, Lillian Vernon, and Boeing to family-run operations like Orleans Homebuilders and Carlson Companies.The Way to the Top brings together the core ideas that have guided more than 150 of today’s top businesspeople, offering a range of inspiring and practical advice on making good decisions, conducting yourself appropriately, developing your career, communicating with others, leading a team effectively, and much more. Some of the entries are simple entreaties, some portray intriguing vignettes, and others outline lists of guiding principles; all are illuminating, instructive, and insightful.A telling to-do list for the aspiring professional, The Way to the Top belongs on every business bookshelf.",
 'Beloved by millions, this timeless classic holds the key to all you desire and everything you wish to accomplish. This is the book that reveals the secret to personal wealth. The Success Secrets of the Ancients—An Assured Road to Happiness and Prosperity Countless readers have been helped by the famous “Babylonian parables,” hailed as the greatest of all inspirational works on the subject of thrift, financial planning, and personal wealth. In language as simple as that found in the Bible, these fascinating and informative stories set you on a sure path to prosperity and its accompanying joys. Acclaimed as a modern-day classic, this celebrated bestseller offers an understanding of—and a solution to—your personal financial problems that will guide you through a lifetime. This is the book that holds the secrets to keeping your money—and making more. The Richest Man in BabylonRead it and recommend it to loved ones—and get on the road to riches.MORE THAN TWO MILLION BOOKS SOLD',
 "A classic spy novel from the bestselling author, Trevanian, about a westerner raised in Japan who becomes one of the world's most accomplished assassins.Nicholai Hel is the world’s most wanted man. Born in Shanghai during the chaos of World War I, he is the son of an aristocratic Russian mother and a mysterious German father and is the protégé of a Japanese Go master. Hel survived the destruction of Hiroshima to emerge as the world’s most artful lover and its most accomplished—and well-paid—assassin. Hel is a genius, a mystic, and a master of language and culture, and his secret is his determination to attain a rare kind of personal excellence, a state of effortless perfection known only as shibumi.Now living in an isolated mountain fortress with his exquisite mistress, Hel is unwillingly drawn back into the life he’d tried to leave behind when a beautiful young stranger arrives at his door, seeking help and refuge. It soon becomes clear that Hel is being tracked by his most sinister enemy—a supermonolith of international espionage known only as the Mother Company. The battle lines are drawn: ruthless power and corruption on one side, and on the other . . . shibumi .",
 'With these four gripping novels, Trevanian has proven himself a master of suspense. As he weaves his tales of death and danger, of action and mystery, he generates an explosive edge-of-the-seat excitement that few writers can match. In The Eiger Sanction, Trevanian’s highly acclaimed first novel, Jonathan Hemlock, mountain climber and professional assassin, is tricked into a most hazardous assignment that involves an attempt to conquer and scale one of the most treacherous mountain peaks in the Swiss Alps, the Eiger. Hemlock’s highly skilled services are required in The Loo Sanction to recover a set of films incriminating high-ranking British officials. Drawn into a labyrinthine network of intrigue, he must attempt one of the most daring escapes ever conceived. In another masterful achievement in suspense, police lieutenant Claude LaPinte must solve a grotesque murder as he undertakes a strange journey through The Main, Montreal’s dangerous immigrant district. In Shibumi, Nicholai Hel uses his nearly superhuman mental and physical prowess to destroy political terrorists. His wild series of globe-spanning adventures demonstrates why he is considered the world’s most dangerous man. Rich and thoroughly entertaining, these four superbly written novels prove Trevanian to be one of the most compelling writers of suspense today.',
 "In this masterful book, David McCullough tells the intensely human story of those who marched with General George Washington in the year of the Declaration of Independence - when the whole American cause was riding on their success, without which all hope for independence would have been dashed and the noble ideals of the Declaration would have amounted to little more than words on paper.Based on extensive research in both American and British archives, 1776 is a powerful drama written with extraordinary narrative vitality. It is the story of Americans in the ranks, men of every shape, size, and color, farmers, schoolteachers, shoemakers, no-accounts, and mere boys turned soldiers. And it is the story of the King's men, the British commander, William Howe, an his highly disciplined redcoats who looked on their rebel foes with contempt and fought with a valor too little known.At the center of the drama, with Washington, are two young American patriots, who, at first, knew no more of war than what they had read in books - Nathaniel Green, a Quaker who was made a general at thirty-three, and Henry Knox, a twenty-five-year-old bookseller who had the preposterous idea of hauling the guns of Fort Ticonderoga overland to Boston in the dead of Winter.But it is the American commander-in-chief who stands foremost - Washington, who had never before led an army in battle. Written as a companion work to his celebrated biography of John Adams, David McCullough's 1776 is another landmark in the literature of American history.",
 'This tells the poignant tale of a Chinese farmer and his family in old agrarian China. The humble Wang Lung glories in the soil he works, nurturing the land as it nurtures him and his family. Nearby, the nobles of the House of Hwang consider themselves above the land and its workers; but they will soon meet their own downfall.Hard times come upon Wang Lung and his family when flood and drought force them to seek work in the city. The working people riot, breaking into the homes of the rich and forcing them to flee. When Wang Lung shows mercy to one noble and is rewarded, he begins to rise in the world, even as the House of Hwang falls.',
 "Fast food has hastened the malling of our landscape, widened the chasm between rich and poor, fueled an epidemic of obesity, and propelled American cultural imperialism abroad. That's a lengthy list of charges, but here Eric Schlosser makes them stick with an artful mix of first-rate reportage, wry wit, and careful reasoning.Schlosser's myth-shattering survey stretches from California's subdivisions where the business was born to the industrial corridor along the New Jersey Turnpike where many fast food's flavors are concocted. Along the way, he unearths a trove of fascinating, unsettling truths -- from the unholy alliance between fast food and Hollywood to the seismic changes the industry has wrought in food production, popular culture, and even real estate. (back cover)",
 'In nineteenth-century China, in a remote Hunan county, a girl named Lily, at the tender age of seven, is paired with a laotong, “old same,” in an emotional match that will last a lifetime. The laotong, Snow Flower, introduces herself by sending Lily a silk fan on which she’s painted a poem in nu shu, a unique language that Chinese women created in order to communicate in secret, away from the influence of men.As the years pass, Lily and Snow Flower send messages on fans, compose stories on handkerchiefs, reaching out of isolation to share their hopes, dreams, and accomplishments. Together, they endure the agony of foot-binding, and reflect upon their arranged marriages, shared loneliness, and the joys and tragedies of motherhood. The two find solace, developing a bond that keeps their spirits alive. But when a misunderstanding arises, their deep friendship suddenly threatens to tear apart.',
 "In his final hours in the Oval Office, the outgoing President grants a controversial last-minute pardon to Joel Backman, a notorious Washington power broker who has spent the last six years hidden away in a federal prison.What no one knows is that the President issued the pardon only after receiving enormous pressure from the CIA. It seems Backman, in his power broker heyday, may have obtained secrets that compromise the world's most sophisticated satellite surveillance system.Backman is quietly smuggled out of the country in a military cargo plane, given a new name, a new identity, and a new home in Italy. Eventually, after he has settled into his new life, the CIA will leak his whereabouts to the Israelis, the Russians, the Chinese, and the Saudis. Then the CIA will do what it does best: sit back and watch. The question is not whether Backman will survive, there is no chance of that. The question the CIA needs answered is, who will kill him?",
 "One of the most acclaimed books of our time, winner of both the Pulitzer and the Francis Parkman prizes, The Power Broker tells the hidden story behind the shaping (and mis-shaping) of twentieth-century New York (city and state) and makes public what few have known: that Robert Moses was, for almost half a century, the single most powerful man of our time in New York, the shaper not only of the city's politics but of its physical structure and the problems of urban decline that plague us today.In revealing how Moses did it--how he developed his public authorities into a political machine that was virtually a fourth branch of government, one that could bring to their knees Governors and Mayors (from La Guardia to Lindsay) by mobilizing banks, contractors, labor unions, insurance firms, even the press and the Church, into an irresistible economic force--Robert Caro reveals how power works in all the cities of the United States. Moses built an empire and lived like an emperor. He personally conceived and completed public works costing 27 billion dollars--the greatest builder America (and probably the world) has ever known. Without ever having been elected to office, he dominated the men who were--even his most bitter enemy, Franklin D. Roosevelt, could not control him--until he finally encountered, in Nelson Rockefeller, the only man whose power (and ruthlessness in wielding it) equalled his own.",
 'Which is more dangerous, a gun or a swimming pool? What do schoolteachers and sumo wrestlers have in common? Why do drug dealers still live with their moms? How much do parents really matter? What kind of impact did Roe v. Wade have on violent crime? Freakonomics will literally redefine the way we view the modern world.These may not sound like typical questions for an economist to ask. But Steven D. Levitt is not a typical economist. He is a much heralded scholar who studies the stuff and riddles of everyday life -- from cheating and crime to sports and child rearing -- and whose conclusions regularly turn the conventional wisdom on its head. He usually begins with a mountain of data and a simple, unasked question. Some of these questions concern life-and-death issues; others have an admittedly freakish quality. Thus the new field of study contained in this book: freakonomics.Through forceful storytelling and wry insight, Levitt and co-author Stephen J. Dubner show that economics is, at root, the study of incentives -- how people get what they want, or need, especially when other people want or need the same thing. In Freakonomics, they set out to explore the hidden side of ... well, everything. The inner workings of a crack gang. The truth about real-estate agents. The myths of campaign finance. The telltale marks of a cheating schoolteacher. The secrets of the Ku Klux Klan.What unites all these stories is a belief that the modern world, despite a surfeit of obfuscation, complication, and downright deceit, is not impenetrable, is not unknowable, and -- if the right questions are asked -- is even more intriguing than we think. All it takes is a new way of looking. Steven Levitt, through devilishly clever and clear-eyed thinking, shows how to see through all the clutter.Freakonomics establishes this unconventional premise: If morality represents how we would like the world to work, then economics represents how it actually does work. It is true that readers of this book will be armed with enough riddles and stories to last a thousand cocktail parties. But Freakonomics can provide more than that. It will literally redefine the way we view the modern world.(front flap)',
 "Barcelona, 1945: A city slowly heals from its war wounds, and Daniel, an antiquarian book dealer's son who mourns the loss of his mother, finds solace in a mysterious book entitled The Shadow of the Wind, by one Julian Carax. But when he sets out to find the author's other works, he makes a shocking discovery: someone has been systematically destroying every copy of every book Carax has written. In fact, Daniel may have the last of Carax's books in existence. Soon Daniel's seemingly innocent quest opens a door into one of Barcelona's darkest secrets--an epic story of murder, madness, and doomed love.",
 'Intense, unpredictable, and instantly engaging, this is a story of drug and alcohol abuse and rehabilitation as it has never been told before. It is also the introduction of a bold and talented literary voice. Before considering reading this book, please see the BookBrowse note on the book jacket/review page.BookBrowse Note: January 9th 2006: An article in the Smoking Gun claimed that James Frey (author of A Million Little Pieces and My Friend Leonard) fabricated key parts of his books. They cited police records, court documents and interviews with law enforcement agents which belie a number of Frey\'s claims regarding criminal charges against him, jail terms and his fugitive status.In an interview with the Smoking Gun, Frey admitted that he had \'embellished central details\' in A Million Little Pieces and backtracked on claims he made in the book.January 26th 2006. Frey\'s publisher stated that while it initially stood by him, after further questioning of the author, the house has "sadly come to the realization that a number of facts have been altered and incidents embellished." It will be adding a a publisher\'s note and author\'s note to all future editions of A Million Little Pieces.',
 "Once upon a time Martians and Venusians met, fell in love, and had happy relationships together because they respected and accepted their differences. Then they came to Earth and amnesia set in: they forgot they were from different planets.Based on years of successful counseling of couples and individuals, Men Are from Mars, Women Are from Venus has helped millions of couples transform their relationships. Now viewed as a modern classic, this phenomenal book has helped men and women realize how different they really are and how to communicate their needs in such a way that conflict doesn't arise and intimacy is given every chance to grow!!!!",
 'Librarian note: You can find an alternate cover edition here.This novel of awesome beauty and power is a moving saga about people, relationships, and the boundaries of love. Through Jean M. Auel’s magnificent storytelling we are taken back to the dawn of modern humans, and with a girl named Ayla we are swept up in the harsh and beautiful Ice Age world they shared with the ones who called themselves The Clan of the Cave Bear.A natural disaster leaves the young girl wandering alone in an unfamiliar and dangerous land until she is found by a woman of the Clan, people very different from her own kind. To them, blond, blue-eyed Ayla looks peculiar and ugly--she is one of the Others, those who have moved into their ancient homeland; but Iza cannot leave the girl to die and takes her with them. Iza and Creb, the old Mog-ur, grow to love her, and as Ayla learns the ways of the Clan and Iza’s way of healing, most come to accept her. But the brutal and proud youth who is destined to become their next leader sees her differences as a threat to his authority. He develops a deep and abiding hatred for the strange girl of the Others who lives in their midst, and is determined to get his revenge.',
 "Billy Beane, general manager of MLB's Oakland A's and protagonist of Michael Lewis's Moneyball, had a problem: how to win in the Major Leagues with a budget that's smaller than that of nearly every other team. Conventional wisdom long held that big name, highly athletic hitters and young pitchers with rocket arms were the ticket to success. But Beane and his staff, buoyed by massive amounts of carefully interpreted statistical data, believed that wins could be had by more affordable methods such as hitters with high on-base percentage and pitchers who get lots of ground outs. Given this information and a tight budget, Beane defied tradition and his own scouting department to build winning teams of young affordable players and inexpensive castoff veterans.  Lewis was in the room with the A's top management as they spent the summer of 2002 adding and subtracting players and he provides outstanding play-by-play. In the June player draft, Beane acquired nearly every prospect he coveted (few of whom were coveted by other teams) and at the July trading deadline he engaged in a tense battle of nerves to acquire a lefty reliever. Besides being one of the most insider accounts ever written about baseball, Moneyball is populated with fascinating characters. We meet Jeremy Brown, an overweight college catcher who most teams project to be a 15th round draft pick (Beane takes him in the first). Sidearm pitcher Chad Bradford is plucked from the White Sox triple-A club to be a key set-up man and catcher Scott Hatteberg is rebuilt as a first baseman. But the most interesting character is Beane himself. A speedy athletic can't-miss prospect who somehow missed, Beane reinvents himself as a front-office guru, relying on players completely unlike, say, Billy Beane. Lewis, one of the top nonfiction writers of his era (Liar's Poker, The New New Thing), offers highly accessible explanations of baseball stats and his roadmap of Beane's economic approach makes Moneyball an appealing reading experience for business people and sports fans alike. --John Moe",
 'Amoral, cunning, ruthless, and instructive, this multi-million-copy New York Times bestseller is the definitive manual for anyone interested in gaining, observing, or defending against ultimate control – from the author of The Laws of Human Nature.In the book that People magazine proclaimed “beguiling” and “fascinating,” Robert Greene and Joost Elffers have distilled three thousand years of the history of power into 48 essential laws by drawing from the philosophies of Machiavelli, Sun Tzu, and Carl Von Clausewitz and also from the lives of figures ranging from Henry Kissinger to P.T. Barnum. Some laws teach the need for prudence (“Law 1: Never Outshine the Master”), others teach the value of confidence (“Law 28: Enter Action with Boldness”), and many recommend absolute self-preservation (“Law 15: Crush Your Enemy Totally”). Every law, though, has one thing in common: an interest in total domination. In a bold and arresting two-color package, The 48 Laws of Power is ideal whether your aim is conquest, self-defense, or simply to understand the rules of the game.',
 'At Thermopylae, a rocky mountain pass in northern Greece, the feared and admired Spartan soldiers stood three hundred strong. Theirs was a suicide mission, to hold the pass against the invading millions of the mighty Persian army.Day after bloody day they withstood the terrible onslaught, buying time for the Greeks to rally their forces. Born into a cult of spiritual courage, physical endurance, and unmatched battle skill, the Spartans would be remembered for the greatest military stand in history—one that would not end until the rocks were awash with blood, leaving only one gravely injured Spartan squire to tell the tale. . . .“A novel that is intricate and arresting and, once begun, almost impossible to put down.”—Daily News “A timeless epic of man and war . . . Pressfield has created a new classic deserving a place beside the very best of the old.”—Stephen Coonts',
 'Internationally bestselling author of Last of the Amazons, Gates of Fire, and Tides of War, Steven Pressfield delivers a guide to inspire and support those who struggle to express their creativity. Pressfield believes that “resistance” is the greatest enemy, and he offers many unique and helpful ways to overcome it.',
 'David Grene, one of the best known translators of the Greek classics, splendidly captures the peculiar quality of Herodotus, the father of history.Here is the historian, investigating and judging what he has seen, heard, and read, and seeking out the true causes and consequences of the great deeds of the past. In his History , the war between the Greeks and Persians, the origins of their enmity, and all the more general features of the civilizations of the world of his day are seen as a unity and expressed as the vision of one man who as a child lived through the last of the great acts in this universal drama.In Grene\'s remarkable translation and commentary, we see the historian as a storyteller, combining through his own narration the skeletal "historical" facts and the imaginative reality toward which his story reaches. Herodotus emerges in all his charm and complexity as a writer and the first historian in the Western tradition, perhaps unique in the way he has seen the interrelation of fact and fantasy.',
 'Dating to the ninth century B.C., Homer’s timeless poem still vividly conveys the horror and heroism of men and gods wrestling with towering emotions and battling amidst devastation and destruction, as it moves inexorably to the wrenching, tragic conclusion of the Trojan War. Renowned classicist Bernard Knox observes in his superb introduction that although the violence of the Iliad is grim and relentless, it coexists with both images of civilized life and a poignant yearning for peace. Combining the skills of a poet and scholar, Robert Fagles, winner of the PEN/Ralph Manheim Medal for Translation and a 1996 Academy Award in Literature from the American Academy of Arts and Letters, brings the energy of contemporary language to this enduring heroic epic. He maintains the drive and metric music of Homer’s poetry, and evokes the impact and nuance of the Iliad’s mesmerizing repeated phrases in what Peter Levi calls “an astonishing performance.”',
 "Gripping listeners and readers for more than 2,700 years, 'The Iliad' is the story of the Trojan War and the rage of Achilles. Combining the skills of a poet and scholar, Robert Fagles brings the energy of contemporary language to this enduring heroic epic. If 'The Iliad' is the world's greatest war story, then 'The Odyssey' is literature's greatest evocation of every man's journey through life. Here again, Fagles has performed the translator's task magnificently, giving us an Odyssey to read aloud, to savor, and to treasure for its sheer lyrical mastery. Each volume contains a superb introduction with textual and critical commentary by renowned classicist Bernard Knox.",
 "Sing to me of the man, Muse, the man of twists and turnsdriven time and again off course, once he had plunderedthe hallowed heights of Troy.So begins Robert Fagles' magnificent translation of the Odyssey.If the Iliad is the world's greatest war epic, then the Odyssey is literature's grandest evocation of everyman's journey though life. Odysseus' reliance on his wit and wiliness for survival in his encounters with divine and natural forces, during his ten-year voyage home to Ithaca after the Trojan War, is at once a timeless human story and an individual test of moral endurance. In the myths and legends that are retold here, Fagles has captured the energy and poetry of Homer's original in a bold, contemporary idiom, and given us an Odyssey to read aloud, to savor, and to treasure for its sheer lyrical mastery.Renowned classicist Bernard Knox's superb Introduction and textual commentary provide new insights and background information for the general reader and scholar alike, intensifying the strength of Fagles' translation.This is an Odyssey to delight both the classicist and the public at large, and to captivate a new generation of Homer's students.--Robert Fagles, winner of the PEN/Ralph Manheim Medal for Translation and a 1996 Academy Award in Literature from the American Academy of Arts and Letters, presents us with Homer's best-loved and most accessible poem in a stunning new modern-verse translation.",
 'Among Shakespeare\'s plays, "Hamlet" is considered by many his masterpiece. Among actors, the role of Hamlet, Prince of Denmark, is considered the jewel in the crown of a triumphant theatrical career. Now Kenneth Branagh plays the leading role and co-directs a brillant ensemble performance. Three generations of legendary leading actors, many of whom first assembled for the Oscar-winning film "Henry V", gather here to perform the rarely heard complete version of the play. This clear, subtly nuanced, stunning dramatization, presented by The Renaissance Theatre Company in association with "Bbc" Broadcasting, features such luminaries as Sir John Gielgud, Derek Jacobi, Emma Thompson and Christopher Ravenscroft. It combines a full cast with stirring music and sound effects to bring this magnificent Shakespearen classic vividly to life. Revealing new riches with each listening, this production of "Hamlet" is an invaluable aid for students, teachers and all true lovers of Shakespeare - a recording to be treasured for decades to come.',
 'Revised from the rather long original complete works of Shakespeare, this abridged version is written by three Americans, with no qualifications worth speaking of. The playtext is reproduced here with footnotes which will be of no help to anyone and a letter from the authors to the Queen.',
 'Warrior of the Light: A Manual is an inspirational companion to The Alchemist, an international bestseller that has beguiled millions of readers around the world. Every short passage invites us to live out our dreams, to embrace the uncertainty of life, and to rise to our own unique destiny. In his inimitable style, Paulo Coelho helps bring out the Warrior of the Light within each of us. He also shows readers how to embark upon the way of the Warrior: the one who appreciates the miracle of being alive, the one who accepts failure, and the one whose quest leads him to become the person he wants to be.Paulo Coelho is one of the most beloved storytellers of our time. Now, in the long-awaited companion to his first novel, Coelho presents a collection of philosophical stories that will delight and guide seekers everywhere.',
 'The narrator of\xa0 The Zahir\xa0 is a bestselling novelist who lives in Paris and enjoys all the privileges money and celebrity bring. His wife of ten years, Esther, is a war correspondent who has disappeared along with a friend, Mikhail, who may or may not be her lover.Was Esther kidnapped, murdered, or did she simply escape a marriage that left her unfulfilled? The narrator doesn’t have any answers, but he has plenty of questions of his own. Then one day Mikhail finds the narrator and promises to reunite him with his wife. In his attempt to recapture a lost love, the narrator discovers something unexpected about himself.',
 'From Paulo Coelho, author of the bestselling The Alchemist, comes a poignant, richly poetic story that reflects the depth of love and life.Rarely does adolescent love reach its full potential, but what happens when two young lovers reunite after eleven years? Time has transformed Pilar into a strong and independent woman, while her devoted childhood friend has grown into a handsome and charismatic spiritual leader. She has learned well how to bury her feelings... and he has turned to religion as a refuge from his raging inner conflicts.Now they are together once again, embarking on a journey fraught with difficulties, as long-buried demons of blame and resentment resurface after more than a decade. But in a small village in the French Pyrenees, by the waters of the River Piedra, a most special relationship will be reexamined in the dazzling light of some of life’s biggest questions.',
 "Written with the same masterful prose and clarity of vision that made The Alchemist an international phenomenon, The Fifth Mountain is Paulo Coelho's inspiring story of the Biblical prophet Elijah. In the ninth century B.C., the Phoenician princess Jezebel orders the execution of all the prophets who refuse to seek safety in the land of Zarephath, where the unexpectedly finds true love with a young widow. But this newfound rapture is to be cut short, and Elijah sees all of his hopes and dreams irrevocably erased as he is swept into a whirlwind of events that threatens his very existence. In what is truly a literary milestone, Coelho gives a quietly moving account of a man touched by the hand of God who must triumph over his frustrations in a soul-shattering trail of faith.",
 'Eleven Minutes is the story of Maria, a young girl from a Brazilian village, whose first innocent brushes with love leave her heartbroken. At a tender age, she becomes convinced that she will never find true love, instead believing that “love is a terrible thing that will make you suffer. . . .” A chance meeting in Rio takes her to Geneva, where she dreams of finding fame and fortune.Maria’s despairing view of love is put to the test when she meets a handsome young painter. In this odyssey of self-discovery, Maria has to choose between pursuing a path of darkness—sexual pleasure for its own sake—or risking everything to find her own “inner light” and the possibility of sacred sex, sex in the context of love.',
 "In his latest international bestseller, the celebrated author of The Alchemist addresses the fundamental questions asked by millions: What am I doing here today? and Why do I go on living?Twenty-four-year-old Veronika seems to have everything she could wish for: youth and beauty, plenty of attractive boyfriends, a fulfilling job, and a loving family. Yet something is lacking in her life. Inside her is a void so deep that nothing could possibly ever fill it. So, on the morning of November 11, 1997, Veronika decides to die. She takes a handful of sleeping pills expecting never to wake up.Naturally Veronika is stunned when she does wake up at Villete, a local mental hospital, where the staff informs her that she has, in fact, partially succeeded in achieving her goal. While the overdose didn't kill Veronika immediately, the medication has damaged her heart so severely that she has only days to live.The story follows Veronika through the intense week of self-discovery that ensues. To her surprise, Veronika finds herself drawn to the confinement of Villete and its patients, who, each in his or her individual way, reflect the heart of human experience. In the heightened state of life's final moments, Veronika discovers things she has never really allowed herself to feel before: hatred, fear, curiosity, love, and sexual awakening. She finds that every second of her existence is a choice between living and dying, and at the eleventh hour emerges more open to life than ever before.In Veronika Decides to Die, Paulo Coelho takes the reader on a distinctly modern quest to find meaning in a culture overshadowed by angst, soulless routine, and pervasive conformity. Based on events in Coelho's own life, Veronika Decides to Die questions the meaning of madness and celebrates individuals who do not fit into patterns society considers to be normal. Poignant and illuminating, it is a dazzling portrait of a young woman at the crossroads of despair and liberation, and a poetic, exuberant appreciation of each day as a renewed opportunity.",
 "Agamemnon's sacrifice of his daughter in order to ensure the good fortune of his forces in the Trojan War is, despite its heroic background, in many respects a domestic tragedy. Mr. Rudall's new translation retains Euripides' poetic beauty while fashioning a playable dialogue.",
 'Alternate covers of this ISBN here, here, here, here. Most recent cover is here.In the Oresteia—the only trilogy in Greek drama which survives from antiquity—Aeschylus took as his subject the bloody chain of murder and revenge within the royal family of Argos.Moving from darkness to light, from rage to self-governance, from primitive ritual to civilized institution, their spirit of struggle and regeneration becomes an everlasting song of celebration.',
 'English versions of Sophocles’ three great tragedies based on the myth of Oedipus, translated for a modern audience by two gifted poets.',
 '"...what man wins more happiness than just its shape and the ruin when that shape collapses?"Sophocles\' Oedipus Rex has never been surpassed for the raw and terrible power with which its hero struggles to answer the eternal question, "Who am I?" The play, a story of a king who acting entirely in ignorance kills his father and marries his mother, unfolds with shattering power; we are helplessly carried along with Oedipus towards the final, horrific truth. To make Oedipus more accessible for the modern reader, our Prestwick House Literary Touchstone Classics includes a glossary of the more difficult words, as well as convenient sidebar notes to enlighten the reader on aspects that may be confusing or overlooked. We hope that the reader may, through this edition, more fully enjoy the beauty of the verse, the wisdom of the insights, and the impact of the drama.',
 "Aristophanes' comic masterpiece of war and sex remains one of the greatest plays ever written. Led by the title character, the women of the warring city-states of Greece agree to withhold sexual favours with their husbands until they agree to cease fighting. The war of the sexes that ensues makes Lysistrata a bawdy comedy without peer in the history of theatre.",
 "Born in the town of Sighet, Transylvania, Elie Wiesel was a teenager when he and his family were taken from their home in 1944 to Auschwitz concentration camp, and then to Buchenwald. Night is the terrifying record of Elie Wiesel's memories of the death of his family, the death of his own innocence, and his despair as a deeply observant Jew confronting the absolute evil of man. This new translation by his wife and most frequent translator, Marion Wiesel, corrects important details and presents the most accurate rendering in English of Elie Wiesel's testimony to what happened in the camps and of his unforgettable message that this horror must simply never be allowed to happen again.",
 'Christopher John Francis Boone knows all the countries of the world and their capitals and every prime number up to 7,057. He relates well to animals but has no understanding of human emotions. He cannot stand to be touched. And he detests the color yellow. This improbable story of Christopher’s quest to investigate the suspicious death of a neighborhood dog makes for one of the most captivating, unusual, and widely heralded novels in recent years.',
 "Shakespeare's intertwined love polygons begin to get complicated from the start--Demetrius and Lysander both want Hermia but she only has eyes for Lysander. Bad news is, Hermia's father wants Demetrius for a son-in-law. On the outside is Helena, whose unreturned love burns hot for Demetrius. Hermia and Lysander plan to flee from the city under cover of darkness but are pursued by an enraged Demetrius (who is himself pursued by an enraptured Helena). In the forest, unbeknownst to the mortals, Oberon and Titania (King and Queen of the faeries) are having a spat over a servant boy. The plot twists up when Oberon's head mischief-maker, Puck, runs loose with a flower which causes people to fall in love with the first thing they see upon waking. Throw in a group of labourers preparing a play for the Duke's wedding (one of whom is given a donkey's head and Titania for a lover by Puck) and the complications become fantastically funny.",
 "This 1942 memoir (not a complete autobiography) by Beryl Markham chronicles her experiences growing up in Kenya (then British East Africa) in the early 1900s, and her stellar careers as racehorse trainer and bush pilot. Markham was the first woman in East Africa to be granted a commercial pilot's license, piloting passengers and supplies to remote corners of Africa. She became the first person to fly solo across the Atlantic from east to west. Considered a classic of outdoor literature and ranked #8 by National Geographic Adventure in 2008 on its list of the 100 best adventure books.",
 'Named for the twelfth night after Christmas, the end of the Christmas season, Twelfth Night plays with love and power. The Countess Olivia, a woman with her own household, attracts Duke (or Count) Orsino. Two other would-be suitors are her pretentious steward, Malvolio, and Sir Andrew Aguecheek.Onto this scene arrive the twins Viola and Sebastian; caught in a shipwreck, each thinks the other has drowned. Viola disguises herself as a male page and enters Orsino’s service. Orsino sends her as his envoy to Olivia—only to have Olivia fall in love with the messenger. The play complicates, then wonderfully untangles, these relationships.',
 'Annie Proulx has written some of the most original and brilliant short stories in contemporary literature, and for many readers and reviewers, "Brokeback Mountain" is her masterpiece.  Ennis del Mar and Jack Twist, two ranch hands, come together when they\'re working as sheepherder and camp tender one summer on a range above the tree line. At first, sharing an isolated tent, the attraction is casual, inevitable, but something deeper catches them that summer.  Both men work hard, marry, and have kids because that\'s what cowboys do. But over the course of many years and frequent separations this relationship becomes the most important thing in their lives, and they do anything they can to preserve it.  The New Yorker won the National Magazine Award for Fiction for its publication of "Brokeback Mountain," and the story was included in Prize Stories 1998: The O. Henry Awards. In gorgeous and haunting prose, Proulx limns the difficult, dangerous affair between two cowboys that survives everything but the world\'s violent intolerance.',
 'In today\'s world, yesterday\'s methods just don\'t work. In Getting Things Done, veteran coach and management consultant David Allen shares the breakthrough methods for stress-free performance that he has introduced to tens of thousands of people across the country. Allen\'s premise is simple: our productivity is directly proportional to our ability to relax. Only when our minds are clear and our thoughts are organized can we achieve effective productivity and unleash our creative potential. In Getting Things Done Allen shows how to:* Apply the "do it, delegate it, defer it, drop it" rule to get your in-box to empty* Reassess goals and stay focused in changing situations* Plan projects as well as get them unstuck* Overcome feelings of confusion, anxiety, and being overwhelmed* Feel fine about what you\'re not doingFrom core principles to proven tricks, Getting Things Done can transform the way you work, showing you how to pick up the pace without wearing yourself down.',
 'Esta es la segunda novela de Ernesto Sabato, que profundiza la senda iniciada por El túnel. Una obra, considerada uno de los mejores libros del siglo, que indaga en las zonas más oscuras del espíritu',
 'Ovid’s sensuous and witty poem, in an accessible translation by David RaeburnIn Metamophoses, Ovid brings together a dazzling array of mythological tales, ingeniously linked by the idea of transformation—often as a result of love or lust—where men and women find themselves magically changed into new and sometimes extraordinary beings. Beginning with the creation of the world and ending with the deification of Augustus, Ovid interweaves many of the best-known myths and legends of ancient Greece and Rome, including Daedalus and Icarus, Pyramus and Thisbe, Pygmalion, Perseus and Andromeda, and the fall of Troy. Erudite but light-hearted, dramatic and yet playful, Metamorphoses has influenced writers and artists throughout the centuries from Shakespeare and Titian to Picasso and Ted Hughes.For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Readers trust the series to provide authoritative texts enhanced by introductions and notes by distinguished scholars and contemporary authors, as well as up-to-date translations by award-winning translators.',
 '"Diamond has written a book of remarkable scope ... one of the most important and readable works on the human past published in recent years."Winner of the Pulitzer Prize and a national bestseller: the global account of the rise of civilization that is also a stunning refutation of ideas of human development based on race.In this "artful, informative, and delightful" (William H. McNeill, New York Review of Books) book, Jared Diamond convincingly argues that geographical and environmental factors shaped the modern world. Societies that had a head start in food production advanced beyond the hunter-gatherer stage, and then developed writing, technology, government, and organized religion—as well as nasty germs and potent weapons of war—and adventured on sea and land to conquer and decimate preliterate cultures. A major advance in our understanding of human societies, Guns, Germs, and Steel chronicles the way that the modern world came to be and stunningly dismantles racially based theories of human history.Winner of the Pulitzer Prize, the Phi Beta Kappa Award in Science, the Rhone-Poulenc Prize, and the Commonwealth Club of California\'s Gold Medal',
 "Librarian's Note: An alternate cover edition can be found hereIn April, 1992, a young man from a well-to-do family hitchhiked to Alaska and walked alone into the wilderness north of Mt. McKinley. His name was Christopher Johnson McCandless. He had given $25,000 in savings to charity, abandoned his car and most of his possessions, burned all the cash in his wallet, and invented a new life for himself. Four months later, a party of moose hunters found his decomposed body. How McCandless came to die is the unforgettable story of Into the Wild.Immediately after graduating from college in 1991, McCandless had roamed through the West and Southwest on a vision quest like those made by his heroes Jack London and John Muir. In the Mojave Desert he abandoned his car, stripped it of its license plates, and burned all of his cash. He would give himself a new name, Alexander Supertramp, and, unencumbered by money and belongings, he would be free to wallow in the raw, unfiltered experiences that nature presented. Craving a blank spot on the map, McCandless simply threw away the maps. Leaving behind his desperate parents and sister, he vanished into the wild.",
 'Alternate cover edition of ISBN 9780743246989The story of three generations in twentieth-century China that blends the intimacy of memoir and the panoramic sweep of eyewitness history—a bestselling classic in thirty languages with more than ten million copies sold around the world, now with a new introduction from the author.An engrossing record of Mao’s impact on China, an unusual window on the female experience in the modern world, and an inspiring tale of courage and love, Jung Chang describes the extraordinary lives and experiences of her family members: her grandmother, a warlord’s concubine; her mother’s struggles as a young idealistic Communist; and her parents’ experience as members of the Communist elite and their ordeal during the Cultural Revolution. Chang was a Red Guard briefly at the age of fourteen, then worked as a peasant, a “barefoot doctor,” a steelworker, and an electrician. As the story of each generation unfolds, Chang captures in gripping, moving—and ultimately uplifting—detail the cycles of violent drama visited on her own family and millions of others caught in the whirlwind of history.',
 "From #1 New York Times bestselling author Nelson DeMille comes a suspenseful new novel featuring Detective John Corey and an all-too-plausible conspiracy to detonate a nuclear bomb in two major American cities.Welcome to the Custer Hill Club--an informal men's club set in a luxurious Adirondack hunting lodge whose members include some of America's most powerful business leaders, military men, and government officials. Ostensibly, the club is a place to gather with old friends, hunt, eat, drink, and talk off-the-record about war, life, death, sex and politics. But one Fall weekend, the Executive Board of the Custer Hill Club gathers to talk about the tragedy of 9/11 and what America must do to retaliate. Their plan is finalized and set into motion. That same weekend, a member of the Federal Anti-Terrorist Task Force is reported missing. His body is soon discovered in the woods near the Custer Hill Club's game reserve. The death appears to be a hunting accident, and that's how the local police first report it, but Detective John Corey has his doubts. As he digs deeper, he begins to unravel a plot involving the Custer Hill Club, a top-secret plan known only by its code name: Wild Fire.Racing against the clock, Detective Corey and his wife, FBI agent Kate Mayfield, find they are the only people in a position to stop the button from being pushed and chaos from being unleashed.",
 "First published in 1903, The Call of the Wild is regarded as Jack London's masterpiece. Based on London's experiences as a gold prospector in the Canadian wilderness and his ideas about nature and the struggle for existence, The Call of the Wild is a tale about unbreakable spirit and the fight for survival in the frozen Alaskan Klondike.",
 'The New York Times bestseller, and one of the most talked about books of the year, Nickel and Dimed has already become a classic of undercover reportage.Millions of Americans work for poverty-level wages, and one day Barbara Ehrenreich decided to join them. She was inspired in part by the rhetoric surrounding welfare reform, which promised that any job equals a better life. But how can anyone survive, let alone prosper, on $6 to $7 an hour? To find out, Ehrenreich moved from Florida to Maine to Minnesota, taking the cheapest lodgings available and accepting work as a waitress, hotel maid, house cleaner, nursing-home aide, and Wal-Mart salesperson. She soon discovered that even the "lowliest" occupations require exhausting mental and physical efforts. And one job is not enough; you need at least two if you intend to live indoors.Nickel and Dimed reveals low-wage America in all its tenacity, anxiety, and surprising generosity -- a land of Big Boxes, fast food, and a thousand desperate strategies for survival. Instantly acclaimed for its insight, humor, and passion, this book is changing the way America perceives its working poor.',
 'Michel Foucault offers an iconoclastic exploration of why we feel compelled to continually analyze and discuss sex, and of the social and mental mechanisms of power that cause us to direct the questions of what we are to what our sexuality is.',
 'In this sequel to The History of Sexuality, Volume I: An Introduction, the brilliantly original French thinker who died in 1984 gives an analysis of how the ancient Greeks perceived sexuality. Throughout The Uses of Pleasure Foucault analyzes an irresistible array of ancient Greek texts on eroticism as he tries to answer basic questions: How in the West did sexual experience become a moral issue? And why were other appetites of the body, such as hunger, and collective concerns, such as civic duty, not subjected to the numberless rules and regulations and judgments that have defined, if not confined, sexual behavior?',
 'Since its immediate success in 1813, Pride and Prejudice has remained one of the most popular novels in the English language. Jane Austen called this brilliant work "her own darling child" and its vivacious heroine, Elizabeth Bennet, "as delightful a creature as ever appeared in print." The romantic clash between the opinionated Elizabeth and her proud beau, Mr. Darcy, is a splendid performance of civilized sparring. And Jane Austen\'s radiant wit sparkles as her characters dance a delicate quadrille of flirtation and intrigue, making this book the most superb comedy of manners of Regency England.Alternate cover edition of ISBN 9780679783268',
 "When Jon Krakauer reached the summit of Mt. Everest in the early afternoon of May 10, 1996, he hadn't slept in fifty-seven hours and was reeling from the brain-altering effects of oxygen depletion. As he turned to begin his long, dangerous descent from 29,028 feet, twenty other climbers were still pushing doggedly toward the top. No one had noticed that the sky had begun to fill with clouds. Six hours later and 3,000 feet lower, in 70-knot winds and blinding snow, Krakauer collapsed in his tent, freezing, hallucinating from exhaustion and hypoxia, but safe. The following morning, he learned that six of his fellow climbers hadn't made it back to their camp and were desperately struggling for their lives. When the storm finally passed, five of them would be dead, and the sixth so horribly frostbitten that his right hand would have to be amputated.Into Thin Air is the definitive account of the deadliest season in the history of Everest by the acclaimed journalist and author of the bestseller Into the Wild. On assignment for Outside Magazine to report on the growing commercialization of the mountain, Krakauer, an accomplished climber, went to the Himalayas as a client of Rob Hall, the most respected high-altitude guide in the world. A rangy, thirty-five-year-old New Zealander, Hall had summited Everest four times between 1990 and 1995 and had led thirty-nine climbers to the top. Ascending the mountain in close proximity to Hall's team was a guided expedition led by Scott Fischer, a forty-year-old American with legendary strength and drive who had climbed the peak without supplemental oxygen in 1994. But neither Hall nor Fischer survived the rogue storm that struck in May 1996.Krakauer examines what it is about Everest that has compelled so many people -- including himself -- to throw caution to the wind, ignore the concerns of loved ones, and willingly subject themselves to such risk, hardship, and expense. Written with emotional clarity and supported by his unimpeachable reporting, Krakauer's eyewitness account of what happened on the roof of the world is a singular achievement.",
 "When scholars write the history of the world twenty years from now, and they come to the chapter Y2K to March 2004 , what will they say was the most crucial development? The attacks on the World Trade Center on 9/11 and the Iraq war? Or the convergence of technology and events that allowed India, China, and so many other countries to become part of the global supply chain for services and manufacturing, creating an explosion of wealth in the middle classes of the world's two biggest nations, giving them a huge new stake in the success of globalisation? And with this flattening' of the globe, which requires us to run faster in order to stay in one place, has the world got too small and too fast for human beings and their political systems to adjust in a stable manner?In this brilliant new book, the award-winning New York Times columnist Thomas Friedman demystifies the brave new world for readers, allowing them to make sense of the often bewildering global scene unfolding before their eyes. With his inimitable ability to translate complex foreign policy and economic issues, Friedman explains how the flattening of the world happened at the dawn of the 21st century; what it means to countries, companies, communities and individuals; and how governments and societies can, and must, adapt.",
 'This is an alternate cover edition of ISBN 9780451529305.Generations of readers young and old, male and female, have fallen in love with the March sisters of Louisa May Alcott’s most popular and enduring novel, Little Women. Here are talented tomboy and author-to-be Jo, tragically frail Beth, beautiful Meg, and romantic, spoiled Amy, united in their devotion to each other and their struggles to survive in New England during the Civil War.It is no secret that Alcott based Little Women on her own early life. While her father, the freethinking reformer and abolitionist Bronson Alcott, hobnobbed with such eminent male authors as Emerson, Thoreau, and Hawthorne, Louisa supported herself and her sisters with "woman’s work,” including sewing, doing laundry, and acting as a domestic servant. But she soon discovered she could make more money writing. Little Women brought her lasting fame and fortune, and far from being the "girl’s book” her publisher requested, it explores such timeless themes as love and death, war and peace, the conflict between personal ambition and family responsibilities, and the clash of cultures between Europe and America.',
 'A Tale of Two Cities is Charles Dickens’s great historical novel, set against the violent upheaval of the French Revolution. The most famous and perhaps the most popular of his works, it compresses an event of immense complexity to the scale of a family history, with a cast of characters that includes a bloodthirsty ogress and an antihero as believably flawed as any in modern fiction. Though the least typical of the author’s novels, A Tale of Two Cities still underscores many of his enduring themes—imprisonment, injustice, social anarchy, resurrection, and the renunciation that fosters renewal.',
 "While writing Martin Chuzzlewit - his sixth novel - Dickens declared it 'immeasurably the best of my stories.' He was already famous as the author of The Pickwick Papers and Oliver Twist. Set partly in America, which Dickens had visited in 1842, the novel includes a searing satire on the United States. Martin Chuzzlewit is the story of two Chuzzlewits, Martin and Jonas, who have inherited the characteristic Chuzzlewit selfishness. It contrasts their diverse fates of moral redemption and worldly success for one, with increasingly desperate crime for the other. This powerful black comedy involves hypocrisy, greed and blackmail, as well as the most famous of Dickens's grotesques, Mrs Gamp.",
 'Beyond the God WallGenerations of a tormented human-alien people, caged on a toxic planet, conditioned by constant hunger and war-this is the Dosadi Experiment, and it has succeeded too well. For the Dosadi have bred for Vengeance as well as cunning, and they have learned how to pass through the shimmering God Wall to exact their dreadful revenge on the Universe that created them . . .',
 'Jorj McKie finds the last of the powerful Caleban species, damaged and fading, who must be freed from a power threatening all sentient life.',
 'Toby Stephens stars in this BBC Radio 4 full-cast dramatisation of Raymond Chandler’s third Philip Marlowe mystery.Fast-talking, trouble-seeking private eye Philip Marlowe is a different kind of detective: a moral man in an amoral world. California in the ’40s and ’50s is as beautiful as a ripe fruit and rotten to the core, and Marlowe must struggle to retain his integrity amidst the corruption he encounters daily.In The High Window, Marlowe starts out on the trail of a single stolen coin and ends up knee-deep in bodies. His client, a dried-up husk of a woman, wants him to recover a rare gold coin called a Brasher Doubloon, missing from her late husband’s collection. That’s the simple part.But Marlowe finds that everyone who handles the coin suffers a run of very bad luck: they always end up dead. If Marlowe doesn’t wrap this one up fast, he’s going to end up in jail - or worse, in a box in the ground.Starring Toby Stephens, this thrilling dramatisation by Robin Brooks retains all the wry humour of Chandler’s serpentine suspense novel. It was first broadcast on BBC Radio 4 on 8 October 2011.',
 "Marlowe's about to give up on a completely routine case when he finds himself in the wrong place at the right time to get caught up in a murder that leads to a ring of jewel thieves, another murder, a fortune-teller, a couple more murders, and more corruption than your average graveyard.",
 "Down these mean streets a man must go who is not himself mean, who is neither tarnished nor afraid....He is the hero; he is everything. He must be a complete man and a common man and yet an unusual man.This is the Code of the Private Eye as defined by Raymond Chandler in his 1944 essay The Simple Act of Murder. Such a man was Philip Marlowe, private eye, an educated, heroic, streetwise, rugged individualist and the hero of Chandler's first novel, The Big Sleep. This work established Chandler as the master of the 'hard-boiled' detective novel, and his articulate and literary style of writing won him a large audience, which ranged from the man in the street to the most sophisticated intellectual.",
 "Down-and-out drunk Terry Lennox has a problem: his millionaire wife is dead and he needs to get out of LA fast. So he turns to the only friend he can trust: private investigator Philip Marlowe. Marlowe is willing to help a man down on his luck, but later Lennox commits suicide in Mexico and things start to turn nasty. Marlowe is drawn into a sordid crowd of adulterers and alcoholics in LA's Idle Valley, where the rich are suffering one big suntanned hangover. Marlowe is sure Lennox didn't kill his wife, but how many stiffs will turn up before he gets to the truth?",
 'An innovative thinker tackles the controversial question of why we believe in God and how religion shapes our lives and our future.For a growing number of people, there is nothing more important than religion. It is an integral part of their marriage, child rearing, and community. In this daring new book, distinguished philosopher Daniel C. Dennett takes a hard look at this phenomenon and asks why. Where does our devotion to God come from and what purpose does it serve? Is religion a blind evolutionary compulsion or a rational choice? In "Breaking the Spell," Dennett argues that the time has come to shed the light of science on the fundamental questions of faith. In a spirited narrative that ranges widely through history, philosophy, and psychology, Dennett explores how organized religion evolved from folk beliefs and why it is such a potent force today. Deftly and lucidly, he contends that the "belief in belief" has fogged any attempt to rationally consider the existence of God and the relationship between divinity and human need."Breaking the Spell" is not an antireligious screed but rather an eyeopening exploration of the role that belief plays in our lives, our interactions, and our country. With the gulf between rationalists and adherents of "intelligent design" widening daily, Dennett has written a timely and provocative book that will be read and passionately debated by believers and nonbelievers alike.',
 'In a book that is both groundbreaking and accessible, Daniel C. Dennett, whom Chet Raymo of The Boston Globe calls "one of the most provocative thinkers on the planet," focuses his unerringly logical mind on the theory of natural selection, showing how Darwin\'s great idea transforms and illuminates our traditional view of humanity\'s place in the universe. Dennett vividly describes the theory itself and then extends Darwin\'s vision with impeccable arguments to their often surprising conclusions, challenging the views of some of the most famous scientists of our day.',
 'Can there be freedom and free will in a deterministic world? Renowned philosopher Daniel Dennett emphatically answers "yes!" Using an array of provocative formulations, Dennett sets out to show how we alone among the animals have evolved minds that give us free will and morality. Weaving a richly detailed narrative, Dennett explains in a series of strikingly original arguments—drawing upon evolutionary biology, cognitive neuroscience, economics, and philosophy—that far from being an enemy of traditional explorations of freedom, morality, and meaning, the evolutionary perspective can be an indispensable ally. In Freedom Evolves, Dennett seeks to place ethics on the foundation it deserves: a realistic, naturalistic, potentially unified vision of our place in nature.',
 'Brilliant, shattering, mind-jolting, The Mind\'s I is a searching, probing cosmic journey of the mind that goes deeply into the problem of self and self-consciousness as anything written in our time. From verbalizing chimpanzees to scientific speculations involving machines with souls, from the mesmerizing, maze-like fiction of Borges to the tantalizing, dreamlike fiction of Lem and Princess Ineffable, her circuits glowing read and gold, The Mind\'s I  opens the mind to the Black Box of fantasy, to the windfalls of reflection, to new dimensions of exciting possibilities."Ever since David Hume declared in the 18th century that the Self is only a heap of perceptions, the poor Ego has been in a shaky conditions indeed...Mind and consciousness becomes dispensable items in our accounts of reality, ghosts in the bodily machine...Yet there are indications here and there that the tide may be tuming...and the appearance of The Mind\'s I, edited by Douglas R. Hofstadter and Daniel C. Dennett, seems a welcome sign of change." William Barrett, The New York Times Book Review',
 'Stephen Hawking\'s worldwide bestseller, A Brief History of Time, has been a landmark volume in scientific writing. Its author\'s engaging voice is one reason, and the compelling subjects he addresses is another; the nature of space and time, the role of God in creation, the history and future of the universe. But it is also true that in the years since its publication, readers have repeatedly told Professor Hawking of their great difficulty in understanding some of the book\'s most important concepts. This is the origin of and the reason for A Briefer History of Time: its author\'s wish to make its content more accessible to readers - as well as to bring it up-to-date with the latest scientific observations and findings.Although this book is literally somewhat "briefer", it actually expands on the great subjects of the original. Purely technical concepts, such as the mathematics of chaotic boundary conditions, are gone. Conversely, subjects of wide interest that were difficult to follow because they were interspersed throughout the book have now been given entire chapters of their own, including relativity, curved space, and quantum theory.This reorganization has allowed the authors to expand areas of special interest and recent progress, from the latest developments in string theory to exciting developments in the search for a complete unified theory of all the forces of physics. Like prior editions of the book - but even more so - A Briefer History of Time will guide nonscientists everywhere in the ongoing search for the tantalizing secrets at the heart of time and space. Thirty-seven full-color illustrations enhance the text and make A Briefer History of Time an exhilarating addition in its own right to the literature of science.',
 'Stephen Hawking’s phenomenal, multimillion-copy bestseller, A Brief History of Time, introduced the ideas of this brilliant theoretical physicist to readers all over the world.Now, in a major publishing event, Hawking returns with a lavishly illustrated sequel that unravels the mysteries of the major breakthroughs that have occurred in the years since the release of his acclaimed first book.',
 'Titles include Atlas Shrugged and The Fountainhead.',
 "The revolutionary literary vision that sowed the seeds of Objectivism, Ayn Rand's groundbreaking philosophy, and brought her immediate worldwide acclaim.This modern classic is the story of intransigent young architect Howard Roark, whose integrity was as unyielding as granite...of Dominique Francon, the exquisitely beautiful woman who loved Roark passionately, but married his worst enemy...and of the fanatic denunciation unleashed by an enraged society against a great creator. As fresh today as it was then, Rand’s provocative novel presents one of the most challenging ideas in all of fiction—that man’s ego is the fountainhead of human progress...“A writer of great power. She has a subtle and ingenious mind and the capacity of writing brilliantly, beautifully, bitterly...This is the only novel of ideas written by an American woman that I can recall.”—The New York Times",
 'In Flesh and Blood, Michael Cunningham takes us on a masterful journey through four generations of the Stassos family as he examines the dynamics of a family struggling to "come of age" in the 20th century.  In 1950, Constantine Stassos, a Greek immigrant laborer, marries Mary Cuccio, an Italian-American girl, and together they produce three children: Susan, an ambitious beauty, Billy, a brilliant homosexual, and Zoe, a wild child. Over the years, a web of tangled longings, love, inadequacies and unfulfilled dreams unfolds as Mary and Constantine\'s marriage fails and Susan, Billy, and Zoe leave to make families of their own. Zoe raises a child with the help of a transvestite, Billy makes a life with another man, and Susan raises a son conceived in secret, each extending the meaning of family and love. With the power of a Greek tragedy, the story builds to a heartbreaking crescendo, allowing a glimpse into contemporary life which will echo in one\'s heart for years to come.',
 "The Extraordinary New York Times Bestseller  In California's central valley, five women and one man join to discuss Jane Austen's novels. Over the six months they get together, marriages are tested, affairs begin, unsuitable arrangements become suitable, and love happens. With her eye for the frailties of human behavior and her ear for the absurdities of social intercourse, Karen Joy Fowler has never been wittier nor her characters more appealing. The result is a delicious dissection of modern relationships.Dedicated Austenites will delight in unearthing the echoes of Austen that run through the novel, but most readers will simply enjoy the vision and voice that, despite two centuries of separation, unite two great writers of brilliant social comedy.",
 "Persuasion is Jane Austen's last completed novel. She began it soon after she had finished Emma, completing it in August 1816. She died, aged 41, in 1817; Persuasion was published in December that year (but dated 1818). Persuasion is linked to Northanger Abbey not only by the fact that the two books were originally bound up in one volume and published together, but also because both stories are set partly in Bath, a fashionable city with which Austen was well acquainted, having lived there from 1801 to 1805. Besides the theme of persuasion, the novel evokes other topics, such as the Royal Navy, in which two of Jane Austen's brothers ultimately rose to the rank of admiral. As in Northanger Abbey, the superficial social life of Bath-well known to Austen, who spent several relatively unhappy and unproductive years there-is portrayed extensively and serves as a setting for the second half of the book. In many respects Persuasion marks a break with Austen's previous works, both in the more biting, even irritable satire directed at some of the novel's characters and in the regretful, resigned outlook of its otherwise admirable heroine, Anne Elliot, in the first part of the story. Against this is set the energy and appeal of the Royal Navy, which symbolises for Anne and the reader the possibility of a more outgoing, engaged, and fulfilling life, and it is this worldview which triumphs for the most part at the end of the novel.",
 '"Economic hit men,” John Perkins writes, “are highly paid professionals who cheat countries around the globe out of trillions of dollars. Their tools include fraudulent financial reports, rigged elections, payoffs, extortion, sex, and murder.” John Perkins should know—he was an economic hit man. His job was to convince countries that are strategically important to the U.S.—from Indonesia to Panama—to accept enormous loans for infrastructure development, and to make sure that the lucrative projects were contracted to U. S. corporations. Saddled with huge debts, these countries came under the control of the United States government, World Bank and other U.S.-dominated aid agencies that acted like loan sharks—dictating repayment terms and bullying foreign governments into submission. This New York Times bestseller exposes international intrigue, corruption, and little-known government and corporate activities that have dire consequences for American democracy and the world. It is a compelling story that also offers hope and a vision for realizing the American dream of a just and compassionate world that will bring us greater security.',
 "Librarian's note: An alternate cover edition can be found hereThis short novel, already a modern classic, is the superbly told, tragic story of a Cuban fisherman in the Gulf Stream and the giant Marlin he kills and loses—specifically referred to in the citation accompanying the author's Nobel Prize for literature in 1954.",
 "Madame Bovary is the debut novel of French writer Gustave Flaubert, published in 1856. The character lives beyond her means in order to escape the banalities and emptiness of provincial life. When the novel was first serialized in La Revue de Paris between 1 October 1856 and 15 December 1856, public prosecutors attacked the novel for obscenity. The resulting trial in January 1857 made the story notorious. After Flaubert's acquittal on 7 February 1857, Madame Bovary became a bestseller in April 1857 when it was published in two volumes. A seminal work of literary realism, the novel is now considered Flaubert's masterpiece, and one of the most influential literary works in history.",
 'Based on Flaubert’s own youthful passion for an older woman, Sentimental Education was described by its author as “the moral history of the men of my generation.” It follows the amorous adventures of Frederic Moreau, a law student who, returning home to Normandy from Paris, notices Mme Arnoux, a slender, dark woman several years older than himself. It is the beginning of an infatuation that will last a lifetime. He befriends her husband, an influential businessman, and as their paths cross and re-cross over the years, Mme Arnoux remains the constant, unattainable love of Moreau’s life. Blending love story, historical authenticity, and satire, Sentimental Education is one of the great French novels of the nineteenth century.',
 'Middlesex tells the breathtaking story of Calliope Stephanides, and three generations of the Greek-American Stephanides family, who travel from a tiny village overlooking Mount Olympus in Asia Minor to Prohibition-era Detroit, witnessing its glory days as the Motor City and the race riots of 1967 before moving out to the tree-lined streets of suburban Grosse Pointe, Michigan. To understand why Calliope is not like other girls, she has to uncover a guilty family secret, and the astonishing genetic history that turns Callie into Cal, one of the most audacious and wondrous narrators in contemporary fiction. Lyrical and thrilling, Middlesex is an exhilarating reinvention of the American epic.',
 "Winner of the Lincoln PrizeAcclaimed historian Doris Kearns Goodwin illuminates Lincoln's political genius in this highly original work, as the one-term congressman and prairie lawyer rises from obscurity to prevail over three gifted rivals of national reputation to become president.On May 18, 1860, William H. Seward, Salmon P. Chase, Edward Bates, and Abraham Lincoln waited in their hometowns for the results from the Republican National Convention in Chicago. When Lincoln emerged as the victor, his rivals were dismayed and angry.Throughout the turbulent 1850s, each had energetically sought the presidency as the conflict over slavery was leading inexorably to secession and civil war. That Lincoln succeeded, Goodwin demonstrates, was the result of a character that had been forged by experiences that raised him above his more privileged and accomplished rivals. He won because he possessed an extraordinary ability to put himself in the place of other men, to experience what they were feeling, to understand their motives and desires.It was this capacity that enabled Lincoln as president to bring his disgruntled opponents together, create the most unusual cabinet in history, and marshal their talents to the task of preserving the Union and winning the war.We view the long, horrifying struggle from the vantage of the White House as Lincoln copes with incompetent generals, hostile congressmen, and his raucous cabinet. He overcomes these obstacles by winning the respect of his former competitors, and in the case of Seward, finds a loyal and crucial friend to see him through.This brilliant multiple biography is centered on Lincoln's mastery of men and how it shaped the most significant presidency in the nation's history.",
 'The enthralling, often surprising story of John Adams, one of the most important and fascinating Americans who ever lived.In this powerful, epic biography, David McCullough unfolds the adventurous life-journey of John Adams, the brilliant, fiercely independent, often irascible, always honest Yankee patriot -- "the colossus of independence," as Thomas Jefferson called him -- who spared nothing in his zeal for the American Revolution; who rose to become the second President of the United States and saved the country from blundering into an unnecessary war; who was learned beyond all but a few and regarded by some as "out of his senses"; and whose marriage to the wise and valiant Abigail Adams is one of the moving love stories in American history. Like his masterly, Pulitzer Prize-winning biography Truman, David McCullough\'s John Adams has the sweep and vitality of a great novel. It is both a riveting portrait of an abundantly human man and a vivid evocation of his time, much of it drawn from an outstanding collection of Adams family letters and diaries. In particular, the more than one thousand surviving letters between John and Abigail Adams, nearly half of which have never been published, provide extraordinary access to their private lives and make it possible to know John Adams as no other major American of his founding era. As he has with stunning effect in his previous books, McCullough tells the story from within -- from the point of view of the amazing eighteenth century and of those who, caught up in events, had no sure way of knowing how things would turn out. George Washington, Benjamin Franklin, John Jay, the British spy Edward Bancroft, Madame Lafayette and Jefferson\'s Paris "interest" Maria Cosway, Alexander Hamilton, James Madison, the scandalmonger James Callender, Sally Hemings, John Marshall, Talleyrand, and Aaron Burr all figure in this panoramic chronicle, as does, importantly, John Quincy Adams, the adored son whom Adams would live to see become President. Crucial to the story, as it was to history, is the relationship between Adams and Jefferson, born opposites -- one a Massachusetts farmer\'s son, the other a Virginia aristocrat and slaveholder, one short and stout, the other tall and spare. Adams embraced conflict; Jefferson avoided it. Adams had great humor; Jefferson, very little. But they were alike in their devotion to their country. At first they were ardent co-revolutionaries, then fellow diplomats and close friends. With the advent of the two political parties, they became archrivals, even enemies, in the intense struggle for the presidency in 1800, perhaps the most vicious election in history. Then, amazingly, they became friends again, and ultimately, incredibly, they died on the same day -- their day of days -- July 4, in the year 1826. Much about John Adams\'s life will come as a surprise to many readers. His courageous voyage on the frigate Boston in the winter of 1778 and his later trek over the Pyrenees are exploits that few would have dared and that few readers will ever forget. It is a life encompassing a huge arc -- Adams lived longer than any president. The story ranges from the Boston Massacre to Philadelphia in 1776 to the Versailles of Louis XVI, from Spain to Amsterdam, from the Court of St. James\'s, where Adams was the first American to stand before King George III as a representative of the new nation, to the raw, half-finished Capital by the Potomac, where Adams was the first President to occupy the White House. This is history on a grand scale -- a book about politics and war and social issues, but also about human nature, love, religious faith, virtue, ambition, friendship and betrayal, and the far-reaching consequences of noble ideas. Above all, John Adams is an enthralling, often surprising story of one of the most important and fascinating Americans who ever lived.',
 'The 20th Anniversary Edition with a New Afterword and Revisions by Dan Millman. A book that could change your When Dan Millman was a young man, he expected that hard work would eventually bring a life of comfort, wisdom, and happiness. Yet, despite his many successes, he was haunted by the feeling that something was missing. Awakened by dark dreams one night, Dan found himself at a gas station with an old man named Socrates, and his world was changed forever. Guided by this eccentric old warrior, and inspired by a young woman named Joy, Dan began a spiritual odyssey into realms of light and shadow, romance and mystery, toward a final confrontation that would deliver or destroy him. Inspirational and spiritual This autobiographical novel is one of the most beloved spiritual sagas of our time. For decades, friends and families around the world have shared the book that teaches the way of the peaceful warrior. Life as a peaceful warrior is a life of meditation, mindfulness, compassion, and acceptance. Help in these tumultuous In this 20th anniversary edition, the author offers an updated afterword for a new generation of readers looking for grounding in tumultuous times. Way of the Peaceful Warrior is the iconic first book from Dan Millman. His other guides to peaceful warrior life include The Life You Were Born to Live and The Hidden School . If you loved The Heart of the Shaman , The Magic Mala , and The Celestine Prophecy , you’ll be moved by the inspiration and spirituality of Way of the Peaceful Warrior .',
 "It is such an all-American story. A lanky kid from Plano, Texas, is raised by a feisty, single parent who sacrifices for her son, who becomes one of our country's greatest athletes. Given that background, it is understandable why Armstrong was able to channel his boundless energy toward athletic endeavors. By his senior year in high school, he was already a professional triathlete and was training with the U.S. Olympic cycling developmental team. In 1993, Armstrong secured a position in the ranks of world-class cyclists by winning the World Championship and a Tour de France stage, but in 1996, he was diagnosed with testicular cancer. Armstrong entered an unknown battlefield and challenged it as if climbing through the Alps: aggressive yet tactical. He beat the cancer and proceeded to stun all the pundits by winning the 1999 Tour de France. In this memoir, Armstrong covers his early years swiftly with a blunt matter-of-factness, but the main focus is on his battle with cancer. Readers will respond to the inspirational recovery story, and they will appreciate the behind-the-scenes cycling information. After he won the Tour, his mother was quoted as saying that her son's whole life has been a fight against the odds; we see here that she was not exaggerating. Brenda Barrera",
 'The Pulitzer Prize–winning biography of Harry S. Truman, whose presidency included momentous events from the atomic bombing of Japan to the outbreak of the Cold War and the Korean War, told by America’s beloved and distinguished historian.The life of Harry S. Truman is one of the greatest of American stories, filled with vivid characters—Roosevelt, Churchill, Stalin, Eleanor Roosevelt, Bess Wallace Truman, George Marshall, Joe McCarthy, and Dean Acheson—and dramatic events. In this riveting biography, acclaimed historian David McCullough not only captures the man—a more complex, informed, and determined man than ever before imagined—but also the turbulent times in which he rose, boldly, to meet unprecedented challenges. The last president to serve as a living link between the nineteenth and the twentieth centuries, Truman’s story spans the raw world of the Missouri frontier, World War I, the powerful Pendergast machine of Kansas City, the legendary Whistle-Stop Campaign of 1948, and the decisions to drop the atomic bomb, confront Stalin at Potsdam, send troops to Korea, and fire General MacArthur. Drawing on newly discovered archival material and extensive interviews with Truman’s own family, friends, and Washington colleagues, McCullough tells the deeply moving story of the seemingly ordinary “man from Missouri” who was perhaps the most courageous president in our history.',
 'Published when Truman Capote was only twenty-three years old, Other Voices, Other Rooms is a literary touchstone of the mid-twentieth century. In this semiautobiographical coming-of-age novel, thirteen-year-old Joel Knox, after losing his mother, is sent from New Orleans to live with the father who abandoned him at birth. But when Joel arrives at Skully’s Landing, the decaying mansion in rural Alabama, his father is nowhere to be found. Instead, Joel meets his morose stepmother, Amy, eccentric cousin Randolph, and a defiant little girl named Idabel, who soon offers Joel the love and approval he seeks.Fueled by a world-weariness that belied Capote’s tender age, this novel tempers its themes of waylaid hopes and lost innocence with an appreciation for small pleasures and the colorful language of its time and place.This new edition, featuring an enlightening Introduction by John Berendt, offers readers a fresh look at Capote’s emerging brilliance as a writer of protean power and effortless grace.From the Hardcover edition.',
 'Tandia sat waiting anxiously for the fight to begin between the man she loved the most in the world and the man she hated the most in the world.Tandia is a child of Africa: half Indian, half African, beautiful and intelligent, she is only sixteen when she is first brutalised by the police. Her fear of the white man leads her to join the black resistance movement, where she trains as a terrorist.With her in the fight for justice is the one white man Tandia can trust, the welterweight champion of the world, Peekay. Now he must fight their common enemy in order to save both their lives.',
 "Billy O'Shannessy, once a prominent barrister, is now on the street where he sleeps on a bench outside the State Library. Above him on the window sill rests a bronze statue of Matthew Flinders' cat, Trim. Ryan is a ten-year-old, a near street kid heading for all the usual trouble. The two meet and form an unlikely friendship. Appealing to the boy's imagination by telling him the story of the circumnavigation of Australia as seen through Trim's eyes, Billy is drawn deeply into Ryan's life and into the Sydney underworld. Over several months the two begin the mutual process of rehabilitation. Matthew Flinders' Cat is a modern-day story of a city, its crime, the plight of the homeless and the politics of greed and perversion. It is also a story of the human heart, with an enchanting glimpse into our past from the viewpoint of a famous cat.",
 "Jessica is based on the inspiring true story of a young girl's fight for justice against tremendous odds.A tomboy, Jessica is the pride of her father, as they work together on the struggling family farm. One quiet day, the peace of the bush is devastated by a terrible murder. Only Jessica is able to save the killer from the lynch mob – but will justice prevail in the courts?Nine months later, a baby is born … with Jessica determined to guard the secret of the father's identity. The rivalry of Jessica and her beautiful sister for the love of the same man will echo throughout their lives – until finally the truth must be told.Set in the harsh Australian bush against the outbreak of World War I, this novel is heartbreaking in its innocence, and shattering in its brutality.'A deserved bestseller, based on fact, a story told with heartbreaking honesty.' Australian Women's Weekly'Courtenay draws on the social satire of Jane Austen and the dark forces of Thomas Hardy, and his tragic heroine parallels Antigone … ' Herald Sun",
 "Brutally kidnapped and separated in childhood, Tommo and Hawk are reunited at the age of fifteen in Hobart. Together they escape their troubled pasts and set off on a journey into manhood. From whale hunting in the Pacific to the Maori wars of New Zealand, from the Rocks in Sydney to the miners' riots at the goldfields, Tommo and Hawk must learn each other's strengths and weaknesses in order to survive. Especially in their last, worst confrontation between good and evil. Brilliantly evoking a time of struggle and triumph in the young colonies, Bryce Courtenay has created an unforgettable tale of the enduring bond between two brothers.",
 'Published on the fortieth anniversary of its initial publication, this edition of the classic book contains a new Preface by David McCullough, “one of our most gifted living writers” (The Washington Post).Built to join the rapidly expanding cities of New York and Brooklyn, the Brooklyn Bridge was thought by many at the start to be an impossibility destined to fail if not from insurmountable technical problems then from political corruption. (It was the heyday of Boss Tweed in New York.)  But the Brooklyn Bridge was at once the greatest engineering triumph of the age, a surpassing work of art, a proud American icon, and a story like no other in our history. Courage, chicanery, unprecedented ingenuity and plain blundering, heroes, rascals, all the best and worst in human nature played a part. At the center of the drama were the stricken chief engineer, Washington Roebling and his remarkable wife, Emily Warren Roebling, neither of whom ever gave up in the face of one heartbreaking setback after another.  The Great Bridge is a sweeping narrative of a stupendous American achievement that rose up out of its era like a cathedral, a symbol of affirmation then and still in our time.',
 "Lincoln Rhyme was once a brilliant criminologist, a genius in the field of forensics -- until an accident left him physically and emotionally shattered. But now a diabolical killer is challenging Rhyme to a terrifying and ingenious duel of wits. With police detective Amelia Sachs by his side, Rhyme must follow a labyrinth of clues that reaches back to a dark chapter in New York City's past -- and reach further into the darkness of the mind of a madman who won't stop until he has stripped life down to the bone.",
 'Be careful what you wish for...Once upon a time there was a fairy godmother named Desiderata who had a good heart, a wise head, and poor planning skills—which unfortunately left the Princess Emberella in the care of her other (not quite so good and wise) godmother when DEATH came for Desiderata. So now it\'s up to Magrat Garlick, Granny Weatherwax, and Nanny Ogg to hop on broomsticks and make for far-distant Genua to ensure the servant girl doesn\'t marry the Prince.But the road to Genua is bumpy, and along the way the trio of witches encounters the occasional vampire, werewolf, and falling house (well this is a fairy tale, after all). The trouble really begins once these reluctant foster-godmothers arrive in Genua and must outwit their power-hungry counterpart who\'ll stop at nothing to achieve a proper "happy ending"—even if it means destroying a kingdom.',
 '“I’ve had a most amazing time....”So begins the Time Traveller’s astonishing firsthand account of his journey 800,000 years beyond his own era—and the story that launched H.G. Wells’s successful career and earned him his reputation as the father of science fiction. With a speculative leap that still fires the imagination, Wells sends his brave explorer to face a future burdened with our greatest hopes...and our darkest fears. A pull of the Time Machine’s lever propels him to the age of a slowly dying Earth.\xa0 There he discovers two bizarre races—the ethereal Eloi and the subterranean Morlocks—who not only symbolize the duality of human nature, but offer a terrifying portrait of the men of tomorrow as well.\xa0 Published in 1895, this masterpiece of invention captivated readers on the threshold of a new century. Thanks to Wells’s expert storytelling and provocative insight, The Time Machine will continue to enthrall readers for generations to come.\xa0',
 'When an army of invading Martians lands in England, panic and terror seize the population. As the aliens traverse the country in huge three-legged machines, incinerating all in their path with a heat ray and spreading noxious toxic gases, the people of the Earth must come to terms with the prospect of the end of human civilization and the beginning of Martian rule.Inspiring films, radio dramas, comic-book adaptations, television series and sequels,The War of the Worlds is a prototypical work of science fiction which has influenced every alien story that has come since, and is unsurpassed in its ability to thrill, well over a century since it was first published.',
 'At once a fiendishly devious mystery, a beguiling love story, and a brilliant symposium on the power of art, My Name Is Red is a transporting tale set amid the splendor and religious intrigue of sixteenth-century Istanbul, from one of the most prominent contemporary Turkish writers.The Sultan has commissioned a cadre of the most acclaimed artists in the land to create a great book celebrating the glories of his realm. Their task: to illuminate the work in the European style. But because figurative art can be deemed an affront to Islam, this commission is a dangerous proposition indeed. The ruling elite therefore mustn’t know the full scope or nature of the project, and panic erupts when one of the chosen miniaturists disappears. The only clue to the mystery–or crime? –lies in the half-finished illuminations themselves. Part fantasy and part philosophical puzzle, My Name is Red is a kaleidoscopic journey to the intersection of art, religion, love, sex and power.',
 "\nNo food, no water, no government, no obligation, no order.\nDiscover a chillingly powerful and prescient dystopian vision from one of Europe's greatest writers. A driver waiting at the traffic lights goes blind. An ophthalmologist tries to diagnose his distinctive white blindness, but is affected before he can read the textbooks. It becomes a contagion, spreading throughout the city. Trying to stem the epidemic, the authorities herd the afflicted into a mental asylum where the wards are terrorised by blind thugs. And when fire destroys the asylum, the inmates burst forth and the last links with a supposedly civilised society are snapped.\nThis is not anarchy, this is blindness.\n‘Saramago repeatedly undertakes to unite the pressing demands of the present with an unfolding vision of the future. This is his most apocalyptic, and most optimistic, version of that project yet’ Independent",
 "Senhor José is a low-grade clerk in the city's Central Registry, where the living and the dead share the same shelf space. A middle-aged bachelor, he has no interest in anything beyond the certificates of birth, marriage, divorce, and death, that are his daily routine. But one day, when he comes across the records of an anonymous young woman, something happens to him. Obsessed, Senhor José sets off to follow the thread that may lead him to the woman-but as he gets closer, he discovers more about her, and about himself, than he would ever have wished.The loneliness of people's lives, the effects of chance, the discovery of love-all coalesce in this extraordinary novel that displays the power and art of José Saramago in brilliant form.",
 'From the recipient of the 1998 Nobel Prize in Literature, a “brilliant...enchanting novel” (New York Times Book Review) of romance, deceit, religion, and magic set in eighteenth-century Portugal at the height of the Inquisition. National bestseller. Translated by Giovanni Pontiero.When King and Church exercise absolute power what happens to the dreams of ordinary people? In early eighteenth century Lisbon, Baltasar, a soldier who has lost a hand in battle, falls in love with Blimunda, a young girl with strange visionary powers. From the day that he follows her home from the auto-da-fé where her mother is condemned and sent into exile, the two are bound body and soul by a love of unassailable strength. A third party shares their supper that evening: Padre Bartolemeu Lourenço, whose fantasy is to invent a flying machine. As the inquisition rages and royalty and religion clash, they pursue his impossible, not to mention heretical, dream of flight.',
 "José Saramago is a master at pacing. Readers unfamiliar with the work of this Portuguese Nobel Prize winner would do well to begin with The Cave, a novel of ideas, shaded with suspense. Spare and pensive, The Cave follows the fortunes of an aging potter, Cipriano Algor, beginning with his weekly delivery of plates to the Center, a high-walled, windowless shopping complex, residential community, and nerve center that dominates the region. What sells at the Center will sell everywhere else, and what the Center rejects can barely be given away in the surrounding towns and villages. The news for Cipriano that morning isn't good. Half of his regular pottery shipment is rejected, and he is told that the consumers now prefer plastic tableware. Over the next week, he and his grown daughter Marta grieve for their lost craft, but they gradually open their eyes to the strange bounty of their new condition: a stray dog adopts them, and a lovely widow enters Cipriano's life. When they are invited to live at the Center, it seems ungracious to refuse, but there are some strange developments under the complex, and a troubling increase in security, and Cipriano changes all their fates by deciding to investigate. In Saramago's able hands, what might have become a dry social allegory is a delicately elaborated story of individualism and unexpected love. --Regina Marler",
 'When the Iberian Peninsula breaks free of Europe and begins to drift across the North Atlantic, five people are drawn together on the newly formed island-first by surreal events and then by love. “A splendidly imagined epic voyage...a fabulous fable” (Kirkus Reviews). Translated by Giovanni Pontiero.',
 "The world's threats are universal like the sun but Ricardo Reis takes shelter under his own shadow.Back in Lisbon after sixteen years practicing medicine in Brazil, Ricardo Reis wanders the rain-sodden streets. He longs for the unattainably aristocratic Marcenda, but it is Lydia, the hotel chamber maid who makes and shares his bed. His old friend, the poet Fernando Pessoa, returns to see him, still wearing the suit he was buried in six weeks earlier. It is 1936, the clouds of Fascism are gathering ominously above them, so they talk; a wonderful, rambling discourse on art, truth, poetry, philosophy, destiny and love.",
 'This thought-provoking collection of strange, subtle, but meaningful parables casts an ironic light on the beliefs, hopes, and vanities of humankind.',
 'Kahlil Gibran’s masterpiece, The Prophet, is one of the most beloved classics of our time. Published in 1923, it has been translated into more than twenty languages, and the American editions alone have sold more than nine million copies.The Prophet is a collection of poetic essays that are philosophical, spiritual, and, above all, inspirational. Gibran’s musings are divided into twenty-eight chapters covering such sprawling topics as love, marriage, children, giving, eating and drinking, work, joy and sorrow, housing, clothes, buying and selling, crime and punishment, laws, freedom, reason and passion, pain, self-knowledge, teaching, friendship, talking, time, good and evil, prayer, pleasure, beauty, religion, and death.',
 'A dazzling memoir of an African childhood from Nobel Prize-winning Nigerian novelist, playwright, and poet Wole Soyinka. "Aké: The Years of Childhood" gives us the story of Soyinka\'s boyhood before and during World War II in a Yoruba village in western Nigeria called Aké. A relentlessly curious child who loved books and getting into trouble, Soyinka grew up on a parsonage compound, raised by Christian parents and by a grandfather who introduced him to Yoruba spiritual traditions. His vivid evocation of the colorful sights, sounds, and aromas of the world that shaped him is both lyrically beautiful and laced with humor and the sheer delight of a child\'s-eye view.A classic of African autobiography, "Aké" is also a transcendantly timeless portrait of the mysteries of childhood.',
 'We think Chris Anderson is onto something big with \'The Long Tail\', a groundbreaking look at a well-known feature of statistical distribution and its potential to revolutionize business. \'Wired\' magazine editor Anderson expands his influential 2004 article into a comprehensive exploration of this phenomenon -- which, simply stated, holds that products with low demand or sales volume can collectively comprise a market that exceeds the bestsellers. Catering to the tastes and expectations of consumers increasingly disenchanted with the same old thing, these new "niches" provide limitless opportunity for savvy companies. Fresh, insightful, and surprisingly accessible, \'The Long Tail\' explains how to tap into the new economics of abundance.',
 'Napisanie tej książki z pewnością było punktem przełomowym w życiu Malcolma Gladwella - dzięki niej stał się guru zarządzania oraz zyskał miano jednego z najbardziej wpływowych ludzi na świecie.Dlaczego Ulica Sezamkowa wcale nie jest dobra w edukowaniu maluchów?Co zrobić, żeby w Nowym Jorku spadła przestępczość?Kim jest mawen?Książka pokazuje, że narodziny nowej mody czy nowego trendu zależą od pewnego przełomowego, zwrotnego momentu, często pozornie nieważnego. Gladwell szczegółowo pokazuje cykl życia oraz istotę trendu - jakim jest zarówno trend rynkowy, jak i epidemia grypy, przestępczości czy moda na buty określonej marki. Tytułowy „punkt przełomowy” to magiczny moment, decydujący o tym, że pomysł, idea kilku osób staje się modą, trendem lub... przeradza się w nagonkę. Dlaczego nagle wszyscy modni ludzie w Ameryce zaczęli nosić (przez długi czas pogardzane) buty marki Hush Puppies, a firma je produkująca stała się światowym brandem? - odpowiedź w książce.',
 "Great Expectations charts the progress of Pip from childhood through often painful experiences to adulthood, as he moves from the Kent marshes to busy, commercial London, encountering a variety of extraordinary characters ranging from Magwitch, the escaped convict, to Miss Havisham, locked up with her unhappy past and living with her ward, the arrogant, beautiful Estella.Pip must discover his true self, and his own set of values and priorities. Whether such values allow one to prosper in the complex world of early Victorian England is the major question posed by Great Expectations, one of Dickens's most fascinating, and disturbing, novels.This edition includes the original, discarded ending, Dickens's brief working notes, and the serial instalments and chapter divisions in different editions. It also uses the definitive Clarendon text.",
 "'Shoot all the bluejays you want, if you can hit 'em, but remember it's a sin to kill a mockingbird.'A lawyer's advice to his children as he defends the real mockingbird of Harper Lee's classic novel - a black man charged with the rape of a white girl. Through the young eyes of Scout and Jem Finch, Harper Lee explores with exuberant humour the irrationality of adult attitudes to race and class in the Deep South of the 1930s. The conscience of a town steeped in prejudice, violence and hypocrisy is pricked by the stamina of one man's struggle for justice. But the weight of history will only tolerate so much.",
 "Alternate cover edition of ISBN 9780553381344.The Bonfire of the Vanities is a 1987 satirical novel by Tom Wolfe. The story is a drama about ambition, racism, social class, politics, and greed in 1980s New York City, and centers on three main characters: WASP bond trader Sherman McCoy, Jewish assistant district attorney Larry Kramer, and British expatriate journalist Peter Fallow.The novel was originally conceived as a serial in the style of Charles Dickens' writings: It ran in 27 installments in Rolling Stone starting in 1984. Wolfe heavily revised it before it was published in book form. The novel was a bestseller and a phenomenal success, even in comparison with Wolfe's other books. It has often been called the quintessential novel of the 1980s.",
 'The originality, concentrated power and ‘fierce indignation’ of his satirical writing have earned Jonathan Swift a reputation as the greatest prose satirist in English literature. Gulliver’s Travels is, of course, his world renowned masterpiece in the genre; however, Swift wrote other, shorter works that also offer excellent evidence of his inspired lampoonery. Perhaps the most famous of these is A Modest Proposal, in which he straight-facedly suggests that Ireland could solve its hunger problems by using its children for food. Also included in this collection are The Battle of Books, A Meditation upon a Broomstick, A Discourse Concerning the Mechanical Operations of the Spirit and An Argument Against Abolishing Christianity in England.This inexpensive edition will certainly be welcomed by teachers and students of English literature, but its appeal extends to any reader who delights in watching a master satirist wield words as weapons.',
 'Enduring Literature Illuminated by Practical Scholarship  By turns a children\'s fantasy and a social satire for adults, Gulliver\'s Travels is one of the most popular adventure tales of all time. "A Modest Proposal," also an imaginative, enduring work, is political lampoonery at its finest.  This Enriched Classic Edition includes:  \x95 A concise introduction that gives readers important background information  \x95 A chronology of the author\'s life and work  \x95 A timeline of significant events that provides the book\'s historical context  \x95 An outline of key themes and plot points to help readers form their own interpretations  \x95 Detailed explanatory notes  \x95 Critical analysis, including contemporary and modern perspectives on the work  \x95 Discussion questions to promote lively classroom and book group interaction  \x95 A list of recommended related books and films to broaden the reader\'s experience  Enriched Classics offer readers affordable editions of great works of literature enhanced by helpful notes and insightful commentary. The scholarship provided in Enriched Classics enables readers to appreciate, understand, and enjoy the world\'s finest books to their full potential.  Series edited by Cynthia Brantley Johnson',
 "The procession that crosses Chaucer's pages is as full of life and as richly textured as a medieval tapestry. The Knight, the Miller, the Friar, the Squire, the Prioress, the Wife of Bath, and others who make up the cast of characters -- including Chaucer himself -- are real people, with human emotions and weaknesses. When it is remembered that Chaucer wrote in English at a time when Latin was the standard literary language across western Europe, the magnitude of his achievement is even more remarkable. But Chaucer's genius needs no historical introduction; it bursts forth from every page of The Canterbury Tales.If we trust the General Prologue, Chaucer intended that each pilgrim should tell two tales on the way to Canterbury and two tales on the way back. He never finished his enormous project and even the completed tales were not finally revised. Scholars are uncertain about the order of the tales. As the printing press had yet to be invented when Chaucer wrote his works, The Canterbury Tales has been passed down in several handwritten manuscripts.",
 'Binh, a Vietnamese cook, flees Saigon in 1929, disgracing his family to serve as a galley hand at sea. The taunts of his now-deceased father ringing in his ears, Binh answers an ad for a live-in cook at a Parisian household, and soon finds himself employed by Gertrude Stein and Alice B. Toklas.Toklas and Stein hold court in their literary salon, for which the devoted yet acerbic Binh serves as chef, and as a keen observer of his "Mesdames" and their distinguished guests. But when the enigmatic literary ladies decide to journey back to America, Binh is faced with a monumental choice: will he, the self-imposed "exile," accompany them to yet another new country, return to his native Vietnam, or make Paris his home?',
 'Set in an unnamed Persian Gulf kingdom in the 1930s, this remarkable novel tells the story of the disruption and diaspora of a poor oasis community following the discovery of oil there. The meeting of the Arabs and the Americans who, in essence, colonize the remote region is a cultural confrontation in which religion, history, superstition, and mutual incomprehension all play a part.Powerful political fiction that it is, CITIES OF SALT has been banned in several Arab countries, including Saudi Arabia. This novel, the first volume in a trilogy, has been translated from the Arabic to the English by Peter Theroux.',
 "It is the fourteenth century and one of the most apocalyptic events in human history is set to occur - the coming of the Black Death. History teaches us that a third of Europe's population was destroyed. But what if? What if the plague killed 99 percent of the population instead? How would the world have changed? This is a look at the history that could have been: a history that stretches across centuries, a history that sees dynasties and nations rise and crumble, a history that spans horrible famine and magnificent innovation. These are the years of rice and salt.",
 'Imagine a young boy who has never had a loving home. His only possesions are the old, torn clothes he carries in a paper bag. The only world he knows is one of isolation and fear. Although others had rescued this boy from his abusive alcoholic mother, his real hurt is just begining -- he has no place to call home.This is Dave Pelzer\'s long-awaited sequel to A Child Called "It". In The Lost Boy, he answers questions and reveals new adventures through the compelling story of his life as an adolescent. Now considered an F-Child (Foster Child), Dave is moved in and out of five different homes. He suffers shame and experiences resentment from those who feel that all foster kids are trouble and unworthy of being loved just because they are not part of a "real" family.Tears, laughter, devastation and hope create the journey of this little lost boy who searches desperately for just one thing -- the love of a family.',
 "God is dead. Meet the kids.Fat Charlie Nancy's normal life ended the moment his father dropped dead on a Florida karaoke stage. Charlie didn't know his dad was a god. And he never knew he had a brother. Now brother Spider's on his doorstep -- about to make Fat Charlie's life more interesting... and a lot more dangerous.",
 'Narrated in the form of a Powerbook entry by Dan Underwood, a computer programmer for Microsoft, this state-of-the-art novel about life in the \'90s follows the adventures of six code-crunching computer whizzes. Known as "microserfs," they spend upward of 16 hours a day "coding" (writing software) as they eat "flat" foods (such as Kraft singles, which can be passed underneath closed doors) and fearfully scan the company email to see what the great Bill might be thinking and whether he is going to "flame" one of them. Seizing the chance to be innovators instead of cogs in the Microsoft machine, this intrepid bunch strike out on their own to form a high-tech start-up company named Oop! in Silicon Valley. Living together in a sort of digital flophouse --"Our House of Wayward Mobility" -- they desperately try to cultivate well-rounded lives and find love amid the dislocated, subhuman whir and buzz of their computer-driven world.Funny, illuminating and ultimately touching, Microserfs is the story of one generation\'s very strange and claustrophobic coming of age.',
 'Winner of the Pulitzer prize in 1974 and the culmination of a life\'s work, The Denial of Death is Ernest Becker\'s brilliant and impassioned answer to the "why" of human existence. In bold contrast to the predominant Freudian school of thought, Becker tackles the problem of the vital lie -- man\'s refusal to acknowledge his own mortality. In doing so, he sheds new light on the nature of humanity and issues a call to life and its living that still resonates more than twenty years after its writing.',
 'In the book, Zinn presented a different side of history from the more traditional "fundamental nationalist glorification of country". Zinn portrays a side of American history that can largely be seen as the exploitation and manipulation of the majority by rigged systems that hugely favor a small aggregate of elite rulers from across the orthodox political parties.A People\'s History has been assigned as reading in many high schools and colleges across the United States. It has also resulted in a change in the focus of historical work, which now includes stories that previously were ignoredLibrary Journal calls Howard Zinn’s book “a brilliant and moving history of the American people from the point of view of those…whose plight has been largely omitted from most histories.”',
 'John Berger’s Classic Text on ArtWays of Seeing is one of the most stimulating and the most influential books on art in any language. First published in 1972, it was based on the BBC television series about which the (London) Sunday Times a critic commented: "This is an eye-opener in more ways than one: by concentrating on how we look at paintings . . . he will almost certainly change the way you look at pictures." By now he has."Berger has the ability to cut right through the mystification of the professional art critics . . . He is a liberator of images: and once we have allowed the paintings to work on us directly, we are in a much better position to make a meaningful evaluation" —Peter Fuller, Arts Review"The influence of the series and the book . . . was enormous . . . It opened up for general attention to areas of cultural study that are now commonplace" —Geoff Dyer in Ways of Telling.',
 "Suffused with rich satire, chaotic brilliance, verbal turbulence and wild humor, The Crying of Lot 49 opens as Oedipa Maas discovers that she has been made executrix of a former lover's estate. The performance of her duties sets her on a strange trail of detection, in which bizarre characters crowd in to help or confuse her. But gradually, death, drugs, madness, and marriage combine to leave Oedipa in isolation on the threshold of revelation, awaiting the Crying of Lot 49.",
 "Jess Aarons' greatest ambition is to be the fastest runner in his grade. He's been practicing all summer and can't wait to see his classmates' faces when he beats them all. But on the first day of school, a new girl boldly crosses over to the boys' side and outruns everyone.That's not a very promising beginning for a friendship, but Jess and Leslie Burke become inseparable. Together they create Terabithia, a magical kingdom in the woods where the two of them reign as king and queen, and their imaginations set the only limits.",
 "With precisely 35 canvases to his credit, the Dutch painter Johannes Vermeer represents one of the great enigmas of 17th-century art. The meager facts of his biography have been gleaned from a handful of legal documents. Yet Vermeer's extraordinary paintings of domestic life, with their subtle play of light and texture, have come to define the Dutch golden age. His portrait of the anonymous Girl with a Pearl Earring has exerted a particular fascination for centuries—and it is this magnetic painting that lies at the heart of Tracy Chevalier's second novel of the same title.Girl with a Pearl Earring centers on Vermeer's prosperous Delft household during the 1660s. When Griet, the novel's quietly perceptive heroine, is hired as a servant, turmoil follows. First, the 16-year-old narrator becomes increasingly intimate with her master. Then Vermeer employs her as his assistant—and ultimately has Griet sit for him as a model.",
 "In her New York Times bestselling follow-up, Tracy Chevalier once again paints a distant age with a rich and provocative palette of characters. Told through a variety of shifting perspectives- wives and husbands, friends and lovers, masters and their servants, and a gravedigger's son-Falling Angels follows the fortunes of two families in the emerging years of the twentieth century.",
 'Meet Ella Turner and Isabelle du Moulin—two women born centuries apart, yet bound by a fateful family legacy. When Ella and her husband move to a small town in France, Ella hopes to brush up on her French, qualify to practice as a midwife, and start a family of her own. Village life turns out to be less idyllic than she expected, however, and a peculiar dream of the color blue propels her on a quest to uncover her family’s French ancestry. As the novel unfolds—alternating between Ella’s story and that of Isabelle du Moulin four hundred years earlier—a common thread emerges that unexpectedly links the two women. Part detective story, part historical fiction, The Virgin Blue is a novel of passion and intrigue that compels readers to the very last page.',
 "Part-time student, full-time Soul Reaper, Ichigo is one of the chosen few guardians of the afterlife.Ichigo Kurosaki never asked for the ability to see ghosts—he was born with the gift. When his family is attacked by a Hollow—a malevolent lost soul—Ichigo becomes a Soul Reaper, dedicating his life to protecting the innocent and helping the tortured spirits themselves find peace. Find out why Tite Kubo’s Bleach has become an international manga smash-hit!Ichigo Kurosaki has always been able to see ghosts, but this ability doesn't change his life nearly as much as his close encounter with Rukia Kuchiki, a Soul Reaper and member of the mysterious Soul Society. While fighting a Hollow, an evil spirit that preys on humans who display psychic energy, Rukia attempts to lend Ichigo some of her powers so that he can save his family; but much to her surprise, Ichigo absorbs every last drop of her energy. Now a full-fledged Soul Reaper himself, Ichigo quickly learns that the world he inhabits is one full of dangerous spirits and, along with Rukia--who is slowly regaining her powers--it's Ichigo's job to protect the innocent from Hollows and help the spirits themselves find peace.",
 "Set in Paris and attracting comparisons with Franz Kafka and Edgar Allan Poe, The Pigeon is Patrick Süskind's tense, disturbing follow-up to the bestselling Perfume. The novella tells the story of a day in the meticulously ordered life of bank security guard Jonathan Noel, who has been hiding from life since his wife left him for her Tunisian lover. When Jonathan opens his front door on a day he believes will be just like any other, he encounters not the desired empty hallway but an unwelcome, diabolical intruder . . .",
 "A boy's village childhood with all the traditional attributes - father, mother, brother, sister, a house on a lake, tree-climbing, going to the races, music lessons, a bicycle, a crush on a girl in the class - is bedevilled by the mystifying appearances of the eccentric Mr. Sommer. Moving through the landscape in silent haste, like a man possessed, with his empty rucksack and his long, odd-looking walking stick, Mr Sommer runs like a black thread through the boy's days.",
 'Fueled by a passion for running dogs, Gary Paulsen entered the Iditarod--the eleven hundred and eighty mile sled-dog race through the Alaskan wilderness--in dangerous ignorance and with a fierce determination. For seventeen days, he and his team of dogs endured blinding wind, snowstorms, frostbite, dogfights, moose attacks, sleeplessness, hallucinations--and the relentless push to go on. Winterdance is the enthralling account of a stunning wilderness journey of discovery and transformation (Chicago Tribune), lived and told by the best author of man-against-nature adventures writing today (Publishers Weekly).',
 'Daniel Defoe relates the tale of an English sailor marooned on a desert island for nearly three decades. An ordinary man struggling to survive in extraordinary circumstances, Robinson Crusoe wrestles with fate and the nature of God. This edition features maps.',
 "A nineteenth-century boy from a Mississippi River town recounts his adventures as he travels down the river with a runaway slave, encountering a family involved in a feud, two scoundrels pretending to be royalty, and Tom Sawyer's aunt who mistakes him for Tom.",
 'In a house full of sadness and secrets, can young, orphaned Mary find happiness?Mary Lennox, a spoiled, ill-tempered, and unhealthy child, comes to live with her reclusive uncle in Misselthwaite Manor on England’s Yorkshire moors after the death of her parents. There she meets a hearty housekeeper and her spirited brother, a dour gardener, a cheerful robin, and her wilful, hysterical, and sickly cousin, Master Colin, whose wails she hears echoing through the house at night.With the help of the robin, Mary finds the door to a secret garden, neglected and hidden for years. When she decides to restore the garden in secret, the story becomes a charming journey into the places of the heart, where faith restores health, flowers refresh the spirit, and the magic of the garden, coming to life anew, brings health to Colin and happiness to Mary.',
 'Sara Crewe, an exceptionally intelligent and imaginative student at Miss Minchin\'s Select Seminary for Young Ladies, is devastated when her adored, indulgent father dies. Now penniless and banished to a room in the attic, Sara is demeaned, abused, and forced to work as a servant. How this resourceful girl\'s fortunes change again is at the center of A Little Princess , one of the best-loved stories in all of children\'s literature.This unique and fully annotated edition appends excerpts from Frances Hodgson Burnett \'s original 1888 novella Sara Crewe and the stage play that preceded the novel, as well as an early story, "Behind the White Brick," allowing readers to see how A Little Princess evolved. In his delightful introduction, U. C. Knoepflmacher considers the fairy-tale allusions and literary touchstones that place the book among the major works of Victorian literature, and shows it to be an exceptionally rich and resonant novel.',
 'A million copy seller, Henry Hazlitt’s Economics in One Lesson is a classic economic primer. But it is also much more, having become a fundamental influence on modern “libertarian” economics of the type espoused by Ron Paul and others.Considered among the leading economic thinkers of the “Austrian School,” which includes Carl Menger, Ludwig von Mises, Friedrich (F.A.) Hayek, and others, Henry Hazlitt (1894-1993), was a libertarian philosopher, an economist, and a journalist. He was the founding vice-president of the Foundation for Economic Education and an early editor of The Freeman magazine, an influential libertarian publication.\xa0 Hazlitt wrote Economics in One Lesson, his seminal work, in 1946. Concise and instructive, it is also deceptively prescient and far-reaching in its efforts to dissemble economic fallacies that are so prevalent they have almost become a new orthodoxy.Many current economic commentators across the political spectrum have credited Hazlitt with foreseeing the collapse of the global economy which occurred more than 50 years after the initial publication of Economics in One Lesson. Hazlitt’s focus on non-governmental solutions, strong — and strongly reasoned — anti-deficit position, and general emphasis on free markets, economic liberty of individuals, and the dangers of government intervention make Economics in One Lesson, every bit as relevant and valuable today as it has been since publication.',
 'This book presents the kind of eye-opening insights into the history and culture of race for which Sowell has become famous. As late as the 1940s and 1950s, he argues, poor Southern rednecks were regarded by Northern employers and law enforcement officials as lazy, lawless, and sexually immoral. This pattern was repeated by blacks with whom they shared a subculture in the South. Over the last half century poor whites and most blacks have moved up in class and affluence, but the ghetto remains filled with black rednecks. Their attempt to escape, Sowell shows, is hampered by their white liberal friends who turn dysfunctional black redneck culture into a sacrosanct symbol of racial identity. In addition to Black Rednecks and White Liberals, the book takes on subjects ranging from Are Jews Generic? to The Real History of Slavery.',
 "The Green Knight, a mysteriously powerful creature, tests the honor and courage of King Arthur's youngest knight.",
 "A classic that won Malamud both the Pulitzer Prize and the National Book Award.The Fixer (1966) is Bernard Malamud's best-known and most acclaimed novel—one that makes manifest his roots in Russian fiction, especially that of Isaac Babel.Set in Kiev in 1911 during a period of heightened anti-Semitism, the novel tells the story of Yakov Bok, a Jewish handyman blamed for the brutal murder of a young Russian boy. Bok leaves his village to try his luck in Kiev, and after denying his Jewish identity, finds himself working for a member of the anti-Semitic Black Hundreds Society. When the boy is found nearly drained of blood in a cave, the Black Hundreds accuse the Jews of ritual murder. Arrested and imprisoned, Bok refuses to confess to a crime that he did not commit.",
 'A recipe for happiness: four women, one medieval Italian castle, plenty of wisteria, and solitude as needed.The women at the center of The Enchanted April are alike only in their dissatisfaction with their everyday lives. They find each other—and the castle of their dreams—through a classified ad in a London newspaper one rainy February afternoon. The ladies expect a pleasant holiday, but they don’t anticipate that the month they spend in Portofino will reintroduce them to their true natures and reacquaint them with joy. Now, if the same transformation can be worked on their husbands and lovers, the enchantment will be complete.The Enchanted April was a best-seller in both England and the United States, where it was a Book-of-the-Month Club selection, and set off a craze for tourism to Portofino. More recently, the novel has been the inspiration for a major film and a Broadway play.',
 '"But you do," he went on, not waiting for contradiction. "You love the boy body and soul, plainly, directly, as he loves you, and no other word expresses it ..."Lucy has her rigid, middle-class life mapped out for her, until she visits Florence with her uptight cousin Charlotte, and finds her neatly ordered existence thrown off balance. Her eyes are opened by the unconventional characters she meets at the Pension Bertolini: flamboyant romantic novelist Eleanor Lavish, the Cockney Signora, curious Mr Emerson and, most of all, his passionate son George.Lucy finds herself torn between the intensity of life in Italy and the repressed morals of Edwardian England, personified in her terminally dull fiancé Cecil Vyse. Will she ever learn to follow her own heart?',
 'Maurice is heartbroken over unrequited love, which opened his heart and mind to his own sexual identity. In order to be true to himself, he goes against the grain of society’s often unspoken rules of class, wealth, and politics.Forster understood that his homage to same-sex love, if published when he completed it in 1914, would probably end his career. Thus, Maurice languished in a drawer for fifty-seven years, the author requesting it be published only after his death (along with his stories about homosexuality later collected in The Life to Come).Since its release in 1971, Maurice has been widely read and praised. It has been, and continues to be, adapted for major stage productions, including the 1987 Oscar-nominated film adaptation starring Hugh Grant and James Wilby.',
 "What should we have for dinner? For omnivore like ourselves, this simple question has always posed a dilemma. When you can eat just about anything nature (or the supermarket) has to offer, deciding what you should eat will inevitably stir anxiety, especially when some of the foods on offer might shorten your life. Today, buffered by one food fad after another, America is suffering from what can only be described as a national eating disorder. The omnivore’s dilemma has returned with a vengeance, as the cornucopia of the modern American supermarket and fast-food outlet confronts us with a bewildering and treacherous food landscape. What’s at stake in our eating choices is not only our own and our children’s health, but the health of the environment that sustains life on earth.The Omnivore's Dilemma is groundbreaking book, in which one of America’s most fascinating, original, and elegant writers turns his own omnivorous mind to the seemingly straightforward question of what we should have for dinner. The question has confronted us since man discovered fire, but according to Michael Pollan, the bestselling author of The Botany of Desire, how we answer it today, at the dawn of the twenty-first century, may well determine our very survival as a species. Should we eat a fast-food hamburger? Something organic? Or perhaps something we hunt, gather, or grow ourselves? To find out, Pollan follows each of the food chains that sustain us—industrial food, organic or alternative food, and food we forage ourselves—from the source to a final meal, and in the process develops a definitive account of the American way of eating. His absorbing narrative takes us from Iowa cornfields to food-science laboratories, from feedlots and fast-food restaurants to organic farms and hunting grounds, always emphasizing our dynamic coevolutionary relationship with the handful of plant and animal species we depend on. Each time Pollan sits down to a meal, he deploys his unique blend of personal and investigative journalism to trace the origins of everything consumed, revealing what we unwittingly ingest and explaining how our taste for particular foods and flavors reflects our evolutionary inheritance.The surprising answers Pollan offers to the simple question posed by this book have profound political, economic, psychological, and even moral implications for all of us. Ultimately, this is a book as much about visionary solutions as it is about problems, and Pollan contends that, when it comes to food, doing the right thing often turns out to be the tastiest thing an eater can do. Beautifully written and thrillingly argued, The Omnivore’s Dilemma promises to change the way we think about the politics and pleasure of eating. For anyone who reads it, dinner will never again look, or taste, quite the same.",
 "Sarah Vowell exposes the glorious conundrums of American history and culture with wit, probity, and an irreverent sense of humor. With Assassination Vacation, she takes us on a road trip like no other—a journey to the pit stops of American political murder and through the myriad ways they have been used for fun and profit, for political and cultural advantage.From Buffalo to Alaska, Washington to the Dry Tortugas, Vowell visits locations immortalized and influenced by the spilling of politically important blood, reporting as she goes with her trademark blend of wisecracking humor, remarkable honesty, and thought-provoking criticism. We learn about the jinx that was Robert Todd Lincoln (present at the assassinations of Presidents Lincoln, Garfield, and McKinley) and witness the politicking that went into the making of the Lincoln Memorial. The resulting narrative is much more than an entertaining and informative travelogue—it is the disturbing and fascinating story of how American death has been manipulated by popular culture, including literature, architecture, sculpture, and—the author's favorite— historical tourism. Though the themes of loss and violence are explored and we make detours to see how the Republican Party became the Republican Party, there are all kinds of lighter diversions along the way into the lives of the three presidents and their assassins, including mummies, show tunes, mean-spirited totem poles, and a nineteenth-century biblical sex cult.",
 "A vivid depiction of the suffering history has imposed upon the people of Bosnia from the late sixteenth century to the beginning of World War I, The Bridge on the Drina earned Ivo Andric the Nobel Prize for Literature in 1961. A great stone bridge built three centuries ago in the heart of the Balkans by a Grand Vezir of the Ottoman Empire dominates the setting of Andric's stunning novel. Spanning generations, nationalities, and creeds, the bridge stands witness to the countless lives played out upon it: Radisav, the workman, who tries to hinder its construction and is impaled on its highest point; to the lovely Fata, who throws herself from its parapet to escape a loveless marriage; to Milan, the gambler, who risks everything in one last game on the bridge with the devil his opponent; to Fedun, the young soldier, who pays for a moment of spring forgetfulness with his life. War finally destroys the span, and with it the last descendant of that family to which the Grand Vezir confided the care of his pious bequest - the bridge.",
 "Set in Hawai'i more than a century ago, this is the story of Rachel Kalama, a spirited seven-year-old Hawaiian girl, who dreams of visiting far-off lands like her father, a merchant seaman. Then one day a rose-colored mark appears on her skin, and those dreams are stolen from her. Taken from her home and family, Rachel is sent to Kalaupapa, the quarantined leprosy settlement on the island of Moloka'i. Here her life is supposed to end---but instead she discovers it is only just beginning.",
 'Minds, Brains and Science takes up just the problems that perplex people, and it does what good philosophy always it dispels the illusion caused by the specious collision of truths. How do we reconcile common sense and science? John Searle argues vigorously that the truths of common sense and the truths of science are both right and that the only question is how to fit them together.Searle explains how we can reconcile an intuitive view of ourselves as conscious, free, rational agents with a universe that science tells us consists of mindless physical particles. He briskly and lucidly sets out his arguments against the familiar positions in the philosophy of mind, and details the consequences of his ideas for the mind-body problem, artificial intelligence, cognitive science, questions of action and free will, and the philosophy of the social sciences.',
 "Born into a poor family in Spain, Inés, a seamstress, finds herself condemned to a life of hard work without reward or hope for the future. It is the sixteenth century, the beginning of the Spanish conquest of the Americas, and when her shiftless husband disappears to the New World, Inés uses the opportunity to search for him as an excuse to flee her stifling homeland and seek adventure. After her treacherous journey takes her to Peru, she learns that her husband has died in battle. Soon she begins a fiery love affair with a man who will change the course of her life: Pedro de Valdivia, war hero and field marshal to the famed Francisco Pizarro.Valdivia's dream is to succeed where other Spaniards have failed: to become the conquerer of Chile. The natives of Chile are fearsome warriors, and the land is rumored to be barren of gold, but this suits Valdivia, who seeks only honor and glory. Together the lovers Inés Suárez and Pedro de Valdivia will build the new city of Santiago, and they will wage a bloody, ruthless war against the indigenous Chileans—the fierce local Indians led by the chief Michimalonko, and the even fiercer Mapuche from the south. The horrific struggle will change them forever, pulling each of them toward their separate destinies.Inés of My Soul is a work of breathtaking scope: meticulously researched, it engagingly dramatizes the known events of Inés Suárez's life, crafting them into a novel full of the narrative brilliance and passion readers have come to expect from Isabel Allende.",
 'Fifteen-year-old Alexander Cold is about to join his fearless grandmother on the trip of a lifetime. An International Geographic expedition is headed to the dangerous, remote wilds of South America, on a mission to document the legendary Yeti of the Amazon known as the Beast.But there are many secrets hidden in the unexplored wilderness, as Alex and his new friend Nadia soon discover. Drawing on the strength of their spirit guides, both young people are led on a thrilling and unforgettable journey to the ultimate discovery. . . .',
 "Andy, Dag and Claire have been handed a society priced beyond their means. Twentysomethings, brought up with divorce, Watergate and Three Mile Island, and scarred by the 80s fall-out of yuppies, recession, crack and Ronald Reagan, they represent the new generation - Generation X.Fiercely suspicious of being lumped together as an advertiser's target market, they have quit dreary careers and cut themselves adrift in the California desert. Unsure of their futures, they immerse themselves in a regime of heavy drinking and working at no-future McJobs in the service industry.Underemployed, overeducated, intensely private and unpredictable, they have nowhere to direct their anger, no one to assuage their fears, and no culture to replace their anomie. So they tell stories; disturbingly funny tales that reveal their barricaded inner world. A world populated with dead TV shows, 'Elvis moments' and semi-disposable Swedish furniture...",
 "The most disastrous family reunion in the history of fiction.The Drummond family, reunited for the first time in years, has gathered near Cape Canaveral to watch the launch into space of their beloved daughter and sister, Sarah. Against the Technicolor unreality of Florida's finest tourist attractions, the Drummonds stumble into every illicit activity under the tropical sun-kidnapping, blackmail, gunplay, and black market negotiations, to name a few. But even as the Drummonds' lives spin out of control, Coupland reminds us of their humanity at every turn, hammering out a hilarious masterpiece with the keen eye of a cultural critic and the heart and soul of a gifted storyteller. He tells not only the characters' stories but also the story of our times--thalidomide, AIDS, born-again Christianity, drugs, divorce, the Internet-all bound together with the familiar glue of family love and madness.",
 "Pregnant and secretly married, Cheryl Anway scribbles what becomes her last will and testament on a school binder shortly before a rampaging trio of misfit classmates gun her down in a high school cafeteria. Overrun with paranoia, teenage angst, and religious zeal in the massacre's wake, this sleepy suburban neighborhood declares its saints, brands its demons, and moves on. But for a handful of people still reeling from that horrific day, life remains permanently derailed. Four dramatically different characters tell their stories: Cheryl, who calmly narrates her own death; Jason, the boy no one knew was her husband, still marooned ten years later by his loss; Heather, the woman trying to love the shattered Jason; and Jason's father, Reg, whose rigid religiosity has separated him from nearly everyone he loves. Hey Nostradamus! is an unforgettable portrait of people wrestling with spirituality and with sorrow and its acceptance.",
 "'What did Karen see that December night? What pictures of tomorrow could so disturb her that she would flee into a refuge of bottomless sleep? Why would she leave me?'It's 15th December, 1979, and Richard's girlfriend Karen has entered a deep coma. She only took a couple of valium washed down with a cocktail, but now she's locked away in suspended animation, oblivious to the passage of time. What if she were to wake up decades later - a 17-year-old girl in a distant future, a future where the world has gone dark?",
 "Captain Corelli’s Mandolin is set in the early days of the second world war, before Benito Mussolini invaded Greece. Dr Iannis practices medicine on the island of Cephalonia, accompanied by his daughter, Pelagia, to whom he imparts much of his healing art. Even when the Italians do invade, life isn’t so bad—at first anyway. The officer in command of the Italian garrison is the cultured Captain Antonio Corelli, who responds to a Nazi greeting of “Heil Hitler” with his own “Heil Puccini”, and whose most precious possession is his mandolin. It isn't long before Corelli and Pelagia are involved in a heated affair--despite her engagement to a young fisherman, Mandras, who has gone off to join Greek partisans. Love is complicated enough in wartime, even when the lovers are on the same side. And for Corelli and Pelagia, it becomes increasingly difficult to negotiate the minefield of allegiances, both personal and political, as all around them atrocities mount, former friends become enemies and the ugliness of war infects everyone it touches. British author Louis de Bernières is well known for his forays into magical realism in such novels as The War of Don Emmanuel's Nether Parts, Señor Vivo and the Coca Lord and The Troublesome Offspring of Cardinal Guzman. Here he keeps it to a minimum, though certainly the secondary characters with whom he populates his island—the drunken priest, the strongman, the fisherman who swims with dolphins—would be at home in any of his wildly imaginative Latin American fictions. Instead, de Bernières seems interested in dissecting the nature of history as he tells his ever-darkening tale from many different perspectives. Captain Corelli’s Mandolin works on many levels, as a love story, a war story and a deconstruction of just what determines the facts that make it into the history books.",
 "This rambunctious first novel by the author of the bestselling Corelli's Mandolin is set in an impoverished, violent, yet ravishingly beautiful country somewhere in South America. When the haughty Dona Constanza decides to divert a river to fill her swimming pool, the consequences are at once tragic, heroic, and outrageously funny.",
 'In his first novel since Corelli’s Mandolin, Louis de Bernières creates a world, populates it with characters as real as our best friends, and launches it into the maelstrom of twentieth-century history. The setting is a small village in southwestern Anatolia in the waning years of the Ottoman Empire. Everyone there speaks Turkish, though they write it in Greek letters. It’s a place that has room for a professional blasphemer; where a brokenhearted aga finds solace in the arms of a Circassian courtesan who isn’t Circassian at all; where a beautiful Christian girl named Philothei is engaged to a Muslim boy named Ibrahim. But all of this will change when Turkey enters the modern world. Epic in sweep, intoxicating in its sensual detail, Birds Without Wings is an enchantment.',
 "With the same ebullient storytelling, luxuriant prose, and irrepressible eroticism he brought to The War of Don Emmanuel's Nether Parts and Señor Vivo and the Coca Lord, Louis de Bernières continues his chronicle of Cochadebajo, the Andean village where macho philosophers, defrocked priests, and reformed (though hardly inactive) prostitutes cohabit in cheerful anarchy. But this unruly utopia is imperiled when the demon-harried Cardinal Guzmán decides to inaugurate a new Inquisition, with Cochadebajo as its ultimate target.\xa0\xa0\xa0\xa0\xa0\xa0 On his side, the Cardinal has an army of fanatics who are all too willing to destroy bodies in order to save souls. The Cochadebajeros have precious little ammunition, unless you count chef Dolores's incendiary Chicken of a True Man, and a civil defense that deems nothing more crucial than the act of love. Part epic, part farce, The Troublesome Offspring of Cardinal Guzmán confirms de Bernières's reputation as England's answer to Gabriel García Márquez.",
 "The Thorn Birds is a robust, romantic saga of a singular family, the Clearys. It begins in the early part of the 20th century, when Paddy Cleary moves his wife, Fiona, and their seven children to Drogheda, the vast Australian sheep station owned by his autocratic and childless older sister; and it ends more than half a century later, when the only survivor of the third generation, the brilliant actress Justine O'Neill, sets a course of life and love halfway around the world from her roots.The central figures in this enthralling story are the indomitable Meggie, the only Cleary daughter, and the one man she truly loves, the stunningly handsome and ambitious priest Ralph de Bricassart. Ralph's course moves him a long way indeed, from a remote Outback parish to the halls of the Vatican; and Meggie's except for a brief and miserable marriage elsewhere, is fixed to the Drogheda that is part of her bones - but distance does not dim their feelings though it shapes their lives.Wonderful characters people this book; strong and gentle, Paddy, hiding a private memory; dutiful Fiona, holding back love because it once betrayed her, violent, tormented Frank, and the other hardworking Cleary sons who give the boundless lands of Drogheda the energy and devotion most men save for women; Meggie; Ralph; and Meggie's children, Justine and Dane. And the land itself; stark, relentless in its demands, brilliant in its flowering, prey to gigantic cycles of drought and flood, rich when nature is bountiful, surreal like no other place on earth.Alternate Cover Edition ISBN 0380018179 (ISBN13: 9780380018178)",
 "In this great drama, Marius, the general who saved Rome from barbarian invasion and became consul an unprecedented six times, has fallen into decline. Sulla, his closest associate, has withdrawn himself from his commander's circle in preparation for his own bid for power. As a deadly enmity develops between the two men, Rome must fight its own battle for survival - first against her neighbouring Italian states, then against the barbaric Asian conqueror. Births, deaths, prophecies and rivalries combine to create a whirlwind of drama, and a remarkable insight into the passion and torment of ancient Rome.",
 'From the author of the phenomenal #1 New York Times bestseller Tuesdays with Morrie, a novel that explores the unexpected connections of our lives, and the idea that heaven is more than a place; it\'s an answer. Eddie is a wounded war veteran, an old man who has lived, in his mind, an uninspired life. His job is fixing rides at a seaside amusement park. On his 83rd birthday, a tragic accident kills him as he tries to save a little girl from a falling cart. He awakes in the afterlife, where he learns that heaven is not a destination. It\'s a place where your life is explained to you by five people, some of whom you knew, others who may have been strangers. One by one, from childhood to soldier to old age, Eddie\'s five people revisit their connections to him on earth, illuminating the mysteries of his "meaningless" life, and revealing the haunting secret behind the eternal question: "Why was I here?"',
 "Alternate cover for this ISBN can be found hereA CLASSIC FROM THE NEW YORK TIMES BESTSELLING AUTHOR OF THE THINGS THEY CARRIEDBefore writing his award-winning Going After Cacciato, Tim O'Brien gave us this intensely personal account of his year as a foot soldier in Vietnam. The author takes us with him to experience combat from behind an infantryman's rifle, to walk the minefields of My Lai, to crawl into the ghostly tunnels, and to explore the ambiguities of manhood and morality in a war gone terribly wrong. Beautifully written and searingly heartfelt, If I Die in a Combat Zone is a masterwork of its genre.Now with Extra Libris material, including a reader’s guide and bonus content",
 "Alternate cover for this ISBN can be found hereWinner of the 1979 National Book Award, Going After Cacciato captures the peculiar mixture of horror and hallucination that marked this strangest of wars.In a blend of reality and fantasy, this novel tells the story of a young soldier who one day lays down his rifle and sets off on a quixotic journey from the jungles of Indochina to the streets of Paris. In its memorable evocation of men both fleeing from and meeting the demands of battle, Going After Cacciato stands as much more than just a great war novel. Ultimately it's about the forces of fear and heroism that do battle in the hearts of us all.",
 'This riveting novel of love and mystery from the author of The Things They Carried examines the lasting impact of the twentieth century’s legacy of violence and warfare, both at home and abroad. When long-hidden secrets about the atrocities he committed in Vietnam come to light, a candidate for the U.S. Senate retreats with his wife to a lakeside cabin in northern Minnesota. Within days of their arrival, his wife mysteriously vanishes into the watery wilderness.',
 'When confronted by raging fires or deadly accidents, volunteer fireman Taylor McAden feels compelled to take terrifying risks; but there is one leap of faith Taylor can\'t bring himself to make: He can\'t fall in love.BookPage calls Nicholas Sparks, "a modern master of fateful love stories," and his phenomenal bestsellers- The Notebook, Message in a Bottle, and A Walk to Remember- have made him one of America\'s most beloved storytellers. Here, in his newest work, Sparks tells a story about making the greatest commitment of all...loving someone forever. The Rescue When confronted by raging fires or deadly accidents, volunteer fireman Taylor McAden feels compelled to take terrifying risks - risks no one else in the department would ever take - to save lives. But there is one leap of faith Taylor can\'t bring himself to make: He can\'t fall in love. For all his adult years, Taylor has sought out women who need to be rescued, women he leaves as soon as their crisis is over, as soon as the relationship starts to become truly intimate. Then, one day, a raging, record-breaking storm hits his small Southern town. Denise Holton, a young single mother, is driving through it when her car skids off the road. With her is her four-year-old son, Kyle, a boy with severe learning disabilities and for whom she has sacrificed everything. Unconscious and bleeding, she-but not Kyle-will be found by Taylor McAden. And when she wakes, the chilling truth becomes clear to both of them: Kyle is gone. During the search for Kyle, the connection, the lifeline, between Taylor and Denise takes root. Taylor doesn\'t know that this rescue will be different from all the others, demanding far more than raw physical courage. That it will lead him to the possibility of his own rescue from a life lived without love. That it will require him to open doors to his past that were slammed shut by pain. That it will dare him to live life to the fullest by daring to love. In The Rescue Nicholas Sparks weaves his inimitable spell, immersing us in the passions and the surprising complexities of modern relationships-and in doing so, teaching us something about our own.',
 "Miles Ryan's life seemed to end the day his wife was killed in a hit-and-run accident two years ago. Missy had been his first love, and Miles fervently believes she will be his last. As a deputy in the North Carolina town of New Bern, Miles Ryan not only grieves for Missy, but also longs to bring the unknown driver to justice. Then Miles meets Sarah Andrews. The second grade teacher of his son, Jonah, Sarah had left Baltimore after a difficult divorce to start over in the gentler surroundings of New Bern. Perhaps it's her own emotional wounds that make her sensitive to the hurt she first sees in Jonah's eyes, and then his father's. Tentatively, Sarah and Miles reach out to each other. Soon they are both laughing for the first time in years . . . and falling in love. Neither will be able to guess how closely linked they are to a shocking secret -- one that will force them to question everything they ever believed in . . . and make a heartbreaking choice that will change their lives forever.",
 'Jeremy Marsh is the ultimate New Yorker: handsome, almost always dressed in black, and part of the media elite. An expert on debunking the supernatural with a regular column in Scientific American, he\'s just made his first appearance on national TV. When he receives a letter from the tiny town of Boone Creek, North Carolina, about ghostly lights that appear in a legend-shrouded cemetery, he can\'t resist driving down to investigate. Here, in this tightly knit community, Lexie Darnell runs the town\'s library, just as her mother did before the accident that left Lexie an orphan. Disappointed by past relationships, including one that lured her away from home, she is sure of one thing: her future is in Boone Creek, close to her grandmother and all the other people she loves. Jeremy expects to spend a quick week in "the sticks" before speeding back to the city. But from the moment he sets eyes on Lexie, he is intrigued and attracted to this beautiful woman who speaks with a soft drawl and confounding honesty. And Lexie, while hesitating to trust this outsider, finds herself thinking of Jeremy more than she cares to admit. Now, if they are to be together, Jeremy Marsh must make a difficult choice: return to the life he knows, or do something he\'s never done before--take a giant leap of faith. A story about taking chances and following your heart, True Believer will make you, too, believe in the miracle of love.',
 "The day the brochure came was a typical one. With a wife and five small children, a hectic schedule, and a new book due to his publishers, Nicholas Sparks was busy with his usual routine. The colorful mailer, however, described something very different: a tour to some of the most exotic places on Earth. Slowly, an idea took hold in Nicholas's mind and heart. In January 2003, Nicholas Sparks and his brother, Micah, set off on a three-week trip around the globe. It was to mark a milestone in their lives, for at thirty-seven and thirty-eight respectively, they were now the only surviving members of their family. And as they voyaged to the lost city of Machu Picchu high in the Andes. . . to mysterious Easter Island. . . to Ayers Rock in the Australian outback. . . and across the vast Indian subcontinent, the ultimate story of their lives would unfold. Against the backdrop of the wonders of the world and often overtaken by their feelings, daredevil Micah and the more serious, introspective Nicholas recalled their rambunctious childhood adventures and the tragedies that tested their faith. And in the process, they discovered startling truths about loss, love and hope. Narrated with irrepressible humor and rare candor, and including personal photographs, Three Weeks with my Brother reminds us to embrace life with all its uncertainties. . . and most of all, to cherish the joyful times, both small and momentous, and the wonderful people who make them possible.Did You Know?---Three Weeks With My Brother is Nicholas's second work of non-fiction? (The first was Wokini, written with Olympic Gold Medalist Billy Mills.)Nicholas and Micah Sparks wrote the book together from separate coasts by talking on the phone and faxing drafts back and forth?The trip around the world was part of a Notre Dame alumni package?",
 "After thirty years of marriage, Wilson Lewis, son-in-law of Allie and Noah Calhoun (of The Notebook), is forced to admit that the romance has gone out of his marriage. Desperate to win back his wife, Jane's, heart, he must figure out how to make her fall in love with him... again. Despite the shining example of Allie and Noah's marriage, Wilson is himself a man unable to easily express his emotions. A successful estate attorney, he has provided well for his family, but now, with his daughter's upcoming wedding, he is forced to face the fact that he and Jane have grown apart and he wonders if she even loves him anymore. Wilson is sure of one thing--his love for his wife has only deepened and intensified over the years. Now, with the memories of his in-laws' magnificent fifty-year love affair as his guide, Wilson struggles to find his way back into the heart of the woman he adores.Did You Know?The Wedding is a follow-up to The Notebook?The Wedding was inspired by a few unnamed couples that Nicholas knows well?The novel is set in the North Carolina town in which Nicholas now lives?",
 "The sequel to the critically acclaimed The City of Ember continues the story of Lina and Doon, who have emerged from the underground city to the exciting new world above. When anonymous acts of vandalism push them toward violence, it's up to Lina and Doon to discover who's behind the vandalism and why.An alternate cover can be found here.",
 'A high school rebel and a minister\'s daughter find strength in each other in this star-crossed tale of "young but everlasting love" (Chicago Sun-Times).There was a time when the world was sweeter....when the women in Beaufort, North Carolina, wore dresses, and the men donned hats.... Every April, when the wind smells of both the sea and lilacs, Landon Carter remembers 1958, his last year at Beaufort High. Landon had dated a girl or two, and even once sworn that he\'d been in love. Certainly the last person he thought he\'d fall for was Jamie, the shy, almost ethereal daughter of the town\'s Baptist minister....Jamie, who was destined to show him the depths of the human heart-and the joy and pain of living. The inspiration for this novel came from Nicholas Sparks\'s sister: her life and her courage. From the internationally bestselling author Nicholas Sparks, comes his most moving story yet....',
 'Icy Sparks is the sad, funny and transcendent tale of a young girl growing up in the mountains of Eastern Kentucky during the 1950’s. Gwyn Hyman Rubio’s beautifully written first novel revolves around Icy Sparks, an unforgettable heroine in the tradition of Scout in To Kill a Mockingbird or Will Treed in Cold Sassy Tree. At the age of ten, Icy, a bright, curious child orphaned as a baby but raised by adoring grandparents, begins to have strange experiences. Try as she might, her "secrets"—verbal croaks, groans, and physical spasms—keep afflicting her. As an adult, she will find out she has Tourette’s Syndrome, a rare neurological disorder, but for years her behavior is the source of mystery, confusion, and deep humiliation.Narrated by a grown up Icy, the book chronicles a difficult, but ultimately hilarious and heartwarming journey, from her first spasms to her self-acceptance as a young woman. Curious about life beyond the hills, talented, and energetic, Icy learns to cut through all barriers—physical, mental, and spiritual—in order to find community and acceptance.',
 'Shimmering with suspense and emotional intensity - takes readers on a hunt for the truth about a man and his memories, and about both the heartbreaking fragility and enormous strength of love.Nicholas Sparks is our very best chronicler of the human heart. His stunning first novel, The Notebook, has been given by friend to friend and lover to lover all over the world as a testament to the timeless power of love. But if we thought he could never again move us so deeply, he now shows us he can-in a story that renews our faith in destiny...in the ability of true lovers to find each other no matter where, no matter when... Message In A Bottle Thrown to the waves, and to fate, the bottle could have ended up anywhere. Instead, it is found just three weeks after it begins its journey. Theresa Osborne, divorced and the mother of a twelve-year-old son, picks it up during a seaside vacation from her job as a Boston newspaper columnist. Inside is a letter that opens with: My Dearest Catherine, I miss you my darling, as I always do, but today is particularly hard because the ocean has been singing to me, and the song is that of our life together... For "Garrett," the man who signs the letter, the message is the only way he knows to express his undying love for a woman he has lost. For Theresa, wary of romance since her husband shattered her trust, the message raises questions that intrigue her. Who are Garrett and Catherine? Where is he now? What is his story? Challenged by the mystery, and pulled to find Garrett by emotions she does not fully understand, Theresa begins a search that takes her to a sunlit coastal town and an unexpected confrontation. Brought together by chance-or something more powerful-Theresa and Garrett are people whose lives are about to touch for a purpose, in a tale that resonates with our deepest hopes for finding that special someone and everlasting love. Shimmering with suspense and emotional intensity, Message in a Bottle takes readers on a hunt for the truth about a man and his memories, and about both the heartbreaking fragility and enormous strength of love. For those who cherished The Notebook and readers waiting to discover the magic of Nicholas Sparks\'s storytelling, here is his new, achingly lovely novel of happenstance, desire, and the choices that matter most...',
 "After a childhood moving from one academic outpost to another with her father (a man prone to aphorisms and meteoric affairs), Blue is clever, deadpan, and possessed of a vast lexicon of literary, political, philosophical, and scientific knowledge—and is quite the cineaste to boot. In her final year of high school at the elite (and unusual) St. Gallway School in Stockton, North Carolina, Blue falls in with a charismatic group of friends and their captivating teacher, Hannah Schneider. But when the drowning of one of Hannah's friends and the shocking death of Hannah herself lead to a confluence of mysteries, Blue is left to make sense of it all with only her gimlet-eyed instincts and cultural references to guide—or misguide—her.Special Topics in Calamity Physics is a darkly hilarious coming-of-age novel and a richly plotted suspense tale told through the distinctive voice of its heroine, Blue van Meer.",
 'Welcome to Trenton, New Jersey, where bounty hunter Stephanie Plum\'s life is about to implode in Janet Evanovich\'s wildest, hottest novel yet !FIRST A STRANGER APPEARSWhile chasing down the usual cast of miscreants and weirdos Stephanie discovers that a crazed woman is stalking her.THEN THE STRANGER REVEALS HER SECRETSThe woman dresses in black, carries a 9mm Glock, and has a bad attitude and a mysterious connection to dark and dangerous Carlos Manoso …street name, Ranger.NEXT, SOMEBODY DIESThe action turns deadly serious, and Stephanie goes from hunting skips to hunting a murderer.SOON, THE CHASE IS ONRanger needs Stephanie for more reasons than he can say. And now, the two are working together to find a killer, rescue a missing child, and stop a lunatic from raising the body count. When Stephanie Plum and Ranger get too close for comfort, vice cop Joe Morelli (her on-again, off-again boyfriend) steps in.Will the ticking clock stop at the stroke of twelve, or will a stranger in the wind find a way to stop Stephanie Plum…forever? Filled with Janet Evanovich\'s trademark action, nonstop adventure, and sharp humor, Twelve Sharp shows why her novels have been called "hot stuff" ( The New York Times ), and Evanovich herself "the master" ( San Francisco Examiner ).',
 "Emily Starr never knew what it was to be lonely—until her beloved father died. Now Emily's an orphan, and her mother's snobbish relatives are taking her to live with them at New Moon Farm. She's sure she won't be happy. Emily deals with stiff, stern Aunt Elizabeth and her malicious classmates by holding her head high and using her quick wit. Things begin to change when she makes friends: with Teddy, who does marvelous drawings; with Perry, who's sailed all over the world with his father yet has never been to school; and above all, with Ilse, a tomboy with a blazing temper. Amazingly, Emily finds New Moon beautiful and fascinating. With new friends and adventures, Emily might someday think of herself as Emily of New Moon.",
 "Over the years sixty members of the Dark family and sixty Penhallows have married one another—but not without their share of fighting and feuding. Now Aunt Becky, the eccentric old matriarch of the clan, has bequeathed her prized possession: a legendary heirloom jug. But the name of the jug's new owner will not be revealed for one year. In the next twelve months beautiful Gay Penhallow's handsome fiancé Noel Gibson leaves her for sly and seductive Nan Penhallow; reckless Peter Penhallow and lovely Donna Dark, who have hated each other since childhood, are inexplicably brought together by the jug; Hugh and Joscelyn Dark, separated on their wedding night ten years ago for reasons never revealed, find a second chance—all watched over by the mysterious Moon Man, who has the gift of second sight. Then comes the night when Aunt Becky's wishes will be revealed...and the family is in for the biggest surprise of all.",
 "Favorites for nearly 100 years, these classic novels follow the adventures of the spirited redhead Anne Shirley, who comes to stay at Green Gables and wins the hearts of everyone she meets.Includes Anne of Green Gables, Anne of Avonlea, Anne of the Island, Anne of Windy Poplars, Anne's House of Dreams, Anne of Ingleside, Rainbow Valley and Rilla of Ingleside - the whole collection. Each book includes: The original, unabridged text; a specially commissioned biography of L.M. Montgomery; a map of Prince Edward Island.",
 'Since his first appearance in Beeton’s Christmas Annual in 1887, Sir Arthur Conan Doyle’s Sherlock Holmes has been one of the most beloved fictional characters ever created. Now, in two paperback volumes, Bantam presents all fifty-six short stories and four novels featuring Conan Doyle’s classic hero - a truly complete collection of Sherlock Holmes’s adventures in crime!Volume I includes the early novel A Study in Scarlet, which introduced the eccentric genius of Sherlock Holmes to the world. This baffling murder mystery, with the cryptic word Rache written in blood, first brought Holmes together with Dr. John Watson. Next, The Sign of Four presents Holmes’s famous “seven percent solution” and the strange puzzle of Mary Morstan in the quintessential locked - room mystery. Also included are Holmes’s feats of extraordinary detection in such famous cases as the chilling “ The Adventure of the Speckled Band,” the baffling riddle of “The Musgrave Ritual,” and the ingeniously plotted “The Five Orange Pips,” tales that bring to life a Victorian England of horse-drawn cabs, fogs, and the famous lodgings at 221B Baker Street, where Sherlock Holmes earned his undisputed reputation as the greatest fictional detective of all time.A study in scarlet --The sign of four --Adventures of Sherlock Holmes: A scandal in Bohemia; The red-headed league; A case of identity; The Boscombe Valley mystery; The five orange pips; The man with the twisted lip; The adventure of the blue carbuncle; The adventure of the speckled band; The adventure of the engineer\'s thumb; The adventure of the noble bachelor; The adventure of the beryl coronet; The adventure of the copper beeches; Memoirs of Sherlock Holmes: Silver blaze; The yellow face; The stock-broker\'s clerk; The "Gloria Scott"; The musgrave ritual; The Reigate puzzle; The crooked man; The resident patient; The greek interpreter; The naval treaty; The final problem; The return of Sherlock Holmes: The adventure of the empty house; The adventure of the Norwood builder; The adventure of the dancing men; The adventure of the solitary cyclist; The adventure of the priory school; The adventure of Black Peter; The adventure of Charles Augustus Milverton; The adventure of the six Napoleons; The adventure of the three students; The adventure of the golden pince-nez; The adventure of the missing three-quarter; The adventure of the abbey grange; The adventure of the second stain.',
 "The Complete Sherlock Holmes, Volume II, by Sir Arthur Conan Doyle, is part of the Barnes & Noble Classics series, which offers quality editions at affordable prices to the student and the general reader, including new scholarship, thoughtful design, and pages of carefully crafted extras. Here are some of the remarkable features of Barnes & Noble Classics: New introductions commissioned from today's top writers and scholars Biographies of the authors Chronologies of contemporary historical, biographical, and cultural events Footnotes and endnotes Selective discussions of imitations, parodies, poems, books, plays, paintings, operas, statuary, and films inspired by the work Comments by other famous authors Study questions to challenge the reader's viewpoints and expectations Bibliographies for further reading Indices & Glossaries, when appropriateAll editions are beautifully designed and are printed to superior specifications; some include illustrations of historical interest. Barnes & Noble Classics pulls together a constellation of influences—biographical, historical, and literary—to enrich each reader's understanding of these enduring works. The Complete Sherlock Holmes comprises four novels and fifty-six short stories revolving around the world’s most popular and influential fictional detective—the eccentric, arrogant, and ingenious Sherlock Holmes. He and his trusted friend, Dr. Watson, step from Holmes’s comfortable quarters at 221b Baker Street into the swirling fog of Victorian London to combine detailed observation and vast knowledge with brilliant deduction. Inevitably, Holmes rescues the innocent, confounds the guilty, and solves the most perplexing puzzles known to literature.Volume II of The Complete Sherlock Holmes begins with The Return of Sherlock Holmes. Sir Arthur Conan Doyle, tired of writing about Holmes, had killed him off at the end of “The Final Problem,” the last tale in The Memoirs of Sherlock Holmes (found in Volume I of The Complete Sherlock Holmes). Public demand for new Holmes stories was so great, however, that Conan Doyle eventually resurrected him. The first story in The Return, “The Adventure of the Empty House,” features Conan Doyle’s infamously inventive explanation of how Holmes escaped what seemed like certain death.This volume also includes two other collections of Holmes stories, His Last Bow and The Case Book of Sherlock Holmes; Conan Doyle’s final full-length Holmes novel, The Valley of Fear; a pair of parodies, “The Field Bazaar” and “How Watson Learned the Trick”; and two essays about the “private life” of the beloved sleuth.",
 "The Adventures of Sherlock Holmes is the series of short stories that made the fortunes of the Strand magazine, in which they were first published, and won immense popularity for Sherlock Holmes and Dr Watson. The detective is at the height of his powers and the volume is full of famous cases, including 'The Red-Headed League', 'The Blue Carbuncle', and 'The Speckled Band'. The editor of this volume, Richard Lancelyn Green is editor of The Uncollected Sherlock Holmes and The Further Adventures of Sherlock Holmes. With John Michael Gibson, he compiled the Soho Series Bibliography of A. Conan Doyle.",
 'At the age of twelve, Jonas, a young boy from a seemingly utopian, futuristic world, is singled out to receive special training from The Giver, who alone holds the memories of the true joys and pain of life.',
 'From a writer “of near-miraculous perfection” (The New York Times Book Review) and “a literary intelligence far surpassing most other writers of her generation” (San Francisco Chronicle), The Emperor’s Children is a dazzling, masterful novel about the intersections in the lives of three friends, now on the cusp of their thirties, making their way—and not—in New York City. There is beautiful, sophisticated Marina Thwaite—an “It” girl finishing her first book; the daughter of Murray Thwaite, celebrated intellectual and journalist—and her two closest friends from Brown, Danielle, a quietly appealing television producer, and Julius, a cash-strapped freelance critic. The delicious complications that arise among them become dangerous when Murray’s nephew, Frederick “Bootie” Tubb, an idealistic college dropout determined to make his mark, comes to town. As the skies darken, it is Bootie’s unexpected decisions—and their stunning, heartbreaking outcome—that will change each of their lives forever. A richly drawn, brilliantly observed novel of fate and fortune—of innocence and experience, seduction and self-invention; of ambition, including literary ambition; of glamour, disaster, and promise—The Emperor’s Children is a tour de force that brings to life a city, a generation, and the way we live in this moment.',
 'The author of The Untouchable (“contemporary fiction gets no better than this”—Patrick McGrath, The New York Times Book Review) now gives us a luminous novel about love, loss, and the unpredictable power of memory. The narrator is Max Morden, a middle-aged Irishman who, soon after his wife’s death, has gone back to the seaside town where he spent his summer holidays as a child—a retreat from the grief, anger, and numbness of his life without her. But it is also a return to the place where he met the Graces, the well-heeled vacationing family with whom he experienced the strange suddenness of both love and death for the first time. The seductive mother; the imperious father; the twins—Chloe, fiery and forthright, and Myles, silent and expressionless—in whose mysterious connection Max became profoundly entangled, each of them a part of the “barely bearable raw immediacy” of his childhood memories. Interwoven with this story are Morden’s memories of his wife, Anna—of their life together, of her death—and the moments, both significant and mundane, that make up his life now: his relationship with his grown daughter, Claire, desperate to pull him from his grief; and with the other boarders at the house where he is staying, where the past beats inside him “like a second heart.” What Max comes to understand about the past, and about its indelible effects on him, is at the center of this elegiac, vividly dramatic, beautifully written novel—among the finest we have had from this extraordinary writer',
 'Returning to Ireland to reclaim a painting that is part of his patrimony, a thirty-eight-year-old man commits a ghastly and motiveless murder, which he confesses in a novel-length narrative.',
 'When the young English widow Lilia Herriton takes off on the grand tour and along the way marries a penniless Italian, her in-laws are far from amused. That the marriage should fail and poor Lilia die tragically are only to be expected. But that Lilia should have had a baby - and that the baby should be raised as an Italian! - are matters requiring immediate correction by Philip Herriton, his dour sister Harriet, and their well-meaning friend Miss Abbott.',
 "This wise, hilarious novel reminds us why Zadie Smith has rocketed to literary stardom. On Beauty is the story of an interracial family living in the university town of Wellington, Massachusetts, whose misadventures in the culture wars-on both sides of the Atlantic-serve to skewer everything from family life to political correctness to the combustive collision between the personal and the political. Full of dead-on wit and relentlessly funny, this tour de force confirms Zadie Smith's reputation as a major literary talent.",
 "In this debut gothic novel mysterious visions, dark family secrets and a long-lost diary thrust Gemma and her classmates back into the horrors that followed her from India. (Ages 12+)It's 1895, and after the suicide of her mother, 16-year-old Gemma Doyle is shipped off from the life she knows in India to Spence, a proper boarding school in England. Lonely, guilt-ridden, and prone to visions of the future that have an uncomfortable habit of coming true, Gemma's reception there is a chilly one. To make things worse, she's been followed by a mysterious young Indian man, a man sent to watch her. But why? What is her destiny? And what will her entanglement with Spence's most powerful girls—and their foray into the spiritual world—lead to?",
 'As a young horse, Black Beauty is well-loved and happy. But when his owner is forced to sell him, his life changes drastically. He has many new owners—some of them cruel and some of them kind. All he needs is someone to love him again.... Whether pulling an elegant carriage or a ramshackle cab, Black Beauty tries to live as best he can. This is his amazing story, told as only he could tell it.',
 'Ann Patchett and the late Lucy Grealy met in college in 1981, and, after enrolling in the Iowa Writers’ Workshop, began a friendship that would be as defining to both of their lives as their work. In Grealy’s critically acclaimed memoir Autobiography of a Face, she wrote about losing part of her jaw to childhood cancer, years of chemotherapy and radiation, and endless reconstructive surgeries. In Truth and Beauty, the story isn’t Lucy’s life or Ann’s life but the parts of their lives they shared. This is a portrait of unwavering commitment that spans twenty years, from the long winters of the Midwest to surgical wards to book parties in New York. Through love, fame, drugs, and despair, this is what it means to be part of two lives that are intertwined--and what happens when one is left behind.',
 'In a poor, remote section of southern Mexico, the paramilitary group, the Red Shirts have taken control. God has been outlawed, and the priests have been systematically hunted down and killed. Now, the last priest is on the run. Too human for heroism, too humble for martyrdom, the nameless little worldly "whiskey priest" is nevertheless impelled toward his squalid Calvary as much by his own compassion for humanity as by the efforts of his pursuers. In his introduction, John Updike calls The Power and the Glory, "Graham Greene\'s masterpiece…. The energy and grandeur of his finest novel derive from the will toward compassion, an ideal communism even more Christian than Communist."',
 'In a British colony in West Africa, Henry Scobie is a pious and righteous man of modest means enlisted with securing borders. But when he’s passed over for a promotion as commissioner of police, the humiliation hits hardest for his wife, Louise. Already oppressed by the appalling climate, frustrated in a loveless marriage, and belittled by the wives of more privileged officers, Louise wants out. Feeling responsible for her unhappiness, Henry decides against his better judgment to accept a loan from a black marketeer to secure Louise’s passage. It’s just a single indiscretion, yet for Henry it precipitates a rapid fall from grace as one moral compromise after another leads him into a web of blackmail, adultery, and murder. And for a devout man like Henry, there may be nothing left but damnation.',
 'Graham Greene\'s classic exploration of love, innocence, and morality in Vietnam"I never knew a man who had better motives for all the trouble he caused," Graham Greene\'s narrator Fowler remarks of Alden Pyle, the eponymous "Quiet American" of what is perhaps the most controversial novel of his career. Pyle is the brash young idealist sent out by Washington on a mysterious mission to Saigon, where the French Army struggles against the Vietminh guerrillas. As young Pyle\'s well-intentioned policies blunder into bloodshed, Fowler, a seasoned and cynical British reporter, finds it impossible to stand safely aside as an observer. But Fowler\'s motives for intervening are suspect, both to the police and himself, for Pyle has stolen Fowler\'s beautiful Vietnamese mistress.First published in 1956 and twice adapted to film, The Quiet American remains a terrifiying and prescient portrait of innocence at large. This Graham Greene Centennial Edition includes a new introductory essay by Robert Stone.',
 'During World War II a group of men is held prisoner by the Germans, who determine that three of them must die. This is the story of how one of those men trades his wealth for his life—and lives to pay for his act in utterly unexpected ways.',
 'From the New York Times bestselling author of Swing Time and one of the most revered writers of her generation comes an "intelligent ... exquisitely clever [novel] about fame, mortality, and the triumph of image over reality” ( The Boston Globe ) .Alex-Li Tandem sells autographs. His business is to hunt for names on paper, collect them, sell them, and occasionally fake them—all to give the people what they want: a little piece of Fame. But what does Alex want? Only the return of his father, the end of religion, something for his headache, three different girls, infinite grace, and the rare autograph of forties movie actress Kitty Alexander. With fries.The Autograph Man is a deeply funny existential tour around the hollow trappings of modernity: celebrity, cinema, and the ugly triumph of symbol over experience. It offers further proof that Zadie Smith is one of the most staggeringly talented writers of her generation.',
 'At the center of this invigorating novel are two unlikely friends, Archie Jones and Samad Iqbal. Hapless veterans of World War II, Archie and Samad and their families become agents of England’s irrevocable transformation. A second marriage to Clara Bowden, a beautiful, albeit tooth-challenged, Jamaican half his age, quite literally gives Archie a second lease on life, and produces Irie, a knowing child whose personality doesn’t quite match her name (Jamaican for “no problem”). Samad’s late-in-life arranged marriage (he had to wait for his bride to be born), produces twin sons whose separate paths confound Iqbal’s every effort to direct them, and a renewed, if selective, submission to his Islamic faith. Set against London’s racial and cultural tapestry, venturing across the former empire and into the past as it barrels toward the future, White Teeth revels in the ecstatic hodgepodge of modern life, flirting with disaster, confounding expectations, and embracing the comedy of daily existence.',
 'Harriet the Spy refuses to become ruffled when an unidentified person starts leaving disturbing notes all over the quiet little beach town of Water Mill. She’s determined to discover the author of the notes. And she drags her friend, mousy Beth Ellen, into all kinds of odd and embarrassing situations in her efforts to reveal the culprit. Observing in her own special, caustic way with her ever-present notebook, Harriet the Spy is on the case. But will she be ready to face the truth when she finds it?Praise for Harriet the Spy® and Her Friends\xa0Harriet the Spy ®“Harriet is . . . wholly relatable whether you’re eleven or several times that age.”— EW.com\xa0Harriet Spies AgainBy Louise Fitzhugh and Helen EricsonWinner of the Edgar Award for Best Juvenile Novel“Ericson has perfectly captured the voice and pacing of Fitzhugh’s original novel in a seamless rendering of a fresh, enjoyable story for today’s readers.” — School Library JournalHarriet the Spy, Double AgentBy Louise Fitzhugh and Maya Gold“Harriet the Spy is back, and Gold does a credible job of maintaining the special character and her crusty charm.” — BooklistThe Long Secret[ STAR ] “Written with subtlety, compassion, and [Louise Fitzhugh’s] remarkable ability to see inside the minds of children.” — School Library Journal, Starred\xa0Sport[ STAR ] “A worthy successor to Harriet the Spy —and that is high tribute.” — Booklist, Starred',
 '‘For several minutes he stood speechless, his eyes dazzled by the terrible beauty of the greatest weapon on earth’He’s a self-made millionaire, head of the Moonraker rocket programme and loved by the press. So why is Sir Hugo Drax cheating at cards? Bond has just five days to uncover the sinister truth behind a national hero, in Ian Fleming’s third 007 adventure.',
 "British Secret Service agent James Bond, a.k.a. 007, is sent to France to play in a high-stakes baccarat game in an effort to take down Le Chiffre, a financier for the villainous SMERSH. Things get more complicated when he is partnered with Vesper Lynd, a beautiful and smart MI6 employee with a dark secret. Bond is one of the most iconic characters in 20th-century literature. In addition to the 12 novels and 9 short stories written by Ian Fleming, there have been over 40 novels and short stories written about the spy by other authors, and over 25 blockbuster films starring such actors as Sean Connery and Daniel Craig.Here's the first.",
 'Auric Goldfinger is the richest man in England—though his wealth can’t be found in banks. He’s been hoarding vast stockpiles of his namesake metal, and it’s attracted the suspicion of 007’s superiors at MI6. Sent to investigate, Bond uncovers an ingenious gold-smuggling scheme, as well as Goldfinger’s most daring caper yet: Operation Grand Slam, a gold heist so audacious it could bring down the world economy and put the fate of the West in the hands of SMERSH. To stop Goldfinger, Bond will have to survive a showdown with the sinister millionaire’s henchman, Oddjob, a tenacious karate master who can kill with one well-aimed toss of his razor-rimmed bowler hat.',
 '"Listen, Bond," said Tiffany Case. "It’d take more than Crabmeat Ravigotte to get me into bed with a man. In any event, since it’s your check, I’m going to have caviar, and what the English call \'cutlets,\' and some pink champagne. I don’t often date a good-looking Englishman and the dinner’s going to live up to the occasion."Meet Tiffany Case, a cold, gorgeous, devil-may-care blonde; the kind of girl you could get into a lot of trouble with—if you wanted. She stands between James Bond and the leaders of a diamond-smuggling ring that stretches from Africa via London to the States. Bond uses her to infiltrate this gang, but once in America the hunter becomes the hunted. Bond is in real danger until help comes from an unlikely quarter, the ice-maiden herself …',
 'Ian Fleming’s fifth James Bond novel.James Bond is marked for death by the Soviet counterintelligence agency SMERSH in Ian Fleming’s masterful spy thriller. It\'s the novel that President John F. Kennedy named as one of his favourite books of all time.SMERSH stands for ‘Death to Spies’ and there’s no secret agent they’d like to disgrace and destroy more than 007, James Bond. But ensnaring the British Secret Service’s most lethal operative will require a lure so tempting even he can’t resist. Enter Tatiana Romanova, a ravishing Russian spy whose ‘defection’ springs a trap designed with clockwork precision.Her mission: seduce Bond, then flee to the West on the Orient Express. Waiting in the shadows are two of Ian Fleming’s most vividly drawn villains: Red Grant, SMERSH’s deadliest assassin, and the sinister operations chief Rosa Klebb - five feet four inches of pure killing power.Bursting with action and intrigue, "From Russia with Love" is one of the best-loved books in the Bond canon, an instant classic that set the standard for sophisticated literary spycraft for decades to come.',
 '"The Corrections" is a grandly entertaining novel for the new century - a comic, tragic masterpiece about a family breaking down in an age of easy fixes.After almost fifty years as a wife and mother, Enid Lambert is ready to have some fun. Unfortunately, her husband, Alfred, is losing his sanity to Parkinson\'s disease, and their children have long since flown the family nest to the catastrophes of their own lives. The oldest, Gary, a once-stable portfolio manager and family man, is trying to convince his wife and himself, despite clear signs to the contrary, that he is not clinically depressed. The middle child, Chip, has lost his seemingly secure academic job and is failing spectacularly at his new line of work. And Denise, the youngest, has escaped a disastrous marriage only to pour her youth and beauty down the drain of an affair with a married man - or so her mother fears. Desperate for some pleasure to look forward to, Enid has set her heart on an elusive goal: bringing her family together for one last Christmas at home. Stretching from the Midwest at midcentury to the Wall Street and Eastern Europe of today, "The Corrections" brings an old-fashioned world of civic virtue and sexual inhibitions into violent collision with the era of home surveillance, hands-off parenting, do-it-yourself mental healthcare, and globalised greed. Richly realistic, darkly hilarious, deeply humane, it confirms Jonathan Franzen as one of our most brilliant interpreters of American society and the American soul.',
 'The literary world is shaken when a murder takes place at the Peverell Press, an old-established publishing house located in a dramatic mock-Venetian palace on the Thames.The victim is Gerard Etienne, the brilliant new managing director whose ruthless ambition has made him many enemies: a discarded mistress, a rejected and humiliated author and rebellious colleagues. Adam Dalgliesh and his team are confronted with a puzzle of extraordinary complexity and a killer who is prepared to strike again.',
 'From the award-winning master of literary crime fiction, a classic work rich in tense drama and psychological insight.On the East Anglian seacoast, a small theological college hangs precariously on an eroding shoreline and an equally precarious future. When the body of a student is found buried in the sand, the boy’s influential father demands that Scotland Yard investigate. Enter Adam Dalgliesh, a detective who loves poetry, a man who has known loss and discovery. The son of a parson, and having spent many happy boyhood summers at the school, Dalgliesh is the perfect candidate to look for the truth in this remote, rarified community of the faithful–and the frightened. And when one death leads to another, Dalgliesh finds himself steeped in a world of good and evil, of stifled passions and hidden pasts, where someone has cause not just to commit one crime but to begin an unholy order of murder. . . . “Gracefully sculpted prose and [a] superbly executed mystery . . . Death in Holy Orders is among [James’s] most remarkable and accomplished Dalgliesh novels.”–The Philadelphia Inquirer“An elegant work about hope, death, and the alternately redemptive and destructive nature of love.”–The Miami Herald “Absorbing . . . [James’s] plotting and characterization [are] impeccable.”–Orlando Sentinel“P. D. James is in top form.”–The Boston GlobeOpen the exclusive dossier at the back of this book, featuring P. D. James’ essay on penning the perfect detective novel.',
 "Combe Island off the Cornish coast offers respite to over-stressed high authorities who require privacy and security. But demanding author Nathan Oliver is found strangled and hanging from the renovated lighthouse. Investigator Adam Dagliesh, his inspector Kate Miskin, and sergeant Francis Benton are all pre-occupied with their personal and love lives. The first victim was thoroughly disliked by visitors and residents for valid reasons, but the second, a recovered alcoholic priest, was admired by the skeleton staff. Suspects include Oliver's daughter Miranda, editor Dennis, animal researcher Dr Yelland, recently orphaned Dan, aged Emily, boatman Jago, sickly Dr Speidel, physician Dr Stavely and his unfaithful wife Jo, administrator Maycroft, housekeeper Mrs Plunkett, cook Mrs Burbridge, rebellious teen Millie. Past murders are uncovered and SARS threatens the island.",
 "Commander Dalgliesh is recuperating from a life-threatening illness when he receives a call for advice from an elderly friend who works as a chaplain in a home for the disabled on the Dorset coast. Dalgliesh arrives to discover that Father Baddeley has recently and mysteriously died, as has one of the patients at Toynton Grange. Evidently the home is not quite the caring community it purports to be. Dalgliesh is determined to discover the truth of his friend's death, but further fatalities follow and his own life is in danger as he unmasks the evil at the heart of Toynton Grange.",
 'Don Quixote has become so entranced by reading chivalric romances that he determines to become a knight-errant himself. In the company of his faithful squire, Sancho Panza, his exploits blossom in all sorts of wonderful ways. While Quixote\'s fancy often leads him astray—he tilts at windmills, imagining them to be giants—Sancho acquires cunning and a certain sagacity. Sane madman and wise fool, they roam the world together, and together they have haunted readers\' imaginations for nearly four hundred years.With its experimental form and literary playfulness, Don Quixote has been generally recognized as the first modern novel. The book has been enormously influential on a host of writers, from Fielding and Sterne to Flaubert, Dickens, Melville, and Faulkner, who reread it once a year, "just as some people read the Bible."',
 "Set in colonial India during the 1920s, Heat and Dust tells the story of Olivia, a beautiful woman suffocated by the propriety and social constraints of her position as the wife of an important English civil servant. Longing for passion and independence, Olivia is drawn into the spell of the Nawab, a minor Indian prince deeply involved in gang raids and criminal plots. She is intrigued by the Nawab's charm and aggressive courtship, and soon begins to spend most of her days in his company. But then she becomes pregnant, and unsure of the child's paternity, she is faced with a wrenching dilemma. Her reaction to the crisis humiliates her husband and outrages the British community, breeding a scandal that lives in collective memory long after her death.",
 'In her twenties, journalist Sarah Macdonald backpacked around India and came away with a lasting impression of heat, pollution and poverty. So when an airport beggar read her palm and told her she would return to India—and for love—she screamed, “Never!” and gave the country, and him, the finger.But eleven years later, the prophecy comes true. When the love of Sarah’s life is posted to India, she quits her dream job to move to the most polluted city on earth, New Delhi. For Sarah this seems like the ultimate sacrifice for love, and it almost kills her, literally. Just settled, she falls dangerously ill with double pneumonia, an experience that compels her to face some serious questions about her own fragile mortality and inner spiritual void. “I must find peace in the only place possible in India,” she concludes. “Within.” Thus begins her journey of discovery through India in search of the meaning of life and death.Holy Cow is Macdonald’s often hilarious chronicle of her adventures in a land of chaos and contradiction, of encounters with Hinduism, Islam and Jainism, Sufis, Sikhs, Parsis and Christians and a kaleidoscope of yogis, swamis and Bollywood stars. From spiritual retreats and crumbling nirvanas to war zones and New Delhi nightclubs, it is a journey that only a woman on a mission to save her soul, her love life—and her sanity—can survive.',
 "Fourteen-year-old Alma Singer is trying to find a cure for her mother's loneliness. Believing she might discover it in an old book her mother is lovingly translating, she sets out in search of its author. Across New York an old man called Leo Gursky is trying to survive a little bit longer. He spends his days dreaming of the lost love who, sixty years ago in Poland, inspired him to write a book. And although he doesn't know it yet, that book also survived: crossing oceans and generations, and changing lives...An alternative cover edition for this ISBN can be found here",
 'A landmark volume in science writing by one of the great minds of our time, Stephen Hawking’s book explores such profound questions as: How did the universe begin—and what made its start possible? Does time always flow forward? Is the universe unending—or are there boundaries? Are there other dimensions in space? What will happen when it all ends?Told in language we all can understand, A Brief History of Time plunges into the exotic realms of black holes and quarks, of antimatter and “arrows of time,” of the big bang and a bigger God—where the possibilities are wondrous and unexpected. With exciting images and profound imagination, Stephen Hawking brings us closer to the ultimate secrets at the very heart of creation.',
 'Throughout human history, certain drinks have done much more than just quench thirst. As Tom Standage relates with authority and charm, six of them have had a surprisingly pervasive influence on the course of history, becoming the defining drink during a pivotal historical period. A History of the World in 6 Glasses tells the story of humanity from the Stone Age to the 21st century through the lens of beer, wine, spirits, coffee, tea, and cola. Beer was first made in the Fertile Crescent and by 3000 B.C.E. was so important to Mesopotamia and Egypt that it was used to pay wages. In ancient Greece wine became the main export of her vast seaborne trade, helping spread Greek culture abroad. Spirits such as brandy and rum fueled the Age of Exploration, fortifying seamen on long voyages and oiling the pernicious slave trade. Although coffee originated in the Arab world, it stoked revolutionary thought in Europe during the Age of Reason, when coffeehouses became centers of intellectual exchange. And hundreds of years after the Chinese began drinking tea, it became especially popular in Britain, with far-reaching effects on British foreign policy. Finally, though carbonated drinks were invented in 18th-century Europe they became a 20th-century phenomenon, and Coca-Cola in particular is the leading symbol of globalization.For Tom Standage, each drink is a kind of technology, a catalyst for advancing culture by which he demonstrates the intricate interplay of different civilizations. You may never look at your favorite drink the same way again.',
 "Over 700,000 copies of the original hardcover and paperback editions of this stunningly popular book have been sold. Karen Armstrong's superbly readable exploration of how the three dominant monotheistic religions of the world—Judaism, Christianity, and Islam—have shaped and altered the conception of God is a tour de force. One of Britain's foremost commentators on religious affairs, Armstrong traces the history of how men and women have perceived and experienced God, from the time of Abraham to the present. From classical philosophy and medieval mysticism to the Reformation, the Enlightenment, and the modern age of skepticism, Armstrong performs the near miracle of distilling the intellectual history of monotheism into one compelling volume.",
 "The quintessential novel of the Lost Generation, The Sun Also Rises (Fiesta) is one of Ernest Hemingway's masterpieces and a classic example of his spare but powerful writing style. A poignant look at the disillusionment and angst of the post-World War I generation, the novel introduces two of Hemingway's most unforgettable characters: Jake Barnes and Lady Brett Ashley. The story follows the flamboyant Brett and the hapless Jake as they journey from the wild nightlife of 1920s Paris to the brutal bullfighting rings of Spain with a motley group of expatriates. It is an age of moral bankruptcy, spiritual dissolution, unrealized love, and vanishing illusions. First published in 1926, The Sun Also Rises helped to establish Hemingway as one of the greatest writers of the twentieth century.",
 "Librarian's Note: Alternate Edition with same isbn & isbn 13: January 2011THE EXTRAORDINARY AND MAGNIFICENT EPIC CONCLUSION TO THE HUGO AWARD-NOMINATED ILIUMBeneath the gaze of the gods, the mighty armies of Greece and Troy met in fierce and glorious combat, scrupulously following the text set forth in Homer's timeless narrative, but that was before twenty-first century scholar Thomas Hockenberry stirred the bloody brew, causing an enraged Achilles to join forces with his archenemy Hector and turn his murderous wrath on Zeus and the entire pantheon of divine manipulators; before the swift and terrible mechanical creatures that catered for centuries to the pitiful idle remnants of Earth's human race began massing in the millions, to exterminate rather than serve.And now all bets are off.",
 'The Trojan War rages at the foot of Olympos Mons on Mars—observed and influenced from on high by Zeus and his immortal family—and twenty-first-century professor Thomas Hockenberry is there to play a role in the insidious private wars of vengeful gods and goddesses. On Earth, a small band of the few remaining humans pursues a lost past and devastating truth—as four sentient machines depart from Jovian space to investigate, perhaps terminate, the potentially catastrophic emissions emanating from a mountaintop miles above the terraformed surface of the Red Planet.',
 "The men on board HMS Terror have every expectation of triumph. As part of the 1845 Franklin Expedition, the first steam-powered vessels ever to search for the legendary Northwest Passage, they are as scientifically supported an enterprise as has ever set forth. As they enter a second summer in the Arctic Circle without a thaw, though, they are stranded in a nightmarish landscape of encroaching ice and darkness. Endlessly cold, with diminishing rations, 126 men fight to survive with poisonous food, a dwindling supply of coal, and ships buckling in the grip of crushing ice. But their real enemy is far more terrifying. There is something out there in the frigid darkness: an unseen predator stalking their ship, a monstrous terror constantly clawing to get in.When the expedition's leader, Sir John Franklin, meets a terrible death, Captain Francis Crozier takes command and leads his surviving crewmen on a last, desperate attempt to flee south across the ice. With them travels an Inuit woman who cannot speak and who may be the key to survival, or the harbinger of their deaths. But as another winter approaches, as scurvy and starvation grow more terrible, and as the terror on the ice stalks them southward, Crozier and his men begin to fear that there is no escape.",
 "The multiple-award-winning SF master returns to the universe that is his greatest success--the world of Hyperion and The Fall of Hyperion--to tell a story of love and memory, triumph and terror in a novel even more magnificent than its predecessors.Two hundred and seventy-four years after the fall of the WorldWeb in Fall of Hyperion, Raoul Endymion is sent on a quest. Retrieving Aenea from the Sphinx before the Church troops reach her is only the beginning. With help from a blue-skinned android named A. Bettik, Raoul and Aenea travel the river Tethys, pursued by Father Captain Frederico DeSoya, an influential warrior-priest and his troops. The shrike continues to make enigmatic appearances, and while many questions were raised in Hyperion and Fall of Hyperion, still more are raised here. Raoul's quest will continue.",
 "Calcutta: a monstrous city of immense slums, disease and misery, is clasped in the foetid embrace of an ancient cult. At its decaying core is the Goddess Kali: the dark mother of pain, four-armed and eternal, her song the sound of death and destruction. Robert Luczak has been hired by Harper's to find a noted Indian poet who has reappeared, under strange circumstances, years after he was thought dead. But nothing is simple in Calcutta and Lucsak's routine assignment turns into a nightmare when he learns that the poet is rumoured to have been brought back to life in a bloody and grisly ceremony of human sacrifice.",
 'Winner of the 1968 Newbery MedalWhen Claudia decided to run away, she planned very carefully. She would be gone just long enough to teach her parents a lesson in Claudia appreciation. And she would go in comfort - she would live at the Metropolitan Museum of Art. She saved her money, and she invited her brother Jamie to go, mostly because he was a miser and would have money.Claudia was a good organizer and Jamie had some ideas, too; so the two took up residence at the museum right on schedule. But once the fun of settling in was over, Claudia had two unexpected problems: She felt just the same, and she wanted to feel different; and she found a statue at the Museum so beautiful she could not go home until she had discovered its maker, a question that baffled the experts, too.The former owner of the statue was Mrs. Basil E. Frankweiler. Without her - well, without her, Claudia might never have found a way to go home.',
 'Joe Kavalier, a young Jewish artist who has also been trained in the art of Houdini-esque escape, has just smuggled himself out of Nazi-invaded Prague and landed in New York City. His Brooklyn cousin Sammy Clay is looking for a partner to create heroes, stories, and art for the latest novelty to hit America - the comic book. Drawing on their own fears and dreams, Kavalier and Clay create the Escapist, the Monitor, and Luna Moth, inspired by the beautiful Rosa Saks, who will become linked by powerful ties to both men. With exhilarating style and grace, Michael Chabon tells an unforgettable story about American romance and possibility.',
 "The Pilgrimage recounts the spectacular trials of Paulo Coelho and his mysterious mentor, Petrus, as they journey across Spain in search of a miraculous sword.The Pilgrimage paved the way to Paulo Coelho's international bestselling novel The Alchemist. In many ways, these two volumes are companions—to truly comprehend one, you must read the other.Step inside this captivating account of Paulo Coelho's pilgrimage along the road to Santiago. This fascinating parable explores the need to find one's own path. In the end, we discover that the extraordinary is always found in the ordinary and simple ways of everyday people. Part adventure story, part guide to self-discovery, this compelling tale delivers the perfect combination of enchantment and insight.",
 'A stranger arrives at the remote village of Viscos, carrying with him a backpack containing a notebook and eleven gold bars. He comes searching for the answer to a question that torments him: Are human beings, in essence, good or evil? In welcoming the mysterious foreigner, the whole village becomes an accomplice to his sophisticated plot, which will forever mark their lives.A novel of temptation by the internationally bestselling author Paulo Coelho, The Devil and Miss Prym is a thought-provoking parable of a community devoured by greed, cowardice, and fear—as it struggles with the choice between good and evil.',
 'Nine Stories (1953) is a collection of short stories by American fiction writer J. D. Salinger published in April 1953. It includes two of his most famous short stories, "A Perfect Day for Bananafish" and "For Esmé – with Love and Squalor". (Nine Stories is the U.S. title; the book is published in many other countries as For Esmé - with Love and Squalor, and Other Stories.)The stories are:"A Perfect Day for Bananafish""Uncle Wiggily in Connecticut""Just Before the War with the Eskimos""The Laughing Man""Down at the Dinghy""For Esmé – with Love and Squalor""Pretty Mouth and Green My Eyes""De Daumier-Smith\'s Blue Period""Teddy"',
 'Bret Ellis, the narrator of Lunar Park, is a writer whose first novel Less Than Zero catapulted him to international stardom while he was still in college. In the years that followed, he found himself adrift in a world of wealth, drugs, and fame, as well as dealing with the unexpected death of his abusive father. After a decade of decadence, a chance for salvation arrives; the chance to reconnect with an actress he was once involved with, and their son. But almost immediately his new life is threatened by a freak sequence of events and a bizarre series of murders that all seem to connect to Ellis’s past. Reality, memoir, and fantasy combine to create not only a fascinating version of this most controversial writer but also a deeply moving novel about love and loss, parents and children, and ultimately forgiveness.',
 'Dr Deepak Chopra, the world-famous pioneer in the field of mind-body medicine, addresses one of the fundamental questions of existence: what happens when we die? Drawing upon personal experience, the wisdom of ancient Vedic philosophy and state-of-the-art particle physics, Chopra helps us to overcome our fears about dying and to consider the fantastic possibilities that may await us in the afterlife.This is the book that Dr Chopra has been preparing to write his entire life. In it, he considers the theory that death is an illusion of the senses and that the soul survives in an ongoing spiral of refinement, ending in enlightenment. Thought-provoking exercises offer a first-hand experience of these and other ideas, helping you to make sense of your own spirituality whatever path you choose to follow, and offering you your very own map of eternity.',
 "Turow's acclaimed second novel, which topped international bestseller lists, is now available in trade paperback. Sandy Stern, the brilliant defense attorney from Presumed Innocent , faces an event so emotionally shattering that no part of his life is left untouched. It reveals a family caught in a maelstrom of hidden crimes, shocking secrets, and warring passions.",
 '"If a martian landed in America and set out to determine the nation\'s official state religion, he would have to conclude it is liberalism, while Christianity and Judaism are prohibited by law.Many Americans are outraged by liberal hostility to traditional religion. But as Ann Coulter reveals in this, her most explosive book yet, to focus solely on the Left\'s attacks on our Judeo-Christian tradition is to miss a larger liberalism is a religion—a godless one.And it is now entrenched as the state religion of this county.Though liberalism rejects the idea of God and reviles people of faith, it bears all the attributes of a religion. In Godless , Coulter throws open the doors of the Church of Liberalism, showing us its sacraments (abortion), its holy writ ( Roe v. Wade ), its martyrs (from Soviet spy Alger Hiss to cop-killer Mumia Abu-Jamal), its clergy (public school teachers), its churches (government schools, where prayer is prohibited but condoms are free), its doctrine of infallibility (as manifest in the "absolute moral authority" of spokesmen from Cindy Sheehan to Max Cleland), and its cosmology (in which mankind is an inconsequential accident).Then, of course, there\'s the liberal creation Charles Darwin\'s theory of evolution.For liberals, evolution is the touchstone that separates the enlightened from the benighted. But Coulter neatly reverses the pretense that liberals are rationalists guided by the ideals of free inquiry and the scientific method. She exposes the essential truth about Darwinian evolution that liberals refuse to it is bogus science .Writing with a keen appreciation for genuine science, Coulter reveals that the so-called gaps in the theory of evolution are all there is—Darwinism is nothing but a gap. After 150 years of dedicated searching into the fossil record, evolution\'s proponents have failed utterly to substantiate its claims. And a long line of supposed evidence, from the infamous Piltdown Man to the "evolving" peppered moths of England, has been exposed as hoaxes. Still, liberals treat those who question evolution as religious heretics and prohibit students from hearing about real science when it contradicts Darwinism. And these are the people who say they want to keep faith out of the classroom?Liberals\' absolute devotion to Darwinism, Coulter shows, has nothing to do with evolution\'s scientific validity and everything to do with its refusal to admit the possibility of God as a guiding force. They will brook no challenges to the official religion.Fearlessly confronting the high priests of the Church of Liberalism and ringing with Coulter\'s razor-sharp wit, Godless is the most important and riveting book yet from one of today\'s most lively and impassioned conservative voices."Liberals love to boast that they are not \'religious,\' which is what one would expect to hear from the state-sanctioned religion. Of course liberalism is a religion. It has its own cosmology, its own miracles, its own beliefs in the supernatural, its own churches, its own high priests, its own saints, its own total worldview, and its own explanation of the existence of the universe. In other words, liberalism contains all the attributes of what is generally known as \'religion.\'" —From Godless',
 '"Why mess around with Catholicism when you can have your own customized religion?"  Fed up with his parents\' boring old religion, agnostic-going-on-atheist Jason Bock invents a new god -- the town\'s water tower. He recruits an unlikely group of worshippers: his snail-farming best friend, Shin, cute-as-a-button (whatever that means) Magda Price, and the violent and unpredictable Henry Stagg. As their religion grows, it takes on a life of its own. While Jason struggles to keep the faith pure, Shin obsesses over writing their bible, and the explosive Henry schemes to make the new faith even more exciting -- and dangerous.  When the Chutengodians hold their first ceremony high atop the dome of the water tower, things quickly go from merely dangerous to terrifying and deadly. Jason soon realizes that inventing a religion is a lot easier than controlling it, but control it he must, before his creation destroys both his friends and himself.',
 "Psychiatrist Viktor Frankl's memoir has riveted generations of readers with its descriptions of life in Nazi death camps and its lessons for spiritual survival. Based on his own experience and the stories of his patients, Frankl argues that we cannot avoid suffering but we can choose how to cope with it, find meaning in it, and move forward with renewed purpose. At the heart of his theory, known as logotherapy, is a conviction that the primary human drive is not pleasure but the pursuit of what we find meaningful. Man's Search for Meaning has become one of the most influential books in America; it continues to inspire us all to find significance in the very act of living.",
 "Are you lacking direction in how to whip up a swanky soiree for lumberjacks? A dinner party for white-collar workers? A festive gathering for the grieving? Don't despair. Take a cue from entertaining expert Amy Sedaris and host an unforgettable fete that will have your guests raving.\xa0No matter the style or size of the gathering-from the straightforward to the bizarre-I Like You provides jackpot recipes and solid advice laced with Amy's blisteringly funny take on entertaining, plus four-color photos and enlightening sidebars on everything it takes to pull off a party with extraordinary flair.\xa0You don't even need to be a host or hostess to benefit-Amy offers tips for guests, too!\xa0 (Number one: don't be fifteen minutes early.)\xa0Readers will discover unique dishes to serve alcoholics (Broiled Frozen Chicken Wings with Applesauce), the secret to a successful children's party (a half-hour time limit, games included), plus a whole appendix chock-full of arts and crafts ideas (from a mini-pantyhose plant-hanger to a do-it-yourself calf stretcher), and much, much more!",
 "David Sedaris's beloved holiday collection is new again with six more pieces, including a never before published story. Along with such favorites as the diaries of a Macy's elf and the annals of two very competitive families, are Sedaris's tales of tardy trick-or-treaters (Us and Them); the difficulties of explaining the Easter Bunny to the French (Jesus Shaves); what to do when you've been locked out in a snowstorm (Let It Snow); the puzzling Christmas traditions of other nations (Six to Eight Black Men); what Halloween at the medical examiner's looks like (The Monster Mash); and a barnyard secret Santa scheme gone awry (Cow and Turkey).",
 "Anyone that has read NAKED and BARREL FEVER, or heard David Sedaris speaking live or on the radio will tell you that a new collection from him is cause for jubilation. His recent move to Paris from New York inspired these hilarious new pieces, including 'Me Talk Pretty One Day', about his attempts to learn French from a sadistic teacher who declares that 'every day spent with you is like having a caesarean section'. His family is another inspiration. 'You Can't Kill the Rooster' is a portrait of his brother, who talks incessant hip-hop slang to his bewildered father. And no one hones a finer fury in response to such modern annoyances as restaurant meals presented in ludicrous towers of food and cashiers with six-inch fingernails.",
 "Welcome to the hilarious, strange, elegiac, outrageous world of David Sedaris. In Naked, Sedaris turns the mania for memoir on its proverbial ear, mining the exceedingly rich terrain of his life, his family, and his unique worldview—a sensibility at once take-no-prisoners sharp and deeply charitable. A tart-tongued mother does dead-on imitations of her young son's nervous tics, to the great amusement of his teachers; a stint of Kerouackian wandering is undertaken (of course!) with a quadriplegic companion; a family gathers for a wedding in the face of imminent death. Through it all is Sedaris's unmistakable voice, without doubt one of the freshest in American writing.",
 'Hailed by The New Yorker as one of the funniest writers in America, "whose satirical brazenness holds up to Twain and Nathanael West, " David Sedaris has delighted National Public Radio listeners for years. Now, for the first time on CD and in a convenient box set, he gives voice to his biting sensibility.Barrel Fever and others Stories is Sedaris\' first collection of comic stories and essays. Performed by David and Amy Sedaris, this program is described by the New York Post as "a nuclear barrage of humor you could never replicate by reading this material on your own."In Holidays on Ice, Sedaris skewers the absurd conventions and contrivances of the holiday season, with hilarious effect.Naked, a riotous compilation of stories performed by David and Amy Sedaris, was praised by Publishers Weekly as "highly likeable and spirited throughout."Traveling from his childhood in North Carolina to a second linguistic childhood as a non-French-speaking citizen of Paris, Me Talk Pretty One Day is both poignant and full of humor.',
 "In David Sedaris’s world, no one is safe and no cow is sacred. A manic cross between Mark Leyner, Fran Lebowitz, and the National Enquirer, Sedaris’s collection of essays is a rollicking tour through the national Zeitgeist: a do-it-yourself suburban dad saves money by performing home surgery; a man who is loved too much flees the heavyweight champion of the world; a teenage suicide tries to incite a lynch mob at her funeral; a bitter Santa abuses the elves.David Sedaris made his debut on NPR’s Morning Edition with “SantaLand Diaries”, recounting his strange-but-true experiences as an elf at Macy’s, and soon became one of the show’s most popular commentators. With a perfect eye and a voice infused with as much empathy as wit, Sedaris writes stories and essays that target the soulful ridiculousness of our behavior. Barrel Fever is like a blind date with modern life, and anything can happen.Parade --Music for lovers --The last you'll hear from me --My manuscript --Firestone --We get along --Glen's homophobia newsletter vol. 3, no. 2 --Don's story --Season's greeting to our friends and family!!! --Jamboree --After Malison --Barrel fever --Diary of a smoker --Giantess --The curly kind --SantaLand diaries",
 'The internationally acclaimed author of the L.A. Quartet and The Underworld USA Trilogy, James Ellroy, presents another literary noir masterpiece of historical paranoia .In this savagely audacious novel, James Ellroy plants a pipe bomb under the America in the 1960s, lights the fuse, and watches the shrapnel fly. On November 22, 1963 three men converge in Dallas. Their to clean up the JFK hit’s loose ends and inconvenient witnesses. They are Wayne Tedrow, Jr., a Las Vegas cop with family ties to the lunatic right; Ward J. Littell, a defrocked FBI man turned underworld mouthpiece; and Pete Bondurant, a dope-runner and hit-man who serves as the mob’s emissary to the anti-Castro underground.It goes bad from there. For the next five years these night-riders run a whirlwind of plots and Howard Hughes’s takeover of Vegas, J. Edgar Hoover’s war against the civil rights movement, the heroin trade in Vietnam, and the murders of Martin Luther King, Jr. and Bobby Kennedy. Wilder than L. A. Confidential, more devastating than American Tabloid, The Cold Six Thousand establishes Ellroy as one of our most fearless novelists.',
 'Life of Pi is a fantasy adventure novel by Yann Martel published in 2001. The protagonist, Piscine Molitor "Pi" Patel, a Tamil boy from Pondicherry, explores issues of spirituality and practicality from an early age. He survives 227 days after a shipwreck while stranded on a boat in the Pacific Ocean with a Bengal tiger named Richard Parker.',
 "Die Ärztin Katie hat alles, was sie sich wünschen kann: einen tollen Job, gesunde Kinder und einen erfolgreichen Mann. Super - auf den ersten Blick. Beim zweiten sieht's schon etwas anders aus. Und beim dritten stellt sie sich unweigerlich die Frage: Warum gibt es eigentlich für alles Gebrauchsanweisungen, nur nicht für das Leben?",
 "ACE for ISBN 9780140293456Will is thirty-six but acts like a teenager. Single, child-free and still feeling cool, he reads the right magazines, goes to the right clubs and knows which trainers to wear. He's also discovered a great way to score with women at single parents' groups, full of available (and grateful) mothers, all waiting for Mr Nice Guy. That's where he meets Marcus, the oldest twelve-year-old in the world. Marcus is a bit strange: he listens to Joni Mitchell and Mozart, he looks after his Mum and he's never even owned a pair of trainers. Perhaps if Will can teach Marcus how to be a kid, Marcus can help Will grow up and they can both start to act their age.",
 "There is an alternate cover edition for this ISBN13 here.Wake up, CaitlinEver since she started going out with Rogerson Biscoe, Caitlin seems to have fallen into a semiconscious dreamland where nothing is quite real. Rogerson is different from anyone Caitlin has ever known. He's magnetic. He's compelling. He's dangerous. Being with him makes Caitlin forget about everything else—her missing sister, her withdrawn mother, her lackluster life. But what happens when being with Rogerson becomes a larger problem than being without him?",
 'Written on the front lines in Vietnam, Dispatches became an immediate classic of war reportage when it was published in 1977.From its terrifying opening pages to its final eloquent words, Dispatches makes us see, in unforgettable and unflinching detail, the chaos and fervor of the war and the surreal insanity of life in that singular combat zone. Michael Herr’s unsparing, unorthodox retellings of the day-to-day events in Vietnam take on the force of poetry, rendering clarity from one of the most incomprehensible and nightmarish events of our time.Dispatches is among the most blistering and compassionate accounts of war in our literature.',
 'A native of Bombay, Suketu Mehta gives us an insider’s view of this stunning metropolis. He approaches the city from unexpected angles, taking us into the criminal underworld of rival Muslim and Hindu gangs, following the life of a bar dancer raised amid poverty and abuse, opening the door into the inner sanctums of Bollywood, and delving into the stories of the countless villagers who come in search of a better life and end up living on the sidewalks.As each individual story unfolds, Mehta also recounts his own efforts to make a home in Bombay after more than twenty years abroad. Candid, impassioned, funny, and heartrending, Maximum City is a revelation of an ancient and ever-changing world.',
 "From a childhood survivor of the Cambodian genocide under the regime of Pol Pot, this is a riveting narrative of war crimes and desperate actions, the unnerving strength of a small girl and her family, and their triumph of spirit.One of seven children of a high-ranking government official, Loung Ung lived a privileged life in the Cambodian capital of Phnom Penh until the age of five. Then, in April 1975, Pol Pot's Khmer Rouge army stormed into the city, forcing Ung's family to flee and, eventually, to disperse. Loung was trained as a child soldier in a work camp for orphans, her siblings were sent to labor camps, and those who survived the horrors would not be reunited until the Khmer Rouge was destroyed.Harrowing yet hopeful, Loung's powerful story is an unforgettable account of a family shaken and shattered, yet miraculously sustained by courage and love in the face of unspeakable brutality.",
 'Fahrenheit 451 ofrece la historia de un sombrío y horroroso futuro. Montag, el protagonista, pertenece a una extraña brigada de bomberos cuya misión, paradójicamente, no es la de sofocar incendios sino la de provocarlos, para quemar libros. Porque en el país de Montag está terminantemente prohibido leer. Porque leer obliga a pensar, y en el país de Montag esta prohibido pensar. Porque leer impide ser ingenuamente feliz, y en el país de Montag hay que ser feliz a la fuerza...',
 "He is perhaps the most acclaimed, revered and widely read writer of our time, and in this first volume of a planned trilogy, Gabriel Garcia Marquez begins to tell the story of his life. Living to Tell the Tale spans Marquez's life from his birth in 1927 through the beginning of his career as a writer to the moment in the 1950s when he proposed to the woman who would become his wife. It is a tale of people, places and events as they occur to him: family, work, politics, books and music, his beloved Colombia, parts of his history until now undisclosed and incidents that would later appear, transmuted and transposed in his fiction. A vivid, powerful, beguiling memoir that gives us the formation of Marquez as a writer and as a man.",
 'The Grapes of Wrath is a landmark of American literature. A portrait of the conflict between the powerful and the powerless, of one man’s fierce reaction to injustice, and of one woman’s stoical strength, the novel captures the horrors of the Great Depression and probes into the very nature of equality and justice in America. Although it follows the movement of thousands of men and women and the transformation of an entire nation, The Grapes of Wrath is also the story of one Oklahoma family, the Joads, who are driven off their homestead and forced to travel west to the promised land of California. Out of their trials and their repeated collisions against the hard realities of an America divided into Haves and Have-Nots evolves a drama that is intensely human yet majestic in its scale and moral vision, elemental yet plainspoken, tragic but ultimately stirring in its human dignity. First published in 1939, The Grapes of Wrath summed up its era in the way that Uncle Tom\'s Cabin summed up the years of slavery before the Civil War. Sensitive to fascist and communist criticism, Steinbeck insisted that "The Battle Hymn of the Republic" be printed in its entirety in the first edition of the book—which takes its title from the first verse: "He is trampling out the vintage where the grapes of wrath are stored." At once a naturalistic epic, captivity narrative, road novel, and transcendental gospel, Steinbeck’s fictional chronicle of the Dust Bowl migration of the 1930s is perhaps the most American of American Classics.',
 "In his journal, Nobel Prize winner John Steinbeck called East of Eden “the first book,” and indeed it has the primordial power and simplicity of myth. Set in the rich farmland of California’s Salinas Valley, this sprawling and often brutal novel follows the intertwined destinies of two families—the Trasks and the Hamiltons—whose generations helplessly reenact the fall of Adam and Eve and the poisonous rivalry of Cain and Abel.Adam Trask came to California from the East to farm and raise his family on the new rich land. But the birth of his twins, Cal and Aaron, brings his wife to the brink of madness, and Adam is left alone to raise his boys to manhood. One boy thrives nurtured by the love of all those around him; the other grows up in loneliness enveloped by a mysterious darkness.First published in 1952, East of Eden is the work in which Steinbeck created his most mesmerizing characters and explored his most enduring themes: the mystery of identity, the inexplicability of love, and the murderous consequences of love's absence. A masterpiece of Steinbeck's later years, East of Eden is a powerful and vastly ambitious novel that is at once a family saga and a modern retelling of the Book of Genesis.",
 "Days before his release from prison, Shadow's wife, Laura, dies in a mysterious car crash. Numbly, he makes his way back home. On the plane, he encounters the enigmatic Mr Wednesday, who claims to be a refugee from a distant war, a former god and the king of America. Together they embark on a profoundly strange journey across the heart of the USA, whilst all around them a storm of preternatural and epic proportions threatens to break.Scary, gripping and deeply unsettling, American Gods takes a long, hard look into the soul of America. You'll be surprised by what - and who - it finds there...This is the author's preferred text, never before published in the UK, and is about 12,000 words longer than the previous UK edition.",
 "Eleven-year-old Owen Meany, playing in a Little League baseball game in Gravesend, New Hampshire, hits a foul ball and kills his best friend's mother. Owen doesn't believe in accidents; he believes he is God's instrument. What happens to Owen after that 1953 foul is both extraordinary and terrifying. At moments a comic, self-deluded victim, but in the end the principal, tragic actor in a divine plan, Owen Meany is the most heartbreaking hero John Irving has yet created.",
 'Quince años mas tarde, la memoria de aquel dia ha vuelto a mi. He visto a aquel muchacho vagando entre las brumas de la estacion de Francia y el nombre de Marina se ha encendido de nuevo como una herida fresca. Todos tenemos un secreto encerrado bajo llave en el atico del alma. este es el mio.En la Barcelona de 1980 Oscar Drai suena despierto, deslumbrado por los placeres mocernistas cercanos al internado en el que estudia. En una de sus escapadas conoce a Marina, una chica audaz que comparte con oscar la aventura de adentrarse en un enigma doloroso del pasado de la ciudad. Un misterioso personaje de la posguerra se propuso el mayor desafio imaginable, pero su ambicion lo arrastro por sendas siniestras cucyas consecuencias debe pagar alguien todavia hoy. -----------------------------------------------------------------------------------------------From the bestselling author of The Shadow of the Wind comes the intriguing mystery that started it all..."We all have a secret buried under lock and key in the attic of our soul. This is mine."Fifteen-year-old Oscar Drai meets the strange Marina while he\'s exploring an old quarter of Barcelona. She leads Oscar to a cemetery, where they watch a macabre ritual that occurs on the last Sunday of each month. At exactly ten o\'clock in the morning, a woman shrouded in a black velvet cloak descends from her carriage to place a single rose on an unmarked grave.When Oscar and Marina decide to follow her, they begin a journey that transports them to a forgotten postwar Barcelona--a world of aristocrats and actresses, inventors and tycoons--an reveals a dark secret that lies waiting in the mysterious labyrinth beneath the city streets.Carlos Ruiz Zafon\'s haunting Marina has long been a cult classic in Spain and is now an international bestseller.',
 'At the close of the last millennium, Helen Fielding debuted the irrepressible (and blockbuster-bestselling) Bridget Jones. Now, Fielding gives us a sensational new heroine for a new era...Move over 007, a stunning, sexy-and decidedly female-new player has entered the world of international espionage. Her name is Olivia Joules (that’s "J.O.U.L.E.S. the unit of kinetic energy") and she\'s ready to take America by storm with charm, style, and her infamous Overactive Imagination. How could a girl not be drawn to the alluring, powerful Pierre Ferramo-he of the hooded eyes, impeccable taste, unimaginable wealth, exotic international homes, and dubious French accent? Could Ferramo really be a major terrorist bent on the Western world’s destruction, hiding behind a smokescreen of fine wines, yachts, and actresses slash models? Or is it all just a product of Olivia Joules’s overactive imagination? Join Olivia in her heart-stopping, hilarious, nerve-frazzling quest from hip hotel to eco-lodge to underwater cave, by light aircraft, speedboat, helicopter, and horse, in this witty, contemporary, and utterly unputdownable novel deluxe. ',
 "How has Mrs. Olinski chosen her sixth-grade Academic Bowl team? She had a number of answers. But were any of them true? How had she really chosen Noah and Nadia and Ethan and Julian? And why did they make such a good team? It was a surprise to a lot of people when Mrs. Olinski's team won the sixth-grade Academic Bowl contest at Epiphany Middle School. It was an even bigger surprise when they beat the seventh grade and the eighth grade, too. And when they went on to even greater victories, everyone began to ask: How did it happen?It happened at least partly because Noah had been the best man (quite by accident) at the wedding of Ethan's grandmother and Nadia's grandfather. It happened because Nadia discovered that she could not let a lot of baby turtles die. It happened when Ethan could not let Julian face disaster alone. And it happened because Julian valued something important in himself and saw in the other three something he also valued.Mrs. Olinski, returning to teaching after having been injured in an automobile accident, found that her Academic Bowl team became her answer to finding confidence and success. What she did not know, at least at first, was that her team knew more than she did the answer to why they had been chosen.This is a tale about a team, a class, a school, a series of contests and, set in the midst of this, four jewel-like short stories -- one for each of the team members -- that ask questions and demonstrate surprising answers.",
 "In a vase in a closet, a couple of years after his father died in 9/11, nine-year-old Oskar discovers a key...The key belonged to his father, he's sure of that. But which of New York's 162 million locks does it open?So begins a quest that takes Oskar - inventor, letter-writer and amateur detective - across New York's five boroughs and into the jumbled lives of friends, relatives, and complete strangers. He gets heavy boots, he gives himself little bruises and he inches ever nearer to the heart of a family mystery that stretches back fifty years. But will it take him any closer to, or further from, his lost father?",
 "“Ridley leaps from chromosome to chromosome in a handy summation of our ever increasing understanding of the roles that genes play in disease, behavior, sexual differences, and even intelligence. . . . . He addresses not only the ethical quandaries faced by contemporary scientists but the reductionist danger in equating inheritability with inevitability.” —\xa0 The New Yorker The genome's been mapped. But what does it mean? Matt Ridley’s Genome is the book that explains it what it is, how it works, and what it portends for the future Arguably the most significant scientific discovery of the new century, the mapping of the twenty-three pairs of chromosomes that make up the human genome raises almost as many questions as it answers. Questions that will profoundly impact the way we think about disease, about longevity, and about free will. Questions that will affect the rest of your life. Genome offers extraordinary insight into the ramifications of this incredible breakthrough. By picking one newly discovered gene from each pair of chromosomes and telling its story, Matt Ridley recounts the history of our species and its ancestors from the dawn of life to the brink of future medicine. From Huntington's disease to cancer, from the applications of gene therapy to the horrors of eugenics, Ridley probes the scientific, philosophical, and moral issues arising as a result of the mapping of the genome. It will help you understand what this scientific milestone means for you, for your children, and for humankind.",
 "Charles Carter—a.k.a. Carter the Great—is a young master performer whose skill as an illusionist exceeds even that of the great Houdini. But nothing in his career has prepared Carter for the greatest stunt of all, which stars none other than President Warren G. Harding and which could end up costing Carter the reputation he has worked so hard to create. Filled with historical references that evoke the excesses and exuberance of Roaring Twenties, pre-Depression America, Carter Beats the Devil is a complex and illuminating story of one man's journey through a magical—and sometimes dangerous—world, where illusion is everything.",
 'The hallowed halls of Moo University, a midwestern agricultural institution (aka "cow college"), are rife with devious plots, mischievous intrigue, lusty liaisons, and academic one-upsmanship. In this wonderfully written and masterfully plotted novel, Jane Smiley, the prizewinning author of A Thousand Acres, offers a wickedly funny, darkly poignant comedy.',
 'THE ONLY COMPLETE COLLECTION BY THE NOBEL PRIZE-WINNING AUTHOR   In this definitive collection of Ernest Hemingway\'s short stories, readers will delight in the author\'s most beloved classics such as "The Snows of Kilimanjaro," "Hills Like White Elephants," and "A Clean, Well-Lighted Place," and will discover seven new tales published for the first time in this collection. For Hemingway fans The Complete Short Stories is an invaluable treasury.',
 'To Have and Have Not is the dramatic story of Harry Morgan, an honest man who is forced into running contraband between Cuba and Key West as a means of keeping his crumbling family financially afloat. His adventures lead him into the world of the wealthy and dissipated yachtsmen who throng the region, and involve him in a strange and unlikely love affair.Harshly realistic, yet with one of the most subtle and moving relationships in the Hemingway oeuvre, To Have and Have Not is literary high adventure at its finest.',
 "Hemingway's memories of his life as an unknown writer living in Paris in the twenties are deeply personal, warmly affectionate, and full of wit. Looking back not only at his own much younger self, but also at the other writers who shared Paris with him - James Joyce, Wyndham Lewis, Scott and Zelda Fitzgerald - he recalls the time when, poor, happy, and writing in cafes, he discovered his vocation. Written during the last years of Hemingway's life, his memoir is a lively and powerful reflection of his genius that scintillates with the romance of the city.",
 "First published in 1970, nine years after Ernest Hemingway's death, Islands in the Stream is the story of an artist and adventurer — a man much like Hemingway himself. Rich with the uncanny sense of life and action characteristic of his writing — from his earliest stories (In Our Time) to his last novella (The Old Man and the Sea) — this compelling novel contains both the warmth of recollection that inspired A Moveable Feast and a rare glimpse of Hemingway's rich and relaxed sense of humor, which enlivens scene after scene.  Beginning in the 1930s, Islands in the Stream follows the fortunes of Thomas Hudson from his experiences as a painter on the Gulf Stream island of Bimini, where his loneliness is broken by the vacation visit of his three young sons, to his antisubmarine activities off the coast of Cuba during World War II. The greater part of the story takes place in a Havana bar, where a wildly diverse cast of characters — including an aging prostitute who stands out as one of Hemingway's most vivid creations — engages in incomparably rich dialogue. A brilliant portrait of the inner life of a complex and endlessly intriguing man, Islands in the Stream is Hemingway at his mature best.",
 'Still considered one of the best books ever written about bullfighting, Death in the Afternoon is an impassioned look at the sport by one of its true aficionados. It reflects Hemingway\'s conviction that bullfighting was more than mere sport and reveals a rich source of inspiration for his art. The unrivaled drama of bullfighting, with its rigorous combination of athleticism and artistry, and its requisite display of grace under pressure, ignited Hemingway\'s imagination. Here he describes and explains the technical aspects of this dangerous ritual and "the emotional and spiritual intensity and pure classic beauty that can be produced by a man, an animal, and a piece of scarlet serge draped on a stick." Seen through his eyes, bullfighting becomes a richly choreographed ballet, with performers who range from awkward amateurs to masters of great elegance and cunning.A fascinating look at the history and grandeur of bullfighting, Death in the Afternoon is also a deeper contemplation of the nature of cowardice and bravery, sport and tragedy, and is enlivened throughout by Hemingway\'s sharp commentary on life and literature.',
 'While reporting a story from India, a New York television journalist has his left hand eaten by a lion; millions of TV viewers witness the accident. In Boston, a renowned hand surgeon awaits the opportunity to perform the nation’s first hand transplant; meanwhile, in the distracting aftermath of an acrimonious divorce, the surgeon is seduced by his housekeeper. A married woman in Wisconsin wants to give the one-handed reporter her husband’s left hand – that is, after her husband dies. But the husband is alive, relatively young, and healthy.',
 'It is 1967 and two Viennese university students want to liberate the Vienna Zoo, as was done after World War II. But their good intentions have both comic and gruesome consequences, in this first novel written by a twenty-five year old John Irving, already a master storyteller.',
 '“One night when she was four and sleeping in the bottom bunk of her bunk bed, Ruth Cole woke to the sound of lovemaking—it was coming from her parents’ bedroom.”This sentence opens John Irving’s ninth novel, A Widow for One Year, a story of a family marked by tragedy. Ruth Cole is a complex, often self-contradictory character—a “difficult” woman. By no means is she conventionally “nice,” but she will never be forgotten.Ruth’s story is told in three parts, each focusing on a critical time in her life. When we first meet her—on Long Island, in the summer of 1958—Ruth is only four.The second window into Ruth’s life opens on the fall of 1990, when she is an unmarried woman whose personal life is not nearly as successful as her literary career. She distrusts her judgment in men, for good reason.A Widow for One Year closes in the autumn of 1995, when Ruth Cole is a forty-one-year-old widow and mother. She’s about to fall in love for the first time.Richly comic, as well as deeply disturbing, A Widow for One Year is a multilayered love story of astonishing emotional force. Both ribald and erotic, it is also a brilliant novel about the passage of time and the relentlessness of grief.Source: john-irving.com',
 'The Great Gatsby, F. Scott Fitzgerald\'s third book, stands as the supreme achievement of his career. This exemplary novel of the Jazz Age has been acclaimed by generations of readers. The story of the fabulously wealthy Jay Gatsby and his love for the beautiful Daisy Buchanan, of lavish parties on Long Island at a time when The New York Times noted "gin was the national drink and sex the national obsession," it is an exquisitely crafted tale of America in the 1920s.The Great Gatsby is one of the great classics of twentieth-century literature.(from the back cover)',
 "Raised from birth in the orphanage at St. Cloud's, Maine, Homer Wells has become the protege of Dr. Wilbur Larch, its physician and director. There Dr. Larch cares for the troubled mothers who seek his help, either by delivering and taking in their unwanted babies or by performing illegal abortions. Meticulously trained by Dr. Larch, Homer assists in the former, but draws the line at the latter. Then a young man brings his beautiful fiancee to Dr. Larch for an abortion, and everything about the couple beckons Homer to the wide world outside the orphanage ...",
 'In the 11th century, Rob Cole left poor, disease-ridden London to make his way across the land, hustling, juggling, peddling cures to the sick—and discovering the mystical ways of healing. It was on his travels that he found his own very real gift for healing—a gift that urged him on to become a doctor. So all consuming was his dream, that he made the perilous, unheard-of journey to Persia, to its Arab universities where he would undertake a transformation that would shape his destiny forever.',
 'George Hall is an unobtrusive man. A little distant, perhaps, a little cautious, not at quite at ease with the emotional demands of fatherhood, or manly bonhomie. He does not understand the modern obsession with talking about everything. “The secret of contentment, George felt, lay in ignoring many things completely.” Some things in life, however, cannot be ignored.At 61, George is settling down to a comfortable retirement, building a shed in his garden, reading historical novels and listening to a bit of light jazz. Then his tempestuous daughter, Katie, announces that she is getting re-married, to the deeply inappropriate Ray. Her family is not pleased – as her brother Jamie observes, Ray has “strangler’s hands.” Katie can’t decide if she loves Ray, or loves the wonderful way he has with her son Jacob, and her mother Jean is a bit put out by all the planning and arguing the wedding has occasioned, which get in the way of her quite fulfilling late-life affair with one of her husband’s ex-colleagues. And the tidy and pleasant life Jamie has created crumbles when he fails to invite his lover, Tony, to the dreaded nuptials. Unnoticed in the uproar, George discovers a sinister lesion on his hip, and quietly begins to lose his mind. The way these damaged people fall apart – and come together – as a family is the true subject of Haddon’s disturbing yet amusing portrait of a dignified man trying to go insane politely.A SPOT OF BOTHER is Mark Haddon’s unforgettable follow-up to the internationally beloved bestseller THE CURIOUS INCIDENT OF THE DOG IN THE NIGHT-TIME. Here the madness – literally – of family life proves rich comic fodder for Haddon’s crackling prose and bittersweet insights into misdirected love.',
 "First published in 1922, The Beautiful and the Damned followed Fitzgerald's impeccable debut, This Side of Paradise, thus securing his place in the tradition of great American novelists. Embellished with the author's lyrical prose, here is the story of Harvard-educated, aspiring aesthete Anthony Patch and his beautiful wife, Gloria. As they await the inheritance of his grandfather's fortune, their reckless marriage sways under the influence of alcohol and avarice. A devastating look at the nouveau riche, and the New York nightlife, as well as the ruinous effects of wild ambition, The Beautiful and the Damned achieved stature as one of Fitzgerald's most accomplished novels. Its distinction as a classic endures to this day. Pocket Book's Enriched Classics present the great works of world literature enhanced for the contemporary reader. Special features include critical perspectives, suggestions for further read, and a unique visual essay composed of period photographs that help bring every word to life.",
 'Ethan Allen Hawley, the protagonist of Steinbeck’s last novel, works as a clerk in a grocery store that his family once owned. With Ethan no longer a member of Long Island’s aristocratic class, his wife is restless, and his teenage children are hungry for the tantalizing material comforts he cannot provide. Then one day, in a moment of moral crisis, Ethan decides to take a holiday from his own scrupulous standards.Set in Steinbeck’s contemporary 1960 America, the novel explores the tenuous line between private and public honesty that today ranks it alongside his most acclaimed works of penetrating insight into the American condition. This edition features an introduction and notes by Steinbeck scholar Susan Shillinglaw.',
 'Cannery Row is a book without much of a plot. Rather, it is an attempt to capture the feeling and people of a place, the cannery district of Monterey, California, which is populated by a mix of those down on their luck and those who choose for other reasons not to live "up the hill" in the more respectable area of town. The flow of the main plot is frequently interrupted by short vignettes that introduce us to various denizens of the Row, most of whom are not directly connected with the central story. These vignettes are often characterized by direct or indirect reference to extreme violence: suicides, corpses, and the cruelty of the natural world.The "story" of Cannery Row follows the adventures of Mack and the boys, a group of unemployed yet resourceful men who inhabit a converted fish-meal shack on the edge of a vacant lot down on the Row.Sweet Thursday is the sequel to Cannery Row.',
 'Longitude is the dramatic human story of an epic scientific quest. The "longitude problem" was the thorniest dilemma of the eighteenth century. Lacking the ability to measure longitude, sailors throughout the great ages of exploration had been literally lost at sea.At the heart of Dava Sobel\'s fascinating brief history of astronomy, navigation and horology stands the figure of John Harrison, self-taught Yorkshire clockmaker, and his forty-year obsession with building the perfect timekeeper. Battling against the establishment, Harrison stood alone in pursuit of his solution and the £20,000 reward offered by Parliament.',
 'HOW DID AMERICA BEGIN?This simple question launches acclaimed author Nathaniel Philbrick on an extraordinary journey to understand the truth behind our most sacred national myth: the voyage of the Mayflower and the settlement of Plymouth Colony. As Philbrick reveals in this electrifying new book, the story of the Pilgrims does not end with the First Thanksgiving; instead, it is a fifty-five-year epic that is at once tragic and heroic, and still carries meaning for us today.',
 'This is the story of Maximilian Ophuls, America’s counterterrorism chief, one of the makers of the modern world; his Kashmiri Muslim driver and subsequent killer, a mysterious figure who calls himself Shalimar the clown; Max’s illegitimate daughter India; and a woman who links them, whose revelation finally explains them all. It is an epic narrative that moves from California to Kashmir, France, and England, and back to California again. Along the way there are tales of princesses lured from their homes by demons, legends of kings forced to defend their kingdoms against evil. And there is always love, gained and lost, uncommonly beautiful and mortally dangerous.',
 'The novel that set the stage for his modern classic, The Satanic Verses, Shame is Salman Rushdie’s phantasmagoric epic of an unnamed country that is “not quite Pakistan.” In this dazzling tale of an ongoing duel between the families of two men–one a celebrated wager of war, the other a debauched lover of pleasure–Rushdie brilliantly portrays a world caught between honor and humiliation–“shamelessness, shame: the roots of violence.” Shame is an astonishing story that grows more timely by the day.',
 "Set in an exotic Eastern landscape peopled by magicians and fantastic talking animals, Salman Rushdie's classic children's novel Haroun and the Sea of Stories inhabits the same imaginative space as Gulliver's Travels, Alice in Wonderland, and The Wizard of Oz. In this captivating novel, Haroun sets out on an adventure to restore the poisoned source of the sea of stories. On the way, he encounters many foes, all intent on draining the sea of all its storytelling powers.",
 'Малик Соланка, миллионер из Бомбея, получивший образование в Кембридже, пытается убежать от самого себя. Он бросает мир науки, становится кукольником, но, когда в нем поселяется ярость, с которой он боится не совладать, Соланка оставляет семью и отправляется за океан. Он надеется обрести покой и забвение в сердце Нью-Йорка, переживающего дни неслыханного изобилия. Но повсюду вокруг него - ярость...Удивительный роман, безжалостная черная комедия, шокирующее проникновение в самые темные стороны человеческой натуры.',
 "You can go after the job you want...and get it! You can take the job you have...and improve it! You can take any situation you're in...and make it work for you!Since its release in 1936, How to Win Friends and Influence People has sold more than 30 million copies. Dale Carnegie's first book is a timeless bestseller, packed with rock-solid advice that has carried thousands of now famous people up the ladder of success in their business and personal lives.As relevant as ever before, Dale Carnegie's principles endure, and will help you achieve your maximum potential in the complex and competitive modern age.Learn the six ways to make people like you, the twelve ways to win people to your way of thinking, and the nine ways to change people without arousing resentment.",
 "The book 'How to stop worrying & start living' suggest many ways to conquer worry and lead a wonderful life.The book mentions fundamental facts to know about worry and magic formula for solving worry-some situations.Psychologists & Doctors' view:-Worry can make even the most stolid person ill.-Worry may cause nervous breakdown.-Worry can even cause tooth decay-Worry is one of the factors for High Blood Pressure.-Worry makes you tense and nervous and affect the nerves of your stomach.The book suggests basic techniques in analysing worry, step by step, in order to cope up with them.A very interesting feature of the book is 'How to eliminate 50% of your business worries'.The book offers 7 ways to cultivate a mental attitude that will bring you peace and happiness. Also, the golden rule for conquering worry, keeping your energy & spirits high.The book consists of some True Stories which will help the readers in conquering worry to lead you to success in life.The book is full of similar incidences and narrations which will make our readers to understand the situation in an easy way and lead a happy life. A must read book for everyone.",
 '"Who Moved My Cheese?" is a simple parable that reveals profound truths. It is an amusing and enlightening story of four characters who live in a "Maze" and look for "Cheese" to nourish them and make them happy.Two are mice named Sniff and Scurry. And two are "Littlepeople" — beings the size of mice who look and act a lot like people. Their names are Hem and Haw."Cheese" is a metaphor for what you want to have in life — whether it\'s a good job, a loving relationship, money, a possession, health, or spiritual peace of mind.And the "Maze" is where you look for what you want — the organisation you work in or the family or community you live in.In the story, the characters are faced with unexpected change. Eventually, one of them deals with it successfully, and writes what he has learned from his experience on the Maze walls.When you come to see "The Handwriting on the Wall," you can discover for yourself how to deal with change, so that you can enjoy less stress and more success (however you define it) in your work and in your life.Written for all ages, the story takes less than an hour to read, but its unique insights can last for a lifetime.',
 'In this perennial bestseller, embraced by organizations and industries worldwide, globally preeminent management thinkers W. Chan Kim and Renée Mauborgne challenge everything you thought you knew about the requirements for strategic success. Recognized as one of the most iconic and impactful strategy books ever written, BLUE OCEAN STRATEGY, now updated with fresh content from the authors, argues that cutthroat competition results in nothing but a bloody red ocean of rivals fighting over a shrinking profit pool. Based on a study of 150 strategic moves (spanning more than 100 years across 30 industries), the authors argue that lasting success comes not from battling competitors but from creating "blue oceans"—untapped new market spaces ripe for growth.',
 "Heart of Darkness, a novel by Joseph Conrad, was originally a three-part series in Blackwood's Magazine in 1899. It is a story within a story, following a character named Charlie Marlow, who recounts his adventure to a group of men onboard an anchored ship. The story told is of his early life as a ferry boat captain. Although his job was to transport ivory downriver, Charlie develops an interest in investing an ivory procurement agent, Kurtz, who is employed by the government. Preceded by his reputation as a brilliant emissary of progress, Kurtz has now established himself as a god among the natives in “one of the darkest places on earth.” Marlow suspects something else of Kurtz: he has gone mad.A reflection on corruptive European colonialism and a journey into the nightmare psyche of one of the corrupted, Heart of Darkness is considered one of the most influential works ever written.",
 'McCourt\'s long-awaited book about how his thirty-year teaching career shaped his second act as a writer.Nearly a decade ago Frank McCourt became an unlikely star when, at the age of sixty-six, he burst onto the literary scene with Angela\'s Ashes, the Pulitzer Prize-winning memoir of his childhood in Limerick, Ireland. Then came \'Tis, his glorious account of his early years in New York.Now, here at last, is McCourt\'s long-awaited book about how his thirty-year teaching career shaped his second act as a writer. Teacher Man is also an urgent tribute to teachers everywhere. In bold and spirited prose featuring his irreverent wit and heartbreaking honesty, McCourt records the trials, triumphs and surprises he faces in public high schools around New York City. His methods anything but conventional, McCourt creates a lasting impact on his students through imaginative assignments (he instructs one class to write "An Excuse Note from Adam or Eve to God"), singalongs (featuring recipe ingredients as lyrics), and field trips (imagine taking twenty-nine rowdy girls to a movie in Times Square!).McCourt struggles to find his way in the classroom and spends his evenings drinking with writers and dreaming of one day putting his own story to paper. Teacher Man shows McCourt developing his unparalleled ability to tell a great story as, five days a week, five periods per day, he works to gain the attention and respect of unruly, hormonally charged or indifferent adolescents. McCourt\'s rocky marriage, his failed attempt to get a Ph.D. at Trinity College, Dublin, and his repeated firings due to his propensity to talk back to his superiors ironically lead him to New York\'s most prestigious school, Stuyvesant High School, where he finally finds a place and a voice. "Doggedness," he says, is "not as glamorous as ambition or talent or intellect or charm, but still the one thing that got me through the days and nights."For McCourt, storytelling itself is the source of salvation, and in Teacher Man the journey to redemption -- and literary fame -- is an exhilarating adventure.',
 'Frank McCourt\'s glorious childhood memoir, Angela\'s Ashes, has been loved and celebrated by readers everywhere for its spirit, its wit and its profound humanity. A tale of redemption, in which storytelling itself is the source of salvation, it won the National Book Critics Circle Award, the Los Angeles Times Book Award and the Pulitzer Prize. Rarely has a book so swiftly found its place on the literary landscape.And now we have \'Tis, the story of Frank\'s American journey from impoverished immigrant to brilliant teacher and raconteur. Frank lands in New York at age nineteen, in the company of a priest he meets on the boat. He gets a job at the Biltmore Hotel, where he immediately encounters the vivid hierarchies of this "classless country," and then is drafted into the army and is sent to Germany to train dogs and type reports. It is Frank\'s incomparable voice -- his uncanny humor and his astonishing ear for dialogue -- that renders these experiences spellbinding.When Frank returns to America in 1953, he works on the docks, always resisting what everyone tells him, that men and women who have dreamed and toiled for years to get to America should "stick to their own kind" once they arrive. Somehow, Frank knows that he should be getting an education, and though he left school at fourteen, he talks his way into New York University. There, he falls in love with the quintessential Yankee, long-legged and blonde, and tries to live his dream. But it is not until he starts to teach -- and to write -- that Frank finds his place in the world. The boy in Angela\'s Ashes comes of age.As Malcolm Jones said in his Newsweek review of Angela\'s Ashes, "It is only the best storyteller who can so beguile his readers that he leaves them wanting more when he is done...and McCourt proves himself one of the very best." Frank McCourt\'s \'Tis is one of the most eagerly awaited books of our time, and it is a masterpiece.',
 'This a previously-published edition of ISBN 9780140621334"We agree that we are overworked, and need a rest - A week on the rolling deep? - George suggests the river -"And with the co-operation of several hampers of food and a covered boat, the three men (not forgetting the dog) set out on a hilarious voyage of mishaps up the Thames. When not falling in the river and getting lost in Hampton Court Maze, Jerome K. Jerome finds time to express his ideas on the world around - many of which have acquired a deeper fascination since the day at the end of the 19th century when this excursion was so lightly undertaken.',
 'Kafka on the Shore, a tour de force of metaphysical reality, is powered by two remarkable characters: a teenage boy, Kafka Tamura, who runs away from home either to escape a gruesome oedipal prophecy or to search for his long-missing mother and sister; and an aging simpleton called Nakata, who never recovered from a wartime affliction and now is drawn toward Kafka for reasons that, like the most basic activities of daily life, he cannot fathom. Their odyssey, as mysterious to them as it is to us, is enriched throughout by vivid accomplices and mesmerizing events. Cats and people carry on conversations, a ghostlike pimp employs a Hegel-quoting prostitute, a forest harbors soldiers apparently unaged since World War II, and rainstorms of fish (and worse) fall from the sky. There is a brutal murder, with the identity of both victim and perpetrator a riddle—yet this, along with everything else, is eventually answered, just as the entwined destinies of Kafka and Nakata are gradually revealed, with one escaping his fate entirely and the other given a fresh start on his own.',
 'The Brothers Karamazov is a murder mystery, a courtroom drama, and an exploration of erotic rivalry in a series of triangular love affairs involving the “wicked and sentimental” Fyodor Pavlovich Karamazov and his three sons―the impulsive and sensual Dmitri; the coldly rational Ivan; and the healthy, red-cheeked young novice Alyosha. Through the gripping events of their story, Dostoevsky portrays the whole of Russian life, is social and spiritual striving, in what was both the golden age and a tragic turning point in Russian culture.This award-winning translation by Richard Pevear and Larissa Volokhonsky remains true to the verbal inventiveness of Dostoevsky’s prose, preserving the multiple voices, the humor, and the surprising modernity of the original. It is an achievement worthy of Dostoevsky’s last and greatest novel.',
 "THE all-time classic story, from generation to generation, sold somewhere in the world every 30 seconds! Have you shared it with a child or grandchild in your life? One sunny Sunday, the caterpillar was hatched out of a tiny egg. He was very hungry. On Monday, he ate through one apple; on Tuesday, he ate through three plums--and still he was hungry. When full at last, he made a cocoon around himself and went to sleep, to wake up a few weeks later wonderfully transformed into a butterfly!The brilliantly innovative Eric Carle has dramatized the story of one of Nature's commonest yet loveliest marvels, the metamorphosis of the butterfly. This audiobook will delight as well as instruct the very youngest listener.",
 'From the bestselling author of A Heartbreaking Work of Staggering Genius, What Is the What is the epic novel based on the life of Valentino Achak Deng who, along with thousands of other children —the so-called Lost Boys—was forced to leave his village in Sudan at the age of seven and trek hundreds of miles by foot, pursued by militias, government bombers, and wild animals, crossing the deserts of three countries to find freedom. When he finally is resettled in the United States, he finds a life full of promise, but also heartache and myriad new challenges. Moving, suspenseful, and unexpectedly funny, What Is the What is an astonishing novel that illuminates the lives of millions through one extraordinary man.-back cover',
 'A book that redefines both family and narrative for the twenty-first century. A Heartbreaking Work of Staggering Genius is the moving memoir of a college senior who, in the space of five weeks, loses both of his parents to cancer and inherits his eight-year-old brother. Here is an exhilarating debut that manages to be simultaneously hilarious and wildly inventive as well as a deeply heartfelt story of the love that holds a family together.A Heartbreaking Work of Staggering Genius is an instant classic that will be read for decades to come.',
 'In his first novel, Dave Eggers has written a moving and hilarious tale of two friends who fly around the world trying to give away a lot of money and free themselves from a profound loss. It reminds us once again what an important, necessary talent Dave Eggers is.',
 '"Another""What It Means When a Crowd in a Faraway Nation Takes a Soldier Representing Your Own Nation, Shoots Him, Drags Him from His Vehicle and Then Mutilates Him in the Dust""The Only Meaning of the Oil-Wet Water""On Wanting to Have Three Walls Up Before She Gets Home""Climbing to the Window, Pretending to Dance""She Waits, Seething, Blooming""Quiet""Your Mother and I""Naveed""Notes for a Story of a Man Who Will Not Die Alone""About the Man Who Began Flying After Meeting Her""Up the Mountain Coming Down Slowly""After I Was Thrown in the River and Before I Drowned"From the Trade Paperback edition.',
 'When an infected bolt of cloth carries plague from London to an isolated village, a housemaid named Anna Frith emerges as an unlikely heroine and healer. Through Anna\'s eyes we follow the story of the fateful year of 1666, as she and her fellow villagers confront the spread of disease and superstition. As death reaches into every household and villagers turn from prayers to murderous witch-hunting, Anna must find the strength to confront the disintegration of her community and the lure of illicit love. As she struggles to survive and grow, a year of catastrophe becomes instead annus mirabilis, a "year of wonders."  Inspired by the true story of Eyam, a village in the rugged hill country of England, Year of Wonders is a richly detailed evocation of a singular moment in history. ',
 'Roland and his tet have just returned to the path of the Beam when they discover that they are being followed by a group of inexperienced trackers. The trackers are from the town of Calla Bryn Sturgis, and they desperately need the help of gunslingers. Once every generation, a band of masked riders known as the Wolves gallop out of the dark land of Thunderclap to steal one half of all the twins born in the Callas. When the children are returned, they are roont, or mentally and physically ruined. In less than a month, the Wolves will raid again. In exchange for Roland’s aid, Father Callahan—a priest originally from our world—offers to give Roland a powerful but evil seeing sphere, a sinister globe called Black Thirteen which he has hidden below the floorboards of his church. Not only must Roland and his tet discover a way to defeat the invincible Wolves, but they must also return to New York so that they can save our world’s incarnation of the Dark Tower from the machinations of the evil Sombra Corporation.',
 'In a volume that is penetrating, introspective, incisive, and laugh-out-loud funny, one of the great men of letters of this era—or any era—holds forth on life, art, sex, politics, and the state of America’s soul. Whether he is describing his coming of age in America, his formative war experiences, or his life as an artist, this is Vonnegut doing what he does best: being himself. Whimsically illustrated by the author, A Man Without a Country is intimate, tender, and brimming with the scope of Kurt Vonnegut’s passions.',
 'Alternate cover for this ISBN can be found hereIn Breakfast of Champions, one of Kurt Vonnegut’s most beloved characters, the aging writer Kilgore Trout, finds to his horror that a Midwest car dealer is taking his fiction as truth. What follows is murderously funny satire, as Vonnegut looks at war, sex, racism, success, politics, and pollution in America and reminds us how to see the truth.',
 "Slaughterhouse-Five, an American classic, is one of the world’s great antiwar books. Centering on the infamous World War II firebombing of Dresden, the novel is the result of what Kurt Vonnegut described as a twenty-three-year struggle to write a book about what he had witnessed as an American prisoner of war. It combines historical fiction, science fiction, autobiography, and satire in an account of the life of Billy Pilgrim, a barber’s son turned draftee turned optometrist turned alien abductee. As Vonnegut had, Billy experiences the destruction of Dresden as a POW. Unlike Vonnegut, he experiences time travel, or coming “unstuck in time.” An instant bestseller, Slaughterhouse-Five made Kurt Vonnegut a cult hero in American literature, a reputation that only strengthened over time, despite his being banned and censored by some libraries and schools for content and language. But it was precisely those elements of Vonnegut’s writing—the political edginess, the genre-bending inventiveness, the frank violence, the transgressive wit—that have inspired generations of readers not just to look differently at the world around them but to find the confidence to say something about it.  Fifty years after its initial publication at the height of the Vietnam War, Vonnegut's portrayal of political disillusionment, PTSD, and postwar anxiety feels as relevant, darkly humorous, and profoundly affecting as ever, an enduring beacon through our own era’s uncertainties.",
 "The Sirens of Titan is an outrageous romp through space, time, and morality. The richest, most depraved man on Earth, Malachi Constant, is offered a chance to take a space journey to distant worlds with a beautiful woman at his side. Of course there's a catch to the invitation—and a prophetic vision about the purpose of human life that only Vonnegut has the courage to tell.",
 'Welcome to the Monkey House is a collection of Kurt Vonnegut’s shorter works. Originally printed in publications as diverse as The Magazine of Fantasy and Science Fiction and The Atlantic Monthly, these superb stories share Vonnegut’s audacious sense of humor and extraordinary range of creative vision.Alternative cover edition here ',
 '“[Kurt Vonnegut] has never been more satirically on-target. . . . Nothing is spared.”— PeopleJailbird takes us into a fractured and comic, pure Vonnegut world of high crimes and misdemeanors in government—and in the heart. This wry tale follows bumbling bureaucrat Walter F. Starbuck from Harvard to the Nixon White House to the penitentiary as Watergate’s least known co-conspirator. But the humor turns dark when Vonnegut shines his spotlight on the cold hearts and calculated greed of the mighty, giving a razor-sharp edge to an unforgettable portrait of power and politics in our times.Praise for Jailbird“[Vonnegut] is our strongest writer . . . the most stubbornly imaginative.” —John Irving\xa0“A gem . . . a mature, imaginative novel—possibly the best he has written . . .\xa0 Jailbird \xa0is a guided tour de force of America. Take it!” — Playboy“A profoundly humane comedy . . .\xa0 Jailbird \xa0definitely mounts up on angelic wings—in its speed, in its sparkle, and in its high-flying intent.” — Chicago Tribune Book World\xa0“Joyously inventive . . . gleams with the loony magic Vonnegut alone can achieve.” — Cosmopolitan\xa0“Vonnegut is our great apocalyptic writer, the closest thing we’ve had to a prophet since . . . Lenny Bruce.” — Chicago Sun-Times\xa0“Vonnegut at his impressive best. . . . His imaginative leaps alone . . . are worth the price of admission. . . . His far-reaching metaphysical and cultural concerns . . . are ultimately serious and worth our contemplation.” — The Washington Post',
 "Her name is Dinah. In the Bible, her life is only hinted at in a brief and violent detour within the more familiar chapters of the Book of Genesis that are about her father, Jacob, and his dozen sons. Told in Dinah's voice, this novel reveals the traditions and turmoils of ancient womanhood—the world of the red tent. It begins with the story of her mothers—Leah, Rachel, Zilpah, and Bilhah—the four wives of Jacob. They love Dinah and give her gifts that sustain her through a hard-working youth, a calling to midwifery, and a new home in a foreign land. Dinah's story reaches out from a remarkable period of early history and creates an intimate connection with the past. Deeply affecting, The Red Tent combines rich storytelling with a valuable achievement in modern fiction: a new view of biblical women's society.",
 'Continuum Contemporaries give readers accessible and informative introductions to some of the most popular, most acclaimed, and most influential novels of recent years. A team of contemporary fiction scholars from both sides of the Atlantic has been assembled to provide a through and readable analysis of each of the novels in question. The books in the series all follow the same structure: a biography of the novelist, including other works, influences, and, in some cases, an interview; a full-length study of the novel, drawing out the most important themes and ideas; a summary of how the novel was received upon publication; a summary of how the novel has performed since publication, including film or television adaptations, literary prizes, and so forth; a wide range of suggestions for further reading, including web sites and discussion forums; and a list of questions for reading groups to discuss.',
 "Saturday, February 15, 2003. Henry Perowne is a contented man - a successful neurosurgeon, the devoted husband of Rosalind, and proud father of two grown-up children. Unusually, he wakes before dawn, drawn to the window of his bedroom and filled with a growing unease. As he looks out at the night sky, he is troubled by the state of the world - the impending war against Iraq, a gathering pessimism since 9/11, and a fear that his city and his happy family life are under threat.Later, as Perowne makes his way through London streets filled with hundreds of thousands of anti-war protestors, a minor car accident brings him into a confrontation with Baxter, a fidgety, aggressive young man, on the edge of violence. To Perowne's professional eye, there appears to be something profoundly wrong with him. But it is not until Baxter makes a sudden appearance as the Perowne family gathers for a reunion, that Henry's fears seem about to be realised.",
 'Sequel to the New York Times bestselling Faith of the FallenNew York Times bestselling author Terry Goodkind has created his most lavish adventure yet. Tormented her entire life by inhuman voices, a young woman named Jennsen seeks to end her intolerable agony. She at last discovers a way to silence the voices. For everyone else, the torment is about to begin.With winter descending and the paralyzing dread of an army of annihilation occupying their homeland, Richard Rahl and his wife Kahlan must venture deep into a strange and desolate land. Their quest turns to terror when they find themselves the helpless prey of a tireless hunter.Meanwhile, Jennsen finds herself drawn into the center of a struggle for conquest and revenge. Worse yet, she finds her will seized by forces more abhorrent than anything she ever envisioned. Only then does she come to realize that the voices were real.Staggered by loss and increasingly isolated, Richard and Kahlan must stop the relentless, unearthly threat which has come out of the darkest night of the human soul. To do so, Richard will be called upon to face the demons stalking among the Pillars of Creation.Discover breathtaking adventure and true nobility of spirit. Find out why millions of readers the world over have elevated Terry Goodkind to the ranks of legend.',
 'Ken Follett is known worldwide as the master of split-second suspense, but his most beloved and bestselling book tells the magnificent tale of a twelfth-century monk driven to do the seemingly impossible: build the greatest Gothic cathedral the world has ever known.Everything readers expect from Follett is here: intrigue, fast-paced action, and passionate romance. But what makes The Pillars of the Earth extraordinary is the time the twelfth century; the place feudal England; and the subject the building of a glorious cathedral. Follett has re-created the crude, flamboyant England of the Middle Ages in every detail. The vast forests, the walled towns, the castles, and the monasteries become a familiar landscape. Against this richly imagined and intricately interwoven backdrop, filled with the ravages of war and the rhythms of daily life, the master storyteller draws the reader irresistibly into the intertwined lives of his characters into their dreams, their labors, and their loves: Tom, the master builder; Aliena, the ravishingly beautiful noblewoman; Philip, the prior of Kingsbridge; Jack, the artist in stone; and Ellen, the woman of the forest who casts a terrifying curse. From humble stonemason to imperious monarch, each character is brought vividly to life.The building of the cathedral, with the almost eerie artistry of the unschooled stonemasons, is the center of the drama. Around the site of the construction, Follett weaves a story of betrayal, revenge, and love, which begins with the public hanging of an innocent man and ends with the humiliation of a king.For the TV tie-in edition with the same ISBN go to this Alternate Cover Edition',
 'A man wakes up to find himself lying on the ground in a railway station, his mind stripped bare of all recollection. He has no idea how he got there; he does not even know his own name. Convinced he is a drunken down and out, it isn’t until a newspaper report about a satellite launch catches his eye that he suspects all is not what it seems…The year is 1958, and America is about to launch its first satellite in a desperate attempt to match the Soviet Sputnik and regain the lead in the space race. As Luke Lucas gradually unravels the mystery of his amnesia, he realizes that his fate is bound up with that of the rocket that stands ready on launch pad 26B at Cape Canaveral.And as he relearns the story of his life, he uncovers long-kept secrets about his wife, his best friend and the woman he once loved more than life itself…Code to Zero deals with one of the most ruthlessly contested arenas of the Cold War. Deceit and betrayal, love and trust interweave at the most political and personal levels, while the spectre of mind-control hovers constantly above. Each second brings destruction closer…',
 "His name was Feliks.\xa0 He came to London to commit a murder that would change history.\xa0 A master manipulator, he had many weapons at his command, but against him were ranged the whole of the English police, a brilliant and powerful lord, and the young Winston Churchill himself.\xa0 These odds would have stopped any man in the world-except the man from St. Petersburg...The Man From St Petersburg is a dark tale of family secrets and political consequences. Ken Follett's masterful storytelling brings to life the danger of a world on the brink of war. A Secret Negotiation 1914. Tensions are rising as Europe finds itself caught in a web of alliances and dangerous warmongering. To help tip the balance in their favour, Britain aims to draw Russia into an alliance with them instead of Germany. Czar Nicholas’s nephew, Prince Aleksei, is sent to London for secret naval talks with Lord Walden. A Play for Power Walden has a personal connection to Aleksei; his wife is Aleksei’s aunt. And they are not the only ones interested in the Russian's arrival; so too are Walden’s willful, idealistic daughter, the head of Special Branch, and a ruthless Russian anarchist. A World at War With the British desperately needing a signed treaty and the fate of the world hanging in the balance, the destinies of these individuals become inextricably linked, as tragedy threatens to shatter the Waldens’ complacency . . .",
 "D-Day is approaching. They don’t know where or when, but the Germans know it'll be soon, and for Felicity “Flick” Clairet, the stakes have never been higher. A senior agent in the ranks of the Special Operations Executive (SOE) responsible for sabotage, Flick has survived to become one of Britain’s most effective operatives in Northern France. She knows that the Germans’ ability to thwart the Allied attack depends upon their lines of communications, and in the days before the invasion no target is of greater strategic importance than the largest telephone exchange in Europe.But when Flick and her Resistance-leader husband try a direct, head-on assault that goes horribly wrong, her world turns upside down. Her group destroyed, her husband missing, her superiors unsure of her, her own confidence badly shaken, she has one last chance at the target, but the challenge, once daunting, is now near impossible. The new plan requires an all-woman team, none of them professionals, to be assembled and trained within days. Code-named the Jackdaws, they will attempt to infiltrate the exchange under the noses of the Germans—but the Germans are waiting for them now and have plans of their own. There are secrets Flick does not know—secrets within the German ranks, secrets among her hastily recruited team, secrets among those she trusts the most. And as the hours tick down to the point of no return, most daunting of all, there are secrets within herself. . . .",
 "Librarian's note: An alternate cover edition can be found hereWorld Without End takes place in the same town of Kingsbridge, two centuries after the townspeople finished building the exquisite Gothic cathedral that was at the heart of The Pillars of the Earth. The cathedral and the priory are again at the center of a web of love and hate, greed and pride, ambition and revenge, but this sequel stands on its own. This time the men and women of an extraordinary cast of characters find themselves at a crossroads of new ideas—about medicine, commerce, architecture, and justice. In a world where proponents of the old ways fiercely battle those with progressive minds, the intrigue and tension quickly reach a boiling point against the devastating backdrop of the greatest natural disaster ever to strike the human race—the Black Death.",
 "Four men once close to Jack Dodds, a London butcher, meet to carry out his peculiar last wish: to have his ashes scattered into the sea. For reasons best known to herself, Jack's widow, Amy, declines to join them. On the surface the tale of a simple if increasingly bizarre day's outing, Last Orders is Graham Swift's most poignant exploration of the complexity and courage of ordinary lives.",
 "The bestselling story of Julia's years in France--and the basis for Julie & Julia, starring Meryl Streep and Amy Adams--in her own words. Although she would later singlehandedly create a new approach to American cuisine with her cookbook Mastering the Art of French Cooking and her television show The French Chef, Julia Child was not always a master chef. Indeed, when she first arrived in France in 1948 with her husband, Paul, who was to work for the USIS, she spoke no French and knew nothing about the country itself. But as she dove into French culture, buying food at local markets and taking classes at the Cordon Bleu, her life changed forever with her newfound passion for cooking and teaching. Julia's unforgettable story--struggles with the head of the Cordon Bleu, rejections from publishers to whom she sent her now-famous cookbook, a wonderful, nearly fifty-year long marriage that took the Childs across the globe--unfolds with the spirit so key to Julia's success as a chef and a writer, brilliantly capturing one of America's most endearing personalities.",
 "The seventh and final installment of Stephen King's The Dark Tower saga is perhaps the most anticipated book in the author's long career. King began this epic tale about the last gunslinger in the world more than 20 years ago; now he draws its suspenseful story to a close, snapping together the last pieces of his action puzzle and drawing Roland Deschain ever closer to his ultimate goal.Alternate cover edition for ISBN-10: 1416524525; ISBN-13: 9781416524526",
 'Set in a world of ominous landscape and macabre menace, The Dark Tower features one of Stephen King’s most powerful creations—The Gunslinger, a haunting figure who embodies the qualities of the lone hero through the ages, from ancient myth to frontier Western legend. As Roland crosses a desert of damnation in a macabre world that is a twisted image of our own, he moves ever closer to the Dark Tower of his dreams—and nightmares.',
 'The Wolves have been defeated, but our tet faces yet another catastrophe. Susannah Dean’s body has been usurped by a demon named Mia who wants to use Susannah’s mortal form to bear a demon child. Stealing Black Thirteen, Mia has traveled through the Unfound Door to 1999 New York where she plans to give birth to her chap, a child born of two mothers and two fathers who will grow up to be Roland’s nemesis. With the help of the time-traveling Manni, Roland and Eddie plan to follow Susannah while Father Callahan and Jake will find Calvin Tower, owner of the vacant lot where a magical rose grows: a rose that must be saved at all costs. But despite our ka-tet’s intentions, ka has its own plans. Jake, Callahan, and Jake’s bumbler companion are transported to New York to follow Susannah, while Eddie and Roland are tumbled into East Stoneham, Maine, where they are greeted by Eddie’s old enemy, the gangster Balazar. But it isn’t just bullets that Roland and Eddie must brave. Soon they will meet their maker, in the form of a young author named Stephen King.',
 'While pursuing his quest for the Dark Tower through a world that is a nightmarishly distorted mirror image of our own, Roland, the last gunslinger, encounters three mysterious doorways on the beach. Each one enters into the life of a different person living in contemporary New York. Here he links forces with the defiant young Eddie Dean and the beautiful, brilliant, and brave Odetta Holmes, in a savage struggle against underworld evil and otherworldly enemies.Once again, Stephen King has masterfully interwoven dark, evocative fantasy and icy realism.',
 'Roland, Eddie, Susannah, Jake, and Jake’s pet bumbler survive Blaine the Mono’s final crash, only to find themselves stranded in an alternate version of Topeka, Kansas, one that has been ravaged by the superflu virus. While following the deserted I-70 toward a distant glass palace, they hear the atonal squalling of a thinny, a place where the fabric of existence has almost entirely worn away. While camping near the edge of the thinny, Roland tells his ka-tet a story about another thinny, one that he encountered when he was little more than a boy. Over the course of one long magical night, Roland transports us to the Mid-World of long-ago and a seaside town called Hambry, where Roland fell in love with a girl named Susan Delgado, and where he and his old tet-mates Alain and Cuthbert battled the forces of John Farson, the harrier who—with a little help from a seeing sphere called Maerlyn’s Grapefruit—ignited Mid-World’s final war.',
 "It's Christmas time and Holden Caulfield has just been expelled from yet another school...Fleeing the crooks at Pencey Prep, he pinballs around New York City seeking solace in fleeting encounters—shooting the bull with strangers in dive hotels, wandering alone round Central Park, getting beaten up by pimps and cut down by erstwhile girlfriends. The city is beautiful and terrible, in all its neon loneliness and seedy glamour, its mingled sense of possibility and emptiness. Holden passes through it like a ghost, thinking always of his kid sister Phoebe, the only person who really understands him, and his determination to escape the phonies and find a life of true meaning.The Catcher in the Rye is an all-time classic in coming-of-age literature- an elegy to teenage alienation, capturing the deeply human need for connection and the bewildering sense of loss as we leave childhood behind.\nJ.D. Salinger's\n (1919–2010) classic novel of teenage angst and rebellion was first published in 1951. The novel was included on Time's 2005 list of the 100 best English-language novels written since 1923. It was named by Modern Library and its readers as one of the 100 best English-language novels of the 20th century. It has been frequently challenged in the court for its liberal use of profanity and portrayal of sexuality and in the 1950's and 60's it was the novel that every teenage boy wants to read.",
 '‘Everything everybody does is so—I don’t know—not wrong, or even mean, or even stupid necessarily. But just so tiny and meaningless and—sad-making. And the worst part is, if you go bohemian or something crazy like that, you’re conforming just as much only in a different way.’First published in The New Yorker as two sequential stories, ‘Franny’ and ‘Zooey’ offer a dual portrait of the two youngest members of J. D. Salinger’s fictional Glass family.Franny Glass is a pretty, effervescent college student on a date with her intellectually confident boyfriend, Lane. They appear to be the perfect couple, but as they struggle to communicate with each other about the things they really care about, slowly their true feelings come to the surface. The second story in this book, ‘Zooey’, plunges us into the world of her ethereal, sophisticated family. When Franny’s emotional and spiritual doubts reach new heights, her older brother Zooey, a misanthropic former child genius, offers her consolation and brotherly advice.Written in Salinger’s typically irreverent style, these two stories offer a touching snapshot of the distraught mindset of early adulthood and are full of the insightful emotional observations and witty turns of phrase that have helped make Salinger’s reputation what it is today.',
 'This book contains two separate stories: "Raise High the Roof Beam, Carpenters" is the first, and "Seymour: An Introduction" is the second."Raise High the Roof Beam, Carpenters" is a story about the Glass family, narrated by Buddy, the second oldest brother. Buddy is attending his brother Seymour\'s wedding to a gal named Muriel, but he\'s on Army leave during active duty in World War II. At the wedding, everyone is stunned when Seymour does not show up.The action of the story picks up when several characters end up carpooling together following the failed wedding. The others (the Matron of Honor and her husband, and a couple of stragglers) are talking about Seymour and the disappointment of his not showing up, and Buddy never tells them that he is secretly Seymour\'s brother, so they talk more openly with him than they otherwise would.They criticize Seymour and speculate about his character flaws and deficiencies, but Buddy finds their assessments quite judgmental and biased. He then decides to tell the car who he really is, shaming them for their loose criticisms.He finds Seymour\'s journal, and he discovers a strange message from their sister Boo Boo for Seymour on their bathroom mirror: "Raise high the roof beam, carpenters. Like Ares comes the bridegroom/ taller far than a tall man." This is a fragment from the Greek poet Sappho."Seymour: An Introduction" is a kind of elegy for Seymour from Buddy, told in the form of an introduction to the reader. The reader makes Seymour\'s acquaintance while knowing that Seymour technically isn\'t alive when the story is published, having killed himself in 1948.This portion of the story is told in stream of consciousness, and it discusses Eastern religious mysticism.',
 "As only he can, Aldous Huxley explores the mind's remote frontiers and the unmapped areas of human consciousness. These two astounding essays are among the most profound studies of the effects of mind-expanding drugs written in this century. Contains the complete texts of \nThe Doors of Perception\n and \nHeaven and Hell\n, both of which became essential for the counterculture during the 1960s and influenced a generation's perception of life.",
 'Aldous Huxley\'s profoundly important classic of world literature, Brave New World is a searching vision of an unequal, technologically-advanced future where humans are genetically bred, socially indoctrinated, and pharmaceutically anesthetized to passively uphold an authoritarian ruling order–all at the cost of our freedom, full humanity, and perhaps also our souls. “A genius [who] who spent his life decrying the onward march of the Machine” (The New Yorker), Huxley was a man of incomparable talents: equally an artist, a spiritual seeker, and one of history’s keenest observers of human nature and civilization. Brave New World, his masterpiece, has enthralled and terrified millions of readers, and retains its urgent relevance to this day as both a warning to be heeded as we head into tomorrow and as thought-provoking, satisfying work of literature. Written in the shadow of the rise of fascism during the 1930s, Brave New Worldd likewise speaks to a 21st-century world dominated by mass-entertainment, technology, medicine and pharmaceuticals, the arts of persuasion, and the hidden influence of elites. "Aldous Huxley is the greatest 20th century writer in English." —Chicago Tribune',
 "In Island, his last novel, Huxley transports us to a Pacific island where, for 120 years, an ideal society has flourished. Inevitably, this island of bliss attracts the envy and enmity of the surrounding world. A conspiracy is underway to take over Pala, and events begin to move when an agent of the conspirators, a newspaperman named Faranby, is shipwrecked there. What Faranby doesn't expect is how his time with the people of Pala will revolutionize all his values and—to his amazement—give him hope.",
 'Aldous Huxley\'s lifelong concern with the dichotomy between passion and reason finds its fullest expression both thematically and formally in his masterpiece Point Counter Point. By presenting a vision of life in which diverse aspects of experience are observed simultaneously, Huxley characterizes the symptoms of "the disease of the modern man" in the manner of a composer--themes and characters are repeated, altered slightly, and played off one another in a tone that is at once critical and sympathetic.First published in 1928, Huxley\'s satiric view of intellectual life in the \'20s is populated with characters based on such celebrities as D.H. Lawrence, Katherine Mansfield, Nancy Cunard, and John Middleton Murry, as well as Huxley himself.',
 'A delightfully dishy novel about the all-time most impossible boss in the history of impossible bosses.Andrea Sachs, a small-town girl fresh out of college, lands the job “a million girls would die for.” Hired as the assistant to Miranda Priestly, the high-profile, fabulously successful editor of Runway magazine, Andrea finds herself in an office that shouts Prada! Armani! Versace! at every turn, a world populated by impossibly thin, heart-wrenchingly stylish women and beautiful men clad in fine-ribbed turtlenecks and tight leather pants that show off their lifelong dedication to the gym. With breathtaking ease, Miranda can turn each and every one of these hip sophisticates into a scared, whimpering child.THE DEVIL WEARS PRADA gives a rich and hilarious new meaning to complaints about “The Boss from Hell.” Narrated in Andrea’s smart, refreshingly disarming voice, it traces a deep, dark, devilish view of life at the top only hinted at in gossip columns and over Cosmopolitans at the trendiest cocktail parties. From sending the latest, not-yet-in-stores Harry Potter to Miranda’s children in Paris by private jet, to locating an unnamed antique store where Miranda had at some point admired a vintage dresser, to serving lattes to Miranda at precisely the piping hot temperature she prefers, Andrea is sorely tested each and every day—and often late into the night with orders barked over the phone. She puts up with it all by keeping her eyes on the prize: a recommendation from Miranda that will get Andrea a top job at any magazine of her choosing. As things escalate from the merely unacceptable to the downright outrageous, however, Andrea begins to realize that the job a million girls would die for may just kill her. And even if she survives, she has to decide whether or not the job is worth the price of her soul.',
 'An American classic and great bestseller for over thirty years, A Separate Peace is timeless in its description of adolescence during a period when the entire country was losing its innocence to the second world war.Set at a boys boarding school in New England during the early years of World War II, A Separate Peace is a harrowing and luminous parable of the dark side of adolescence. Gene is a lonely, introverted intellectual. Phineas is a handsome, taunting, daredevil athlete. What happens between the two friends one summer, like the war itself, banishes the innocence of these boys and their world.A bestseller for more than thirty years, A Separate Peace is John Knowles crowning achievement and an undisputed American classic.',
 "For eighteen years, Fran Benedetto kept her secret. And hid her bruises. And stayed with Bobby because she wanted her son to have a father. And because, in spite of everything, she loved him. Then one night, when she saw the look on her ten-year-old son's face, Fran finally made a choice--and ran for both their lives.Now she is starting over in a city far from home, far from Bobby. And in this place she uses a name that isn't hers, and cradles her son in her arms, and tries to forget. For the woman who now calls herself Beth, every day is a chance to heal, to put together the pieces of her shattered self. And every day she waits for Bobby to catch up to her. Because Bobby always said he would never let her go. And despite the flawlessness of her escape, Fran Benedetto is certain of one thing: It is only a matter of time...",
 'After nearly twenty years of living in California, March Murray, along with her fifteen-year-old daughter, Gwen, returns to the sleepy Massachusetts town where she grew up to attend the funeral of Judith Dale, the beloved housekeeper who raised her. Yet returning to her hometown also brings her back to Hollis, March’s former soul mate and lover. March’s father had taken the teenaged Hollis, an abandoned child, and the product of a series of detention homes, into his house as a boarder, and treated him like a son. Yet March and Hollis’s passionate love was hardly a normal sibling relationship. When Hollis left her after a petty fight, March waited for him three long years, wondering what she had done wrong.Encountering Hollis again makes March acutely aware of the choices that she has made, and the choices everyone around her has made—including Mrs. Dale, who knew more of love than March could ever have suspected, and her brother Alan, whose tragic history has left him grief-struck, with alcohol as his only solace. Her attraction to Hollis is overwhelming—and March jeopardizes her marriage, her relationship with her daughter and her own happiness in an attempt to reclaim the past.',
 "Few first novels receive the kind of attention and acclaim showered on this powerful story—a nationwide bestseller, a critical success, and the first title chosen for Oprah's Book Club. Both highly suspenseful and deeply moving, The Deep End of the Ocean imagines every mother's worst nightmare—the disappearance of a child—as it explores a family's struggle to endure, even against extraordinary odds. Filled with compassion, humor, and brilliant observations about the texture of real life, here is a story of rare power, one that will touch readers' hearts and make them celebrate the emotions that make us all one.",
 "The time is 1981, and Sibyl Danforth has been a dedicated midwife in the rural community of Reddington, Vermont, for fifteen years. But one treacherous winter night, in a house isolated by icy roads and failed telephone lines, Sibyl takes desperate measures to save a baby's life. She performs an emergency Caesarean section on its mother, who appears to have died in labor. But what if—as Sibyl's assistant later charges—the patient wasn't already dead, and it was Sibyl who inadvertently killed her?As recounted by Sibyl's precocious fourteen-year-old daughter, Connie, the ensuing trial bears the earmarks of a witch hunt except for the fact that all its participants are acting from the highest motives—and the defendant increasingly appears to be guilty. As Sibyl Danforth faces the antagonism of the law, the hostility of traditional doctors, and the accusations of her own conscience, Midwives engages, moves, and transfixes us as only the very best novels ever do.",
 "A New York Times bestseller and Oprah's Book Club Pick-the unique and deeply moving saga of four generations of African-American women whose journey from slavery to freedom begins on a Creole plantation in Louisiana.Beginning with her great-great-great-great grandmother, a slave owned by a Creole family, Lalita Tademy chronicles four generations of strong, determined black women as they battle injustice to unite their family and forge success on their own terms. They are women whose lives begin in slavery, who weather the Civil War, and who grapple with contradictions of emancipation, Jim Crow, and the pre-Civil Rights South. As she peels back layers of racial and cultural attitudes, Tademy paints a remarkable picture of rural Louisiana and the resilient spirit of one unforgettable family.There is Elisabeth, who bears both a proud legacy and the yoke of bondage... her youngest daughter, Suzette, who is the first to discover the promise-and heartbreak-of freedom... Suzette's strong-willed daughter Philomene, who uses a determination born of tragedy to reunite her family and gain unheard-of economic independence... and Emily, Philomene's spirited daughter, who fights to secure her children's just due and preserve their dignity and future.Meticulously researched and beautifully written, Cane River presents a slice of American history never before seen in such piercing and personal detail.",
 'Talk about unlucky sevens. An hour ago, seventeen-year-old, seven months pregnant Novalee Nation was heading for California with her boyfriend. Now she finds herself stranded at a Wal-Mart in Sequoyah, Oklahoma, with just $7.77 in change. But Novalee is about to discover hidden treasures in this small Southwest town--a group of down-to-earth, deeply caring people willing to help a homeless, jobless girl living secretly in a Wal-Mart. From Bible-thumping blue-haired Sister Thelma Husband to eccentric librarian Forney Hull who loves Novalee more than she loves herself, they are about to take her--and you, too--on a moving, funny, and unforgettable journey to . . . Where the Heart Is.',
 'In the winter of 1919, a young mother named Mathilda Neumann drowns beneath the ice of a rural Wisconsin lake. The shock of her death dramatically changes the lives of her daughter, troubled sister, and husband. . . . Told in the voices of several of the main characters and skipping back and forth in time, the narrative gradually and tantalizingly reveals the dark family secrets and the unsettling discoveries that lead to the truth of what actually happened the night of the drowning. . . .',
 'They are the Pipers of Cape Breton Island — a family steeped in lies and unspoken truths that reach out from the past, forever mindful of the tragic secret that could shatter the family to its foundations. Chronicling five generations of this eccentric clan, Fall on Your Knees follows four remarkable sisters whose lives are filled with driving ambition, inescapable family bonds, and forbidden love. Their experiences will take them from their stormswept homeland, across the battlefields of World War I, to the freedom and independence of Jazz-era New York City.Compellingly written, running the literary gamut from menacingly dark to hilariously funny, this is an epic saga of one family’s trials and triumphs in a world of sin, guilt, and redemption.',
 'Jo Becker has every reason to be content. She has three dynamic daughters, a loving marriage, and a rewarding career. But she feels a sense of unease. Then an old housemate reappears, sending Jo back to a distant past when she lived in a communal house in Cambridge, Massachusetts. Drawn deeper into her memories of that fateful summer in 1968, Jo begins to obsess about the person she once was. As she is pulled farther from her present life, her husband, and her world, Jo struggles against becoming enveloped by her past and its dark secret.',
 'Oprah Book Club® Selection, April 1997: Members of the Church of Fire and Brimstone and God\'s Almighty Baptizing Wind spend their days and nights serving the Lord and waiting for the Rapture--that moment just before the Second Coming of Christ when the saved will be lifted bodily to heaven and the damned will be left behind to face the thousand years of tribulation on earth. The tribulation, according to Grandpa Herman, founder of Fire and Brimstone, will be an ugly time: "He said that we\'d run out of food. That big bugs would chase us around and sting us with their tails . . . He said we\'d turn on the faucet in the bathroom and find only blood running out . . . He said evil multitudes would come unto us and cut off our limbs, and that we wouldn\'t die . . . And then he\'d say, \'But you don\'t have to be left behind. You can go straight to Heaven with all of God\'s special children if you\'ll only open your hearts to Jesus . . .\'"  Such talk of damnation weighs heavy on the mind of Ninah Huff, the 15-year-old narrator of Sheri Reynolds\'s second novel, The Rapture of Canaan. To distract her from sinful thoughts about her prayer partner James, Ninah puts pecan shells in her shoes and nettles in her bed. But concentrating on the Passion of Jesus cannot, in the end, deter Ninah and James from their passion for each other, and the consequences prove both tragic and transforming for the entire community.  The Rapture of Canaan is a book about miracles, and in writing it, Reynolds has performed something of a miracle herself. Although the church\'s beliefs and practices may seem extreme (sleeping in an open grave, mortifying the flesh with barbed wire), its members are complex and profoundly sympathetic as they wrestle with the contradictions of Fire and Brimstone\'s theology, the temptations of the outside world, and the frailties of the human heart.',
 "At the age of twelve, Sophie Caco is sent from her impoverished village of Croix-des-Rosets to New York, to be reunited with a mother she barely remembers. There she discovers secrets that no child should ever know, and a legacy of shame that can be healed only when she returns to Haiti--to the women who first reared her. What ensues is a passionate journey through a landscape charged with the supernatural and scarred by political violence, in a novel that bears witness to the traditions, suffering, and wisdom of an entire people.At an astonishingly young age, Edwidge Danticat has become one of our most celebrated new novelists, a writer who evokes the wonder, terror, and heartache of her native Haiti--and the enduring strength of Haiti's women--with a vibrant imagery and narrative grace that bear witness to her people's suffering and courage.",
 'Winner of the 1989 PEN/Hemingway Foundation Award for best first novel, this exquisite book confronts real-life issues of alienation and violence\xa0\xa0from which the author creates a stunning testament\xa0\xa0to the human capacity for mercy, compassion and love.',
 "In this superb novel by the beloved author of Talk Before Sleep, The Pull of the Moon, and Until the Real Thing Comes Along, a woman re-creates her life after divorce by opening up her house and her heart.Samantha's husband has left her, and after a spree of overcharging at Tiffany's, she settles down to reconstruct a life for herself and her eleven-year-old son. Her eccentric mother tries to help by fixing her up with dates, but a more pressing problem is money. To meet her mortgage payments, Sam decides to take in boarders. The first is an older woman who offers sage advice and sorely needed comfort; the second, a maladjusted student, is not quite so helpful. A new friend, King, an untraditional man, suggests that Samantha get out, get going, get work. But her real work is this: In order to emerge from grief and the past, she has to learn how to make her own happiness. In order to really see people, she has to look within her heart. And in order to know who she is, she has to remember--and reclaim--the person she used to be, long before she became someone else in an effort to save her marriage. Open House is a love story about what can blossom between a man and a woman, and within a woman herself.",
 "A pilot's wife is taught to be prepared for the late-night knock at the door. But when Kathryn Lyons receives word that a plane flown by her husband, Jack, has exploded near the coast of Ireland, she confronts the unfathomable-one startling revelation at a time. Soon drawn into a maelstrom of publicity fueled by rumors that Jack led a secret life, Kathryn sets out to learn who her husband really was, whatever that knowledge might cost. Her search propels this taut, impassioned novel as it movingly explores the question, How well can we ever really know another person?",
 'With each new book, Maeve Binchy continues a remarkable progression of sales and audience growth, reaching fans of all ages and backgrounds with her matchless wit, warmth, and sheer storytelling magic. "Tara Road," her first full-length novel since "The Glass Lake," again shows her incomparable understanding of the human heart in the tale of two women, one from Ireland, one from America, who switch lives, and in doing so learn much about each other, as well as much about themselves. Ria lived on Tara Road in Dublin with her dashing husband, Danny, and their two children. She fully believed she was happily married, right up until the day Danny told her he was leaving her to be with his young, pregnant girlfriend. By a chance phone call, Ria meets Marilyn, a woman from New England unable to come to terms with her only son\'s death and now separated from her husband. The two women exchange houses for the summer with extraordinary consequences, each learning that the other has a deep secret that can never be revealed.Drawn into lifestyles vastly differing from their own, at first each resents the news of how well the other is getting on. Ria seems to have become quite a hostess, entertaining half the neighborhood, which at first irritates the reserved and withdrawn Marilyn, a woman who has always guarded her privacy. Marilyn seems to have become bosom friends with Ria\'s children, as well as with Colm, a handsome restaurateur, whom Ria has begun to miss terribly. At the end of the summer, the women at last meet face-to-face. Having learned a great deal, about themselves and about each other, they find that they have become, firmly and forever, good friends.A moving story rendered with the deft touch of a master artisan, "Tara Road" is Maeve Binchy at her very best — utterly beautiful, hauntingly unforgettable, entirely original, and wholly enjoyable.',
 "A Lesson Before Dying is set in a small Cajun community in the late 1940s. Jefferson, a young black man, is an unwitting party to a liquor store shoot out in which three men are killed; the only survivor, he is convicted of murder and sentenced to death. Grant Wiggins, who left his hometown for the university, has returned to the plantation school to teach. As he struggles with his decision whether to stay or escape to another state, his aunt and Jefferson's godmother persuade him to visit Jefferson in his cell and impart his learning and his pride to Jefferson before his death. In the end, the two men forge a bond as they both come to understand the simple heroism of resisting and defying the expected. Ernest J. Gaines brings to this novel the same rich sense of place, the same deep understanding of the human psyche, and the\xa0same compassion for a people and their struggle that have informed his previous, highly praised works of fiction.",
 '"They shoot the white girl first. With the rest they can take their time." So begins this visionary work from a storyteller. Toni Morrison\'s first novel since she was awarded the Nobel Prize for Literature, Paradise opens with a horrifying scene of mass violence and chronicles its genesis in an all-black small town in rural Oklahoma. Founded by the descendants of freed slaves and survivors in exodus from a hostile world, the patriarchal community of Ruby is built on righteousness, rigidly enforced moral law, and fear. But seventeen miles away, another group of exiles has gathered in a promised land of their own. And it is upon these women in flight from death and despair that nine male citizens of Ruby will lay their pain, their terror, and their murderous rage.In prose that soars with the rhythms, grandeur, and tragic arc of an epic poem, Toni Morrison challenges our most fiercely held beliefs as she weaves folklore and history, memory and myth into an unforgettable meditation of race, religion, gender, and a far-off past that is ever present.',
 "In this extraordinary coming-of-age odyssey, Wally Lamb invites us to hitch a wild ride on a journey of love, pain, and renewal with the most heartbreakingly comical heroine to come along in years.Meet Dolores Price. She's 13, wise-mouthed but wounded, having bid her childhood goodbye. Stranded in front of her bedroom TV, she spends the next few years nourishing herself with the Mallomars, potato chips, and Pepsi her anxious mother supplies. When she finally orbits into young womanhood at 257 pounds, Dolores is no stronger and life is no kinder. But this time she's determined to rise to the occasion and give herself one more chance before she really goes under.",
 "The Mulvaneys of High Point Farm in Mt. Ephraim, New York, are a large and fortunate clan, blessed with good looks, abundant charisma, and boundless promise. But over the twenty-five year span of this ambitious novel, the Mulvaneys will slide, almost imperceptibly at first, from the pinnacle of happiness, transformed by the vagaries of fate into a scattered collection of lost and lonely souls.It is the youngest son, Judd, now an adult, who attempts to piece together the fragments of the Mulvaneys' former glory, seeking to uncover and understand the secret violation that occasioned the family's tragic downfall. Each of the Mulvaneys endures some form of exile- physical or spiritual - but in the end they find a way to bridge the chasms that have opened up among them, reuniting in the spirit of love and healing.",
 'With a compassionate realism and narrative sweep that recall the work of Charles Dickens, this magnificent novel captures all the cruelty and corruption, dignity and heroism, of India. The time is 1975. The place is an unnamed city by the sea. The government has just declared a State of Emergency, in whose upheavals four strangers--a spirited widow, a young student uprooted from his idyllic hill station, and two tailors who have fled the caste violence of their native village--will be thrust together, forced to share one cramped apartment and an uncertain future. As the characters move from distrust to friendship and from friendship to love, A Fine Balance creates an enduring panorama of the human spirit in an inhuman state.',
 'Ronald Reagan: How and Ordinary Man Became an Extraordinary Leader292 pp.\xa0In this enlightening new look at one of our most successful, most popular, and least understood presidents, bestselling author and former Reagan aide Dinesh D\'Souza shows how this "ordinary" man was able to transform the political landscape in a way that made a permanent impact on America and the world.\xa0Ronald Reagan\xa0is a thoughtful and honest assessment of how this underestimated president became a truly extraordinary leader.',
 "The classic novel of despair, forbidden emotions, and sexual undercurrents set against the austere New England countrysideEthan Frome works his unproductive farm and struggles to maintain a bearable existence with his difficult, suspicious and hypochondriac wife, Zeena. But when Zeena's vivacious cousin enters their household as a hired girl, Ethan finds himself obsessed with her and with the possibilities for happiness she comes to represent.In one of American fiction's finest and most intense narratives, Edith Wharton moves this ill-starred trio toward their tragic destinies. Different in both tone and theme from Wharton's other works, Ethan Frome has become perhaps her most enduring and most widely read book.",
 "In print since 1948, this is a single-volume collection of Oscar Wilde's texts. It contains his only novel, The Portrait of Dorian Gray as well as his plays, stories, poems, essays and letters. Illustrated with many photographs, the book includes introductions to each section by Wilde's grandon, Merlin Holoand, Owen Dudley Edwards, Declan Kibertd and Terence Brown. A comprehensive bibliography of works by and about Oscar Wilde together with a chronological table of his life and work are also included.",
 '"An Ideal Husband is an 1895 stage play by Oscar Wilde that revolves around blackmail and political corruption, and touches on the themes of public and private honour. The action is set in London, in the present, and takes place over the course of twenty four hours.Sooner or later, Wilde notes, we shall all have to pay for what we do. But he adds that, No one should be entirely judged by their past.Together with The Importance of Being Earnest, it is often considered Wilde\'s dramatic masterpiece. After Earnest, it is his most popularly produced play"',
 "Oscar Wilde’s only novel is the dreamlike story of a young man who sells his soul for eternal youth and beauty.In this celebrated work Wilde forged a devastating portrait of the effects of evil and debauchery on a young aesthete in late-19th-century England. Combining elements of the Gothic horror novel and decadent French fiction, the book centers on a striking premise: As Dorian Gray sinks into a life of crime and gross sensuality, his body retains perfect youth and vigor while his recently painted portrait grows day by day into a hideous record of evil, which he must keep hidden from the world. For over a century, this mesmerizing tale of horror and suspense has enjoyed wide popularity. It ranks as one of Wilde's most important creations and among the classic achievements of its kind.",
 "A quest across America, from the northernmost tip of Maine to California’s Monterey PeninsulaTo hear the speech of the real America, to smell the grass and the trees, to see the colors and the light—these were John Steinbeck's goals as he set out, at the age of fifty-eight, to rediscover the country he had been writing about for so many years.With Charley, his French poodle, Steinbeck drives the interstates and the country roads, dines with truckers, encounters bears at Yellowstone and old friends in San Francisco. Along the way he reflects on the American character, racial hostility, the particular form of American loneliness he finds almost everywhere, and the unexpected kindness of strangers.",
 'Like his father and grandfather before him, Kino is a poor diver, gathering pearls from the gulf beds that once brought great wealth to the kings of Spain and now provide Kino, Juana, and their infant son with meager subsistence. Then, on a day like any other, Kino emerges from the sea with a pearl as large as a sea gull’s egg, as “perfect as the moon.” With the pearl comes hope, the promise of comfort and of security…A story of classic simplicity, based on a Mexican folk tale, The Pearl explores the secrets of man’s nature, greed, the darkest depths of evil, and the luminous possibilities of love.',
 "Presenting by popular demand one of the most anticipated collections! The legendary artist Carl Barks created Scrooge McDuck and chronicled many of his most popular adventures. In addition to superb storytelling and wonderful entertainment, he left behind a character who was not only rich in his stories, but one for whom the stories themselves were rich. Modern master Don Rosa, beginning in 1994, undertook the task of recounting Uncle Scrooge's past in a serialized epic. The wonderful result of his efforts is now collected in trade paperback form by Gemstone Publishing as THE LIFE & TIMES OF SCROOGE McDUCK.A collection of the celebrated 12-part Eisner Award-winning series that details the life of the young Uncle Scrooge. The story was originally serialized in the United States in Uncle Scrooge comics. Now it has been collected in one all-encompassing popularly-priced volume.",
 '\'If I had my way, every idiot who goes around with Merry Christmas on his lips, would be boiled with his own pudding, and buried with a stake of holly through his heart. Merry Christmas? Bah humbug!\'Introduction and Afterword by Joe WheelerTo bitter, miserly Ebenezer Scrooge, Christmas is just another day. But all that changes when the ghost of his long-dead business partner appears, warning Scrooge to change his ways before it\'s too late. Part of the Focus on the Family Great Stories collection, this abridged edition features an in-depth introduction and discussion questions by Joe Wheeler to provide greater understanding for today\'s reader. "A Christmas Carol" captures the heart of the holidays like no other novel.',
 '"My satire is against those who see figures and averages, and nothing else," proclaimed Charles Dickens in explaining the theme of this classic novel. Published in 1854, the story concerns one Thomas Gradgrind, a "fanatic of the demonstrable fact," who raises his children, Tom and Louisa, in a stifling and arid atmosphere of grim practicality.Without a moral compass to guide them, the children sink into lives of desperation and despair, played out against the grim background of Coketown, a wretched community shadowed by an industrial behemoth. Louisa falls into a loveless marriage with Josiah Bouderby, a vulgar banker, while the unscrupulous Tom, totally lacking in principle, becomes a thief who frames an innocent man for his crime. Witnessing the degradation and downfall of his children, Gradgrind realizes that his own misguided principles have ruined their lives.Considered Dickens\' harshest indictment of mid-19th-century industrial practices and their dehumanizing effects, this novel offers a fascinating tapestry of Victorian life, filled with the richness of detail, brilliant characterization, and passionate social concern that typify the novelist\'s finest creations.Of Dickens\' work, the eminent Victorian critic John Ruskin had this to say: "He is entirely right in his main drift and purpose in every book he has written; and all of them, but especially Hard Times, should be studied with close and earnest care by persons interested in social questions."',
 "John Grisham's first work of non-fiction, an exploration of small town justice gone terribly awry, in his most extraordinary legal thriller yet.In the major league draft of 1971, the first player chosen from the State of Oklahoma was Ron Williamson. When he signed with the Oakland A's, he said goodbye to his hometown of Ada and left to pursue his dreams of big league glory.Six years later he was back, his dreams broken by a bad arm and bad habits - drinking, drugs and women. He began to show signs of mental illness. Unable to keep a job, he moved in with his mother and slept 20 hours a day on her sofa.In 1982, a 21-year=old cocktail waitress in Ada named Debra Sue Carter was raped and murdered, and for five years the police could not solve the crime. For reasons that were never clear, they suspected Ron Williamson and his friend Dennis Fritz. The two were finally arrested in 1987 and charged with capital murder.With no physical evidence, the prosecution's case was built on junk science and the testimony of jailhouse snitches and convicts. Dennis Fritz was found guilty and given a life sentence. Ron Williamson was sent to Death Row.If you believe that in America you are innocent until proven guilty, this book will shock you. If you believe in the death penalty this book will disturb you. I you believe the criminal justice system is fair, this book will infuriate you.",
 "In 1970, one of Mississippi s more colorful weekly newspapers, The Ford County Times, went bankrupt. To the surprise and dismay of many, ownership was assumed by a 23-year-old college dropout, named Willie Traynor. The future of the paper looked grim until a young mother was brutally raped and murdered by a member of the notorious Padgitt family. Willie Traynor reported all the gruesome details, and his newspaper began to prosper.The murderer, Danny Padgitt, was tried before a packed courthouse in Clanton, Mississippi. The trial came to a startling and dramatic end when the defendant threatened revenge against the jurors if they convicted him. Nevertheless, they found him guilty, and he was sentenced to life in prison. But in Mississippi in 1970, life didn't necessarily mean life, and nine years later Danny Padgitt managed to get himself paroled. He returned to Ford County, and the retribution began.",
 "High school All-American Neely Crenshaw was probably the best quarterback ever to play for the legendary Messina Spartans. Fifteen years have gone by since those glory days, and Neely has come home to Messina to bury Coach Eddie Rake, the man who molded the Spartans into an unbeatable football dynasty.As Coach Rake's 'boys' sit in the bleachers waiting for the dimming field lights to signal his passing, they replay the old glories, and try to decide once and for all whether they love Eddie Rake – or hate him. For Neely Crenshaw, still struggling to come to terms with his explosive relationship with the Coach, his dreams of a great career in the NFL, and the choices he made as a young man, the stakes could not be higher.",
 'In a plush Virginia office, a rich, angry old man is furiously rewriting his will. With his death just hours away, Troy Phelan wants to send a message to his children, his ex-wives, and his minions—a message that will touch off a vicious legal battle and transform dozens of lives. Because Troy Phelan’s new will names a sole surprise heir to his eleven-billion-dollar fortune: a mysterious woman named Rachel Lane, a missionary living deep in the jungles of Brazil.Enter the lawyers. Nate O’Riley is fresh out of rehab, a disgraced corporate attorney handpicked for his last job: to find Rachel Lane at any cost. As Phelan’s family circles like vultures in D.C., Nate goes crashing through the Brazilian jungle, entering a world where money means nothing, where death is just one misstep away, and where a woman—pursued by enemies and friends alike—holds a stunning surprise of her own.',
 'InThe Rainmaker, John Grisham tells the story of a young man barely out of law school who finds himself taking on one of the most powerful, corrupt, and ruthless companies in America -- and exposing a complex, multibillion-dollar insurance scam. In his final semester of law school Rudy Baylor is required to provide free legal advice to a group of senior citizens, and it is there that he meets his first "clients," Dot and Buddy Black. Their son, Donny Ray, is dying of leukemia, and their insurance company has flatly refused to pay for his medical treatments. While Rudy is at first skeptical, he soon realizes that the Blacks really have been shockingly mistreated by the huge company, and that he just may have stumbled upon one of the largest insurance frauds anyone\'s ever seen -- and one of the most lucrative and important cases in the history of civil litigation. The problem is, Rudy\'s flat broke, has no job, hasn\'t even passed the bar, and is about to go head-to-head with one of the best defense attorneys -- and powerful industries -- in America.',
 "A man will do almost anything for ninety million dollars. So will its rightful owners. They found him in a small town in Brazil. He had a new name, Danilo Silva, and his appearance had been changed by plastic surgery. The search had taken four years. They'd chased him around the world, always just missing him. It had cost their clients $3.5 million. But so far none of them had complained.The man they were about to kidnap had not always been called Danilo Silva. Before he had had another life, a life which ended in a car crash in February 1992. His gravestone lay in a cemetery in Biloxi, Mississippi. His name before his death was Patrick S. Lanigan. He had been a partner at an up-and-coming law firm. He had a pretty wife, a young daughter, and a bright future. Six weeks after his death, $90 million disappeared from the law firm. It was then that his partners knew he was still alive. And the chase was on",
 "Michael was in a hurry. He was scrambling up the ladder at Drake & Sweeney, a giant D.C. law firm with eight hundred lawyers. The money was good and getting better; a partnership was three years away. He was a rising star with no time to waste, no time to stop, no time to toss a few coins into the cups of panhandlers. No time for a conscience.But a violent encounter with a homeless man stopped him cold. Michael survived; his assailant did not. Who was this man? Michael did some digging, and learned that he was a mentally ill veteran who'd been in and out of shelters for many years. Then Michael dug a little deeper, and found a dirty secret, and the secret involved Drake & Sweeney.The fast track derailed; the ladder collapsed. Michael bolted the firm and took a top-secret file with him. He landed in the streets, an advocate for the homeless, a street lawyer.And a thief.",
 "Ray Atlee is a professor of law at the University of Virginia. He's forty-three, newly single, and still enduring the aftershocks of a surprise divorce. He has a younger brother, Forrest, who redefines the notion of a family's black sheep.And he has a father, a very sick old man who lives alone in the ancestral home in Clanton, Mississippi. He is known to all as Judge Atlee, a beloved and powerful official who has towered over local law and politics for forty years. No longer on the bench, the Judge has withdrawn to the Atlee mansion and become a recluse.With the end in sight, Judge Atlee issues a summons for both sons to return home to Clanton, to discuss the details of his estate. It is typed by the Judge himself, on his handsome old stationery, and gives the date and time for Ray and Forrest to appear in his study.Ray reluctantly heads south, to his hometown, to the place where he grew up, which he prefers now to avoid. But the family meeting does not take place. The Judge dies too soon, and in doing so leaves behind a shocking secret known only to Ray.And perhaps someone else.",
 'They call themselves the Brethren: three disgraced former judges doing time in a Florida federal prison. One was sent up for tax evasion. Another, for skimming bingo profits. The third for a career-ending drunken joyride.Meeting daily in the prison law library, taking exercise walks in their boxer shorts, these judges-turned-felons can reminisce about old court cases, dispense a little jailhouse justice, and contemplate where their lives went wrong. Or they can use their time in prison to get very rich—very fast. ...',
 "In the corridors of Chicago's top law firm: Twenty -six-year-old Adam Hall stands on the brink of a brilliant legal career. Now he is risking it all for a death-row killer and an impossible case.Maximum Security Unit, Mississippi State Prison: Sam Cayhall is a former Klansman and unrepentant racist now facing the death penalty for a fatal bombing in 1967. He has run out of chances -- except for one: the young, liberal Chicago lawyer who just happens to be his grandson.While the executioners prepare the gas chamber, while the protesters gather and the TV cameras wait, Adam has only days, hours, minutes to save his client. For between the two men is a chasm of shame, family lies, and secrets -- including the one secret that could save Sam Cayhall's life... or cost Adam his.--back cover",
 "The office of the public defender is not known as a training ground for bright young litigators. Clay Carter has been there too long and, like most of his colleagues, dreams of a better job in a real firm. When he reluctantly takes the case of a young man charged with a random street killing, he assumes it is just another of the many senseless murders that hit D.C. every week.As he digs into the background of his client, Clay stumbles on a conspiracy too horrible to believe. He suddenly finds himself in the middle of a complex case against one of the largest pharmaceutical companies in the world, looking at the kind of enormous settlement that would totally change his life--that would make him, almost overnight, the legal profession's newest king of torts...'From the Hardcover edition'",
 "Imagine a year without Christmas. No crowded shops, no corny office parties, no fruitcakes, no unwanted presents. That's just what Luther and Nora Krank have in mind when they decide that, just this once, they'll skip the holiday altogether. Theirs will be the only house on the street without a rooftop Frosty the snowman; they won't be hosting their annual Christmas Eve bash; they aren't even going to have a tree. They won't need one, because come December 25 they're setting sail on a Caribbean cruise. But, as this weary couple is about to discover, skipping Christmas brings enormous consequences - and isn't half as easy as they'd imagined.A classic tale for modern times, Skipping Christmas offers a hilarious look at the chaos and frenzy that has become part of our holiday tradition.",
 "\nAdaptation for younger readers.\nMitch McDeere is a young, intelligent and ambitious lawyer. When he gets a job with a top tax law firm in Memphis, he is delighted. But he quickly becomes suspicious after mysterious deaths, obsessive office security, and the Chicago mob figure into its operations. The situation only escalates when Mitch discovers that the firm is listening in on his phone calls and that the FBI want to speak to him. Money and power has a price — and it could be Mitch's life.\nAdaptation Notes\nThis adaptation is a simplified text designed in association with world famous educational publishers, to provide a step-by-step approach to the joys of reading for pleasure. The series include original stories, contemporary titles based on today's best-selling media hits, and easily accessible versions of the literary classics from around the world. Each book has an introduction and extensive activity material. They are published at different levels for readers of all skill levels.Series Editors: Andy Hopkins and Jocelyn Potter\nBook Details:\n- Difficulty: Level 5 - Upper Intermediate (2300 words)- Category: Contemporary- Dialect: British English",
 'In a weedy clearing on the outskirts of Memphis, two\xa0boys watch a shiny Lincoln pull up to the\xa0curb...Eleven-year-old Mark Sway and his younger brother\xa0were sharing a forbidden cigarette when a chance\xa0encounter with a suicidal lawyer left Mark knowing\xa0a bloody and explosive secret: the whereabouts of\xa0the most sought-after dead body in America. Now Mark is caught\xa0between a legal system gone mad and a mob killer\xa0desperate to cover up his crime. And his only ally is\xa0a woman named Reggie Love, who has been a lawyer\xa0for all of four years. Prosecutors are\xa0willing to break all the rules to make Mark talk. The\xa0mob will stop at nothing to keep him quiet. And\xa0Reggie will do anything to protect her client --even take a last, desperate gamble that could win\xa0Mark his freedom... or cost them both their\xa0lives.',
 '"The hill people and the Mexicans arrived on the same day. It was a Wednesday, early in September 1952. The Cardinals were five games behind the Dodgers with three weeks to go, and the season looked hopeless. The cotton, however, was waist-high to my father, over my head, and he and my grandfather could be heard before supper whispering words that were seldom heard. It could be a "good crop."Thus begins the new novel from John Grisham, a story inspired by his own childhood in rural Arkansas. The narrator is a farm boy named Luke Chandler, age seven, who lives in the cotton fields with his parents and grandparents in a little house that\'s never been painted. The Chandlers farm eighty acres that they rent, not own, and when the cotton is ready they hire a truckload of Mexicans and a family from the Ozarks to help harvest it.For six weeks they pick cotton, battling the heat, the rain, the fatigue, and sometimes each other. As the weeks pass Luke sees and hears things no seven-year-old could possibly be prepared for, and he finds himself keeping secrets that not only threaten the crop but will change the lives of the Chandlers forever. ©2000, 2001 Belfry Holdings, Inc. (P)2001 Random House, Inc. Bantam Doubleday Dell Audio Publishing, a Division of Random House, Inc.',
 "An alternate cover edition can be found here.From the author of Outlander... a magnificent epic that once again sweeps us back in time to the drama and passion of 18th-century Scotland...For twenty years Claire Randall has kept her secrets. But now she is returning with her grown daughter to Scotland's majestic mist-shrouded hills. Here Claire plans to reveal a truth as stunning as the events that gave it birth: about the mystery of an ancient circle of standing stones ...about a love that transcends the boundaries of time ...and about James Fraser, a Scottish warrior whose gallantry once drew a young Claire from the security of her century to the dangers of his ....Now a legacy of blood and desire will test her beautiful copper-haired daughter, Brianna, as Claire's spellbinding journey of self-discovery continues in the intrigue-ridden Paris court of Charles Stuart ...in a race to thwart a doomed Highlands uprising ...and in a desperate fight to save both the child and the man she loves....",
 "Alternate cover edition can be found  here Roger Zelazny's chronicles of Amber have earned their place as all-time classics of imaginative literature. Now, here are all ten novels, together in one magnificent omnibus volume. Witness the titanic battle for supremacy waged on Earth, in the Courts of Chaos, and on a magical world of mystery, adventure and romance.--back cover",
 'Abandoned pregnant and penniless on the teeming streets of London, 16-year-old Amber St. Clare manages, by using her wits, beauty, and courage, to climb to the highest position a woman could achieve in Restoration England—that of favorite mistress of the Merry Monarch, Charles II. From whores and highwaymen to courtiers and noblemen, from events such as the Great Plague and the Fire of London to the intimate passions of ordinary—and extraordinary—men and women, Amber experiences it all. But throughout her trials and escapades, she remains, in her heart, true to the one man she really loves, the one man she can never have. Frequently compared to Gone with the Wind, Forever Amber is the other great historical romance, outselling every other American novel of the 1940s—despite being banned in Boston for its sheer sexiness. A book to read and reread, this edition brings back to print an unforgettable romance and a timeless masterpiece.',
 'The Amber Room is one of the greatest treasures ever made by man: an entire room forged of exquisite amber, from its four massive walls to its finely crafted furniture. But it is also the subject of one of history\'s most intriguing mysteries. Originally commissioned in 1701 by Frederick I of Prussia, the Room was later perfected Tsarskoe Selo, the Russian imperial city. In 1941, German troops invaded the Soviet Union, looting everything in their wake and seizing the Amber Room. When the Allies began the bombing of Germany in August 1944, the Room was hidden. And despite the best efforts of treasure hunters and art collectors from around the world, it has never been seen again." Now, two powerful men have set their best operatives loose in pursuit, and the hunt has begun once more. . . . Life is good for Atlanta judge Rachel Cutler. She loves her job, loves her kids, and remains civil to her ex-husband, Paul. But everything changes when her father, a man who survived the horrors of World War II, dies under strange circumstances--and leaves behind clues to a secret he kept his entire life . . . a secret about something called the Amber Room. Desperate to know the truth about her father\'s suspicious dealings, Rachel takes off for Germany, with Paul close behind. Shortly after arriving, they find themselves involved with a cast of shadowy characters who all claim to share their quest. But as they learn more about the history of the treasure they seek, Rachel and Paul realize they\'re in way over their heads. Locked in a treacherous game with ruthless professional killers and embroiled in a treasure hunt of epic proportions, Rachel and Paul suddenly find themselves on a collisioncourse with the forces of power, evil, and history itself. A brilliant adventure and a scintillating tale of intrigue, deception, art, and murder, "The Amber Room" is a classic tale of suspense--and the debut of a strong new voice in the world of the international thriller. "From the Hardcover edition.',
 "“This will be a fight against overwhelming odds from which survival cannot be expected. We will do what damage we can.”With these words, Lieutenant Commander Robert W. Copeland addressed the crew of the destroyer escort USS Samuel B. Roberts on the morning of October 25, 1944, off the Philippine Island of Samar. On the horizon loomed the mightiest ships of the Japanese navy, a massive fleet that represented the last hope of a staggering empire. All that stood between it and Douglas MacArthur’ s vulnerable invasion force were the Roberts and the other small ships of a tiny American flotilla poised to charge into history.In the tradition of the #1 New York Times bestseller Flags of Our Fathers, James D. Hornfischer paints an unprecedented portrait of the Battle of Samar, a naval engagement unlike any other in U.S. history—and captures with unforgettable intensity the men, the strategies, and the sacrifices that turned certain defeat into a legendary victory.Praise for The Last Stand of the Tin Can Sailors“One of the finest WWII naval action narratives in recent years, this book follows in the footsteps of\xa0 Flags of Our Fathers . . . . Exalting American sailors and pilots as they richly deserve. . . . Reads like a very good action novel.” — Publishers Weekly“Reads as fresh as tomorrow's headlines. . . . Hornfischer's captivating narrative uses previously classified documents to reconstruct the epic battle and eyewitness accounts to bring the officers and sailors to life.” — Texas Monthly“Hornfischer is a powerful stylist whose explanations are clear as well as memorable. . . . A dire survival-at-sea saga.” — Denver Post“In\xa0 The Last Stand of the Tin Can Sailors, \xa0James Hornfischer drops you right into the middle of this raging battle, with 5-inch guns blazing, torpedoes detonating and Navy fliers dive-bombing. . . . The overall story of the battle is one of American guts, glory and heroic sacrifice.” — Omaha World Herald",
 "Also contains: One For the Road, Jerusalem's Lot. For standalone novel see ISBN  9780450031069.Stephen King's second novel, the classic vampire bestseller 'Salem's Lot, tells the story of evil in small-town America. For the first time in a major trade edition, this terrifying novel is accompanied by previously unpublished material from King's archive, two short stories, and eerie photographs that bring King's fictional darkness and evil to vivid life.When Stephen King’s classic thriller 'Salem's Lot hit the stands in 1975, it thrilled and terrified millions of readers with tales of demonic evil in small-town America. Now, thirty years later and still scaring readers witless, 'Salem's Lot reemerges in a brilliant new edition, complete with photographs, fifty pages of deleted and alternate scenes, and two short stories related to the events of the novel.While the original edition of 'Salem's Lot will forever be a premier horror classic, 'Salem's Lot: Illustrated Edition, with the inclusion of material from King’s archive, is destined to become a classic in its own right and a must-have for all Stephen King fans. In this edition, the hair-raising story of Jerusalem’s Lot, a small town in Maine whose inhabitants succumb to the evil allure of a new resident, is told as the author envisioned it, complete with fifty pages of alternate and deleted scenes. With a new introduction by the author, two short stories related to the events and residents of Jerusalem’s Lot, the lavishly creepy photographs of Jerry Uelsmann, and a stunning new page design, this edition brings the story to life in words and pictures as never before.No library will be complete without this ideal collector’s item for any King aficionado, the definitive illustrated edition of the great 'Salem's Lot.",
 'Librarian\'s note: An alternate cover edition can be found hereNavigating between the Indian traditions they\'ve inherited and the baffling new world, the characters in Jhumpa Lahiri\'s elegant, touching stories seek love beyond the barriers of culture and generations. In "A Temporary Matter," published in The New Yorker, a young Indian-American couple faces the heartbreak of a stillborn birth while their Boston neighborhood copes with a nightly blackout. In the title story, an interpreter guides an American family through the India of their ancestors and hears an astonishing confession. Lahiri writes with deft cultural insight reminiscent of Anita Desai and a nuanced depth that recalls Mavis Gallant.',
 'The third novel\xa0in the wildly popular #1\xa0 New York Times\xa0 bestselling Sisterhood of the Traveling Pants series,\xa0from the author of\xa0 The Whole Thing Together\xa0 and\xa0 The Here and Now.It’s the summer before the sisterhood departs for college . . . their last real summer together before they head off to start their grown-up lives. It’s the time when Lena, Tibby, Bridget, and Carmen need their Pants the most.Pants = love. Love your pals. Love yourself.“A fun and poignant coming-of-age story." — Entertainment Weekly\xa0“Readers of the other books won’t be disappointed.” — Booklist,\xa0 Starred“A treat for anyone.” — Los Angeles Times“These are friends worth having.” — Chicago Tribune',
 "With unraveled embroidery and fraying hems, the Traveling Pants are back for one last, glorious summer. Immerses herself in her painting and an intoxicating summer fling, fearing that the moment she forgets about Kostos will be the moment she sees him again. Falls under the spell of a sophisticated college friend for whom a theatrical role means everything and the heritage of the Pants means nothing. Joins a dig for an ancient city on the coast of Turkey and discovers that her archaeology professor is available in every way except one. Leaves behind someone she loves, wrongly believing he will stay where she has left him.Join Ann Brashares's beloved sisterhood once again in a dazzling, fearless novel. It's a summer that will forever change the lives of Lena, Carmen, Bee, and Tibby, here and now, past and future, together and apart.",
 "With a bit of last summer's sand in the pockets, the Traveling Pants and the Sisterhood that wears them embark on their second summer together.Bridget: Impulsively sets off for Alabama, wanting to both confront and avoid her demons... but she can't keep the truth from the Pants.Carmen: Is concerned that her mother is making a fool of herself over a man. When she discovers that her mom borrowed the Pants to wear on a date, she's certain of it.Tibby: Makes a movie she'd like to be proud of... while the Pants keep alive the memory of a friend who could see beyond appearances.Lena: Has spent months hiding from love... only to find that she's at last ready to put on the Pants and let them lead her where they will.",
 'The year 1984 has come and gone, but George Orwell\'s prophetic, nightmarish vision in 1949 of the world we were becoming is timelier than ever. 1984 is still the great modern classic of "negative utopia"—a startlingly original and haunting novel that creates an imaginary world that is completely convincing, from the first sentence to the last four words. No one can deny the novel\'s hold on the imaginations of whole generations, or the power of its admonitions—a power that seems to grow, not lessen, with the passage of time.',
 'This edition features George Orwell’s best-known novels—1984 and Animal Farm—with an introduction by Christopher Hitchens.In 1984, London is a grim city where Big Brother is always watching you and the Thought Police can practically read your mind. Winston Smith joins a secret revolutionary organisation called The Brotherhood, dedicated to the destruction of the Party. Together with his beloved Julia, he hazards his life in a deadly match against the powers that be. Animal Farm is Orwell’s classic satire of the Russian Revolution - an account of the bold struggle, initiated by the animals, that transforms Mr. Jones’s Manor Farm into Animal Farm - a wholly democratic society built on the credo that All Animals Are Created Equal. But are they? AUTHOR: George Orwell (1903-1950) was born in India and served with the Imperial Police in Burma before joining the Republican Army in the Spanish Civil War. Orwell was the author of six novels as well as numerous essays and nonfiction works.',
 "The astonishing novel Brave New World, originally published in 1932, presents Aldous Huxley's vision of the future--of a world utterly transformed. Through the most efficient scientific and psychological engineering, people are genetically designed to be passive and therefore consistently useful to the ruling class. This powerful work of speculative fiction sheds a blazing critical light on the present and is considered to be Aldous Huxley's most enduring masterpiece.The non-fiction work Brave New World Revisited, published in 1958, is a fascinating work in which Huxley uses his tremendous knowledge of human relations to compare the modern-day world with his prophetic fantasy envisioned in Brave New World, including the threats to humanity, such as over-population, propaganda, and chemical persuasion.",
 "A National Book Critics Circle Award-nominated biographer chronicles the life of the iconic business titan from his modest upbringing in mid-1800s Scotland through his rise to one of the world's richest men, offering insight into his work as a peace advocate and his motivations for giving away most of his fortune. 120,000 first printing.",
 "Naguib Mahfouz’s magnificent epic trilogy of colonial Egypt appears here in one volume for the first time. The Nobel Prize-winning writer's masterwork is the engrossing story of a Muslim family in Cairo during Britain's occupation of Egypt in the early decades of the twentieth century.The novels of The Cairo Trilogy trace three generations of the family of tyrannical patriarch Al-Sayyid Ahmad Abd al-Jawad, who rules his household with a strict hand while living a secret life of self-indulgence. Palace Walk introduces us to his gentle, oppressed wife, Amina, his cloistered daughters, Aisha and Khadija, and his three sons–the tragic and idealistic Fahmy, the dissolute hedonist Yasin, and the soul-searching intellectual Kamal. Al-Sayyid Ahmad’s rebellious children struggle to move beyond his domination in Palace of Desire, as the world around them opens to the currents of modernity and political and domestic turmoil brought by the 1920s. Sugar Street brings Mahfouz’s vivid tapestry of an evolving Egypt to a dramatic climax as the aging patriarch sees one grandson become a Communist, one a Muslim fundamentalist, and one the lover of a powerful politician.Throughout the trilogy, the family's trials mirror those of their turbulent country during the years spanning the two World Wars, as change comes to a society that has resisted it for centuries. Filled with compelling drama, earthy humor, and remarkable insight, The Cairo Trilogy is the achievement of a master storyteller.",
 "Anne Frank lived a life filled with the enthusiasms and hopes shared by many young women coming into adulthood. But the times Anne lived in and wrote of in her diary made her simple life extraordinary. In over one hundred photographs, many which have never been published, this poignant memoir brings to life the harrowing story of one young Jewish woman's struggle to survive during a period of history which must never be forgotten.",
 '"Never before, in the entire history of the American theater, has so much of the truth of black people\'s lives been seen on the stage," observed James Baldwin shortly before A Raisin in the Sun opened on Broadway in 1959.Indeed Lorraine Hansberry\'s award-winning drama about the hopes and aspirations of a struggling, working-class family living on the South Side of Chicago connected profoundly with the psyche of black America--and changed American theater forever.\xa0\xa0The play\'s title comes from a line in Langston Hughes\'s poem "Harlem," which warns that a dream deferred might "dry up/like a raisin in the sun.""The events of every passing year add resonance to A Raisin in the Sun," said The New York Times.\xa0\xa0"It is as if history is conspiring to make the play a classic."\xa0\xa0This Modern Library edition presents the fully restored, uncut version of Hansberry\'s landmark work with an introduction by Robert Nemiroff.',
 'Collected together, two of the most electrifying classic masterpieces of the American theater, remarkable not only for their historical value but for their continued ability to engage the imagination and the heart. With an Introduction by Robert Nemiroff.\xa0"Rich and warm and funny and varied ... beautifully written."\xa0— Los Angeles Times , on The Sign in Sidney Brustein\'s Window"One of a handful of great American plays—it belongs in the inner circle, along with Death of a Salesman, Long Day\'s Journey Into Night and The Glass Menagerie ."\xa0— Washington Post , on A Raisin in the Sun\xa0By the time of her death, at the tragically young age of thirty-four, Lorraine Hansberry had created two milestones of the American theater. With A Raisin in the Sun , Hansberry gave this country its most movingly authentic portrayal of black family life in the inner city. Barely five years later, with The Sign in Sidney Brustein\'s Window , Hansberry gave us an unforgettable portrait of a man struggling with his individual fate in an age of racial and social injustice.\xa0"Never before, in the entire history of the American theater, has so much of the truth of Black people\'s lives been seen on the stage," observed James Baldwin shortly before A Raisin in the Sun opened on Broadway in 1959. The play\'s title comes from a line in Langston Hughes\'s poem "Harlem," which warns that a dream deferred might "dry up/like a raisin in the sun."\xa0From John Blaine’s Foreword to The Sign in Sidney Brustein\'s Window : “It is drama of such clarity that one may return to it again and again, and, I expect, emerge as deeply moved; and each time the more illumined…. Miss Hansberry, I am convinced, doesn’t know how to create a character who isn’t gloriously diverse, illuminatingly contradictory, heart-breakingly alive…. [A] personal odyssey of discovery, a confrontation with others in the process of which [Brustein] discovers himself.”',
 'An angry rebel, John dropped out of school and enlisted in the Army, not knowing what else to do with his life--until he meets the girl of his dreams, Savannah. Their mutual attraction quickly grows into the kind of love that leaves Savannah waiting for John to finish his tour of duty, and John wanting to settle down with the woman who has captured his heart. But 9/11 changes everything. John feels it is his duty to re-enlist. And sadly, the long separation finds Savannah falling in love with someone else. Dear John, the letter read... and with those two words, a heart was broken and two lives were changed forever. Returning home, John must come to grips with the fact that Savannah, now married, is still his true love—and face the hardest decision of his life.',
 'All the King\'s Men is a 1946 novel by Robert Penn Warren. Its title is drawn from the nursery rhyme "Humpty Dumpty". The novel tells the story of charismatic populist governor Willie Stark and his political machinations in the Depression-era Deep South. It is commonly thought to have been loosely inspired by the real-life story of U.S. Senator Huey P. Long, who was assassinated in 1935. Warren won the Pulitzer Prize for All the King\'s Men in 1947. The novel has received critical acclaim and remained perennially popular since its first publication. It was rated the 36th greatest novel of the 20th century by Modern Library, and it was chosen as one of Time magazine\'s 100 best novels since 1923. All the King\'s Men portrays the dramatic and theatrical political rise and governorship of Willie Stark, a cynical populist in the 1930s American South.',
 "The revised edition of Feynman's legendary lectures includes extensive corrections and updates collated by Feynman and his colleagues. A new foreword by Kip Thorne, the current Richard Feynman Professor of Theoretical Physics at Caltech, discusses the relevance of the new edition to today's readers. This boxed set also includes Feynman's new Tips on Physics—the four previously unpublished lectures that Feynman gave to students preparing for exams at the end of his course. Thus, this 4-volume set is the complete and definitive edition of The Feynman Lectures on Physics. Packaged in a specially designed slipcase, this 4-volume set provides the ultimate legacy of Feynman's extraordinary contribution to students, teachers, researches, and lay readers around the world.",
 'Famous the world over for the creative brilliance of his insights into the physical world, Nobel Prize-winning physicist Richard Feynman also possessed an extraordinary talent for explaining difficult concepts to the nonscientist. QED--the edited version of four lectures on quantum electrodynamics that Feynman gave to the general public at UCLA as part of the Alix G. Mautner Memorial Lecture series--is perhaps the best example of his ability to communicate both the substance and the spirit of science to the layperson.The focus, as the title suggests, is quantum electrodynamics (QED), the part of the quantum theory of fields that describes the interactions of the quanta of the electromagnetic field-light, X rays, gamma rays--with matter and those of charged particles with one another. By extending the formalism developed by Dirac in 1933, which related quantum and classical descriptions of the motion of particles, Feynman revolutionized the quantum mechanical understanding of the nature of particles and waves. And, by incorporating his own readily visualizable formulation of quantum mechanics, Feynman created a diagrammatic version of QED that made calculations much simpler and also provided visual insights into the mechanisms of quantum electrodynamic processes.In this book, using everyday language, spatial concepts, visualizations, and his renowned "Feynman diagrams" instead of advanced mathematics, Feynman successfully provides a definitive introduction to QED for a lay readership without any distortion of the basic science. Characterized by Feynman\'s famously original clarity and humor, this popular book on QED has not been equaled since its publication.',
 "Six Easy Essentials of Physics Explained by Its Most Brilliant Teacher is a publishing first. This set couples a book containing the six easiest chapters from Richard P. Feynman's landmark work, Lectures on Physics —specifically designed for the general, non-scientist reader—with the actual recordings of the late, great physicist delivering the lectures on which the chapters are based. Nobel Laureate Feynman gave these lectures just once, to a group of Caltech undergraduates in 1961 and 1962, and these newly released recordings allow you to experience one of the Twentieth Century's greatest minds—as if you were right there in the classroom.",
 "During the Revolutionary era, American political theory underwent a fundamental transformation that carried the nation out of a basically classical and medieval world of political discussion into a milieu that was recognizably modern. This classic work is a study of that transformation. Gordon Wood describes in rich detail the evolution of political thought from the Declaration of Independence to the ratification of the Constitution and in the process greatly illuminates the origins of the present American political system. In a new preface, Wood discusses the debate over republicanism that has developed since - and as a result of - the book's original publication in 1969.",
 '\n“All this he saw, for one moment breathless and intense, vivid on the morning sky; and still, as he looked, he lived; and still, as he lived, he wondered.”\nFor more than a century, The Wind in the Willows and its endearing protagonists—Mole, Water Rat, Badger, and, of course, the incorrigible Toad—have enchanted children of all ages. Whether the four friends are setting forth on an exciting adventure, engaging in a comic caper, or simply relaxing by the River Thames, their stories will surprise and captivate you.Hailed as one of the most enduringly popular works of the twentieth century, this story is a classic of magical fancy and enchanting wit. Penned in lyrical prose, the adventures and misadventures of the book’s intrepid quartet of heroes raise fantasy to the level of myth. Reflecting the freshness of childhood wonder, it still offers adults endless sophistication, substance, and depth.The animals’ world embodies the author’s wry, whimsical, and unfailingly inventive imagination. It is a world that succeeding generations of both adult and young readers have found irresistible. But why say more? To use the words of the estimable Mr. Toad himself: “Travel, change, interest, excitement!...Come inside.”',
 'Richard Pevear and Larissa Volokhonsky, the highly acclaimed translators of and which was an Oprah Book Club pick and million-copy bestseller, bring their unmatched talents to a collection of thirty of Chekhov’s best tales from the major periods of his creative life.\xa0Considered the greatest short story writer, Anton Chekhov changed the genre itself with his spare, impressionistic depictions of Russian life and the human condition. From characteristically brief, evocative early pieces such as “The Huntsman” and the tour de force “A Boring Story,” to his best-known stories such as “The Lady with the Little Dog” and his own personal favorite, “The Student,” Chekhov’s short fiction possesses the transcendent power of art to awe and change the reader. This monumental edition, expertly translated, is especially faithful to the meaning of Chekhov’s prose and the unique rhythms of his writing, giving readers an authentic sense of his style and a true understanding of his greatness.',
 'Alternate Cover Edition ISBN 0679734511. (ISBN13: 9780679734512)Inspired by the true story of a political murder that horrified Russians in 1869, Fyodor Dostoevsky conceived of Demons as a "novel-pamphlet" in which he would say everything about the plague of materialist ideology that he saw infecting his native land. What emerged was a prophetic and ferociously funny masterpiece of ideology and murder in pre-revolutionary Russia.',
 'Anton Chekhov, widely hailed as the supreme master of the short story, also wrote five works long enough to be called short novels. Here, brought together in one volume for the first time, in a masterly new translation by the award-winning translators Richard Pevear and Larissa Volokhonsky.The Steppe—the most lyrical of the five—is an account of a nine-year-old boy’s frightening journey by wagon train across the steppe of southern Russia. The Duel sets two decadent figures—a fanatical rationalist and a man of literary sensibility—on a collision course that ends in a series of surprising reversals. In The Story of an Unknown Man, a political radical spying on an important official by serving as valet to his son gradually discovers that his own terminal illness has changed his long-held priorities in startling ways. Three Years recounts a complex series of ironies in the personal life of a rich but passive Moscow merchant. In My Life, a man renounces wealth and social position for a life of manual labor.The resulting conflict between the moral simplicity of his ideals and the complex realities of human nature culminates in a brief apocalyptic vision that is unique in Chekhov’s work.(Book Jacket Status: Jacketed)\xa0From the Hardcover edition.',
 'Lalu Nathoy\'s father called his thirteen-year-old daughter his treasure, his "thousand pieces of gold," yet when famine strikes northern China in 1871, he is forced to sell her. Polly, as Lalu is later called, is sold to a brothel, sold again to a slave merchant bound for America, auctioned to a saloonkeeper, and offered as a prize in a poker game. This biographical novel is the extraordinary story of one woman\'s fight for independence and dignity in the American West.',
 "Over the course of nine novels, Tom Clancy’s “genius for big, compelling plots” and his “natural narrative gift” (The New York Times Magazine) have mesmerized hundreds of millions of readers and established him as one of the preeminent storytellers of our time. Rainbow Six, however, goes beyond anything he has done before.At its heart is John Clark, the ex-Navy SEAL of Without Remorse, well known from several of Clancy's novels as a master of secret operational missions. Whether hunting warlords in Japan, druglords in Colombia, or nuclear terrorists in the United States, Clark is efficient and deadly, but even he has ghosts in his past, demons that must be exorcised. And nothing is more demonic than the peril he must face in Rainbow Six.Newly named the head of an international task force dedicated to combating terrorism, Clark is looking forward to getting his teeth into a new mission, but the opportunities start coming thicker and faster than anyone could have expected: an incident at a Swiss bank, the kidnapping of an international trader in Germany, a terrible raid on an amusement park in Spain.Each episode seems separate, discrete, yet the timing disturbs Clark. Is there a connection? Is he being tested? With the help of his close associates, executive officer Alistair Stanley and strike team leaders Domingo Chavez and Peter Covington, Clark tries to figure out where all this activity is heading, but there is no way to predict the real threat: a group of terrorists like none the world has ever encountered, a band of men and women so extreme that their success could literally mean the end of life on Earth as we know it.",
 'In The Blank Slate, Steven Pinker explores the idea of human nature and its moral, emotional, and political colorings. He shows how many intellectuals have denied the existence of human nature by embracing three linked dogmas: the Blank Slate (the mind has no innate traits), the Noble Savage (people are born good and corrupted by society), and the Ghost in the Machine (each of us has a soul that makes choices free from biology). Each dogma carries a moral burden, so their defenders have engaged in desperate tactics to discredit the scientists who are now challenging them.Pinker injects calm and rationality into these debates by showing that equality, progress, responsibility, and purpose have nothing to fear from discoveries about a rich human nature. He disarms even the most menacing threats with clear thinking, common sense, and pertinent facts from science and history.Despite its popularity among intellectuals during much of the twentieth century, he argues, the doctrine of the Blank Slate may have done more harm than good. It denies our common humanity and our individual preferences, replaces hardheaded analyses of social problems with feel-good slogans, and distorts our understanding of government, violence, parenting, and the arts.Pinker shows that an acknowledgement of human nature that is grounded in science and common sense, far from being dangerous, can complement insights about the human condition made by millennia of artists and philosophers. All this is done in the style that earned his previous books many prizes and worldwide acclaim: wit, lucidity, and insight into matters great and small.',
 "The classic book on the development of human language by the world’s leading expert on language and the mind.In this classic, the world's expert on language and mind lucidly explains everything you always wanted to know about language: how it works, how children learn it, how it changes, how the brain computes it, and how it evolved. With deft use of examples of humor and wordplay, Steven Pinker weaves our vast knowledge of language into a compelling story: language is a human instinct, wired into our brains by evolution.\xa0The Language Instinct\xa0received the William James Book Prize from the American Psychological Association and the Public Interest Award from the Linguistics Society of America. This edition includes an update on advances in the science of language since\xa0The Language Instinct\xa0was first published.",
 "It follows the experiences of an unnamed protagonist struggling with insomnia. Inspired by his doctor's exasperated remark that insomnia is not suffering, the protagonist finds relief by impersonating a seriously ill person in several support groups. Then he meets a mysterious man named Tyler Durden and establishes an underground fighting club as radical psychotherapy.",
 "Full of philosophical puzzles and supernatural surprises, these stories contain some of Borges's most fully realized human characters. With uncanny insight, he takes us inside the minds of an unrepentant Nazi, an imprisoned Mayan priest, fanatical Christian theologians, a woman plotting vengeance on her father’s “killer,” and a man awaiting his assassin in a Buenos Aires guest house.\xa0 This volume also contains the hauntingly brief vignettes about literary imagination and personal identity collected in The Maker, which Borges wrote as failing eyesight and public fame began to undermine his sense of self.For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Readers trust the series to provide authoritative texts enhanced by introductions and notes by distinguished scholars and contemporary authors, as well as up-to-date translations by award-winning translators.",
 'A novel that chronicles the lives of two women who could not be more different: Becky Sharp, an orphan whose only resources are her vast ambitions, her native wit, and her loose morals; and her schoolmate Amelia Sedley, a typically naive Victorian heroine, the pampered daughter of a wealthy family.',
 '"Remember, remember the fifth of November..."A frightening and powerful tale of the loss of freedom and identity in a chillingly believable totalitarian world, V for Vendetta stands as one of the highest achievements of the comics medium and a defining work for creators Alan Moore and David Lloyd.Set in an imagined future England that has given itself over to fascism, this groundbreaking story captures both the suffocating nature of life in an authoritarian police state and the redemptive power of the human spirit which rebels against it. Crafted with sterling clarity and intelligence, V for Vendetta brings an unequaled depth of characterization and verisimilitude to its unflinching account of oppression and resistance.',
 "Que signifie V. ? Victoire, vol d'oiseaux, ou encore Vheissu, un pays imaginaire et mystérieux ? C'est la question que se pose Herbert Stencil depuis qu'il a repéré le fameux signe dans le journal intime de son père défunt. Très vite, V. devient une énigme aux nombreuses significations, une figure féminine aux multiples visages, la clé de voûte de la vaste réalité. Un récit vertigineux, dans le sillage de Kerouac et Joyce.",
 "Somewhere in South America, at the home of the country's vice president, a lavish birthday party is being held in honor of the powerful businessman Mr. Hosokawa. Roxane Coss, opera's most revered soprano, has mesmerized the international guests with her singing. It is a perfect evening—until a band of gun-wielding terrorists takes the entire party hostage. But what begins as a panicked, life-threatening scenario slowly evolves into something quite different, a moment of great beauty, as terrorists and hostages forge unexpected bonds and people from different continents become compatriots, intimate friends, and lovers.",
 '\'Brilliant and terrifying\' - "Observer". I had to be the man who was doing well and more than well, the man whose drab shop concealed some bigger operation that made millions. I had to be the man who had planned it all, who had come to the destroyed town at the bend in the river because he had foreseen the rich future. \'Salim, the narrator, is a young man from an Indian family of traders long resident on the coast of Central Africa. Salim has left the coast to make his way in the interior, there to take on a small trading shop of this and that, sundries, sold to the natives. The place is \'a bend in the river\'; it is Africa. The time is post-colonial, the time of Independence. The Europeans have withdrawn or been forced to withdraw and the scene is one of chaos, violent change, warring tribes, ignorance, isolation, poverty and a lack of preparation for the modern world they have entered, or partially assumed as a sort of decoration. It is a story of historical upheaval and social breakdown. Naipaul has fashioned a work of intense imaginative force. It is a haunting creation, rich with incident and human bafflement, played out in an immense detail of landscape rendered with a poignant brilliance\' - Elizabeth Hardwick. \'Always a master of fictional landscape, Naipaul here shows, in his variety of human examples and in his search for underlying social causes, a Tolstoyan spirit\' - John Updike.',
 'Mohun Biswas has spent his 46 years of life striving for independence. Shuttled from one residence to another after the drowning of his father, he yearns for a place he can call home. He marries into the Tulsi family, on whom he becomes dependent, but rebels and takes on a succession of occupations in a struggle to weaken their hold over him.',
 'NATIONAL BESTSELLER • In a narrative that moves with dreamlike swiftness from India to England to Africa, the Nobel Prize-winning author produced his finest novel, a bleakly resonant study of the fraudulent bargains that make up an identity."A masterpiece." — Los Angeles Times Book ReviewThe son of a Brahmin ascetic and his lower-caste wife, Willie Chandran grows up sensing the hollowness at the core of his father\'s self-denial and vowing to live more authentically. That search takes him to the immigrant and literary bohemias of 1950s London, to a facile and unsatisfying career as a writer, and at last to a decaying Portugese colony in East Africa, where he finds a happiness he will then be compelled to betray. Brilliantly orchestrated, at once elegiac and devastating in its portraits of colonial grandeur and pretension, Half a Life represents the pinnacle of Naipaul\'s career.',
 "Regeneration, one in Pat Barker's series of novels confronting the psychological effects of World War I, focuses on treatment methods during the war and the story of a decorated English officer sent to a military hospital after publicly declaring he will no longer fight. Yet the novel is much more. Written in sparse prose that is shockingly clear—the descriptions of electronic treatments are particularly harrowing—it combines real-life characters and events with fictional ones in a work that examines the insanity of war like no other. Barker also weaves in issues of class and politics in this compactly powerful book. Other books in the series include The Eye in the Door and the Booker Award winner The Ghost Road.",
 'The Regeneration Trilogy (Regeneration; The Eye in the Door; The Ghost Road)',
 "Librarian note: Alternate covers can be found here and here.'In one moment, every drop of blood in my body was brought to a stop... There, as if it had that moment sprung out of the earth, stood the figure of a solitary Woman, dressed from head to foot in white'The Woman in White famously opens with Walter Hartright's eerie encounter on a moonlit London road. Engaged as a drawing master to the beautiful Laura Fairlie, Walter becomes embroiled in the sinister intrigues of Sir Percival Glyde and his 'charming' friend Count Fosco, who has a taste for white mice, vanilla bonbons, and poison. Pursuing questions of identity and insanity along the paths and corridors of English country houses and the madhouse, The Woman in White is the first and most influential of the Victorian genre that combined Gothic horror with psychological realism.Matthew Sweet's introduction explores the phenomenon of Victorian 'sensation' fiction, and discusses Wilkie Collins's biographical and societal influences. Included in this edition are appendices on theatrical adaptations of the novel and its serialisation history.",
 'In a hole in the ground there lived a hobbit. Not a nasty, dirty, wet hole, filled with the ends of worms and an oozy smell, nor yet a dry, bare, sandy hole with nothing in it to sit down on or to eat: it was a hobbit-hole, and that means comfort.Written for J.R.R. Tolkien’s own children, The Hobbit met with instant critical acclaim when it was first published in 1937. Now recognized as a timeless classic, this introduction to the hobbit Bilbo Baggins, the wizard Gandalf, Gollum, and the spectacular world of Middle-earth recounts of the adventures of a reluctant hero, a powerful and dangerous ring, and the cruel dragon Smaug the Magnificent. The text in this 372-page paperback edition is based on that first published in Great Britain by Collins Modern Classics (1998), and includes a note on the text by Douglas A. Anderson (2001).',
 "When it appeared in 1924, this work launched into the international spotlight a young and unknown poet whose writings would ignite a generation. W. S. Merwin's incomparable translation faces the original Spanish text. Now in a black-spine Classics edition with an introduction by Cristina Garcia, this book stands as an essential collection that continues to inspire lovers and poets around the world.The most popular work by Chile's Nobel Prize-winning poet, and the subject of Pablo Larraín's acclaimed feature film Neruda starring Gael García Bernal.",
 'The most comprehensive English-language collection of work ever by "the greatest poet of the twentieth century - in any language" - Gabriel García Márquez"In his work a continent awakens to consciousness." So wrote the Swedish Academy in awarding the Nobel Prize to Pablo Neruda, the author of more than thirty-five books of poetry and one of Latin America\'s most revered writers, lionized during his lifetime as "the people\'s poet." This selection of Neruda\'s poetry, the most comprehensive single volume available in English, presents nearly six hundred poems. Scores of them are in new and sometimes multiple translations, and many accompanied by the Spanish original. In his introduction, Ilan Stavans situates Neruda in his native milieu as well as in a contemporary English-language one, and a group of new translations by leading poets testifies to Neruda\'s enduring, vibrant legacy among English-speaking writers and readers today.',
 'An alternate cover edition of this ISBN can be found here.With his first novel since the internationally acclaimed The English Patient, Booker Prize-winning author Michael Ondaatje gives us a work displaying all the richness of imagery and language and the piercing emotional truth that we have come to know as the hallmarks of his writing.Anil’s Ghost transports us to Sri Lanka, a country steeped in centuries of tradition, now forced into the late twentieth century by the ravages of civil war. Into this maelstrom steps Anil Tissera, a young woman born in Sri Lanka, educated in England and America, who returns to her homeland as a forensic anthropologist sent by an international human rights group to discover the source of the organized campaigns of murder engulfing the island. What follows is a story about love, about family, about identity, about the unknown enemy, about the quest to unlock the hidden past–a story propelled by a riveting mystery. Unfolding against the deeply evocative background of Sri Lanka’s landscape and ancient civilization, Anil’s Ghost is a literary spellbinder–Michael Ondaatje’s most powerful novel yet.',
 "Bristling with intelligence and shimmering with romance, this novel tests the boundary between history and myth. Patrick Lewis arrives in Toronto in the 1920s and earns his living searching for a vanished millionaire and tunneling beneath Lake Ontario. In the course of his adventures, Patrick's life intersects with those of characters who reappear in Ondaatje's Booker Prize-winning The English Patient. 256 pp.",
 "Narcissus and Goldmund tells the story of two medieval men whose characters are diametrically opposite: Narcissus, an ascetic monk firm in his religious commitment, and Goldmund, a romantic youth hungry for knowledge and worldly experience. First published in 1930, Hesse's novel remains a moving and pointed exploration of the conflict between the life of the spirit and the life of the flesh. It is a theme that transcends all time.",
 "After surviving several horrifying years in the inferno of the Western Front, a young German soldier and his cohorts return home at the end of WW1. Their road back to life in civilian world is made arduous by their bitterness about what they find in post-war society. A captivating story, one of Remarque's best.",
 'Volume 1 of the series. Includes 32 pages of illustrations, and 11 maps and tables.',
 'From the accession of Alexius in 1081, through the disastrous Fourth Crusade - when an army destined for the Holy Land was diverted to Constantinople by the blind, octogenarian but infinitely crafty Doge of Venice - to the painfully protracted struggle against the Ottomans, the closing centuries of the Byzantine era are rich in pathos, colour and startling reversals of fortune. The terrible siege of Constantinople in 1453 ended the empire, founded in the year 330, which Lord Norwich has devoted many years to re-creating; this volume forms the climax to an epic sequence of books.',
 'Wilkie Collins’s spellbinding tale of romance, theft, and murder inspired a hugely popular genre–the detective mystery. Hinging on the theft of an enormous diamond originally stolen from an Indian shrine, this riveting novel features the innovative Sergeant Cuff, the hilarious house steward Gabriel Betteridge, a lovesick housemaid, and a mysterious band of Indian jugglers.This Modern Library Paperback Classic is set from the definitive 1871 edition.',
 'Winner of the Pulitzer Prize, Toni Morrison’s Beloved is a spellbinding and dazzlingly innovative portrait of a woman haunted by the past.Sethe was born a slave and escaped to Ohio, but eighteen years later she is still not free. She has borne the unthinkable and not gone mad, yet she is still held captive by memories of Sweet Home, the beautiful farm where so many hideous things happened. Meanwhile Sethe’s house has long been troubled by the angry, destructive ghost of her baby, who died nameless and whose tombstone is engraved with a single word: Beloved.Sethe works at beating back the past, but it makes itself heard and felt incessantly in her memory and in the lives of those around her. When a mysterious teenage girl arrives, calling herself Beloved, Sethe’s terrible secret explodes into the present.Combining the visionary power of legend with the unassailable truth of history, Morrison’s unforgettable novel is one of the great and enduring works of American literature.',
 'Cry, the Beloved Country, the most famous and important novel in South Africa’s history, was an immediate worldwide bestseller in 1948. Alan Paton’s impassioned novel about a black man’s country under white man’s law is a work of searing beauty.Cry, the beloved country, for the unborn child that is the inheritor of our fear. Let him not love the earth too deeply. Let him not laugh too gladly when the water runs through his fingers, nor stand too silent when the setting sun makes red the veld with fire. Let him not be too moved when the birds of his land are singing, nor give too much of his heart to a mountain or valley. For fear will rob him of all if he gives too much.The eminent literary critic Lewis Gannett wrote, “We have had many novels from statesmen and reformers, almost all bad; many novels from poets, almost all thin. In Alan Paton’s Cry, the Beloved Country the statesman, the poet and the novelist meet in a unique harmony.” Cry, the Beloved Country is the deeply moving story of the Zulu pastor Stephen Kumalo and his son, Absalom, set against the background of a land and a people riven by racial injustice. Remarkable for its lyricism, unforgettable for character and incident, Cry, the Beloved Country is a classic work of love and hope, courage and endurance, born of the dignity of man.',
 'The life of Spokane Indian Thomas Builds-the-Fire irrevocably changes when blues legend Robert Johnson miraculously appears on his reservation and passes the misfit storyteller his enchanted guitar. Inspired by this gift, Thomas forms Coyote Springs, an all-Indian Catholic band who find themselves on a magical tour that leads from reservation bars to Seattle and New York--and deep within their own souls.',
 'Beginning with All the Pretty Horses and continuing through The Crossing and Cities of the Plain, McCarthy chronicles the lives of two young men coming of age in the Southwest and Mexico, poised on the edge of a world about to change forever. Hauntingly beautiful, filled with sorrow and humor, The Border Trilogy is a masterful elegy for the American frontier.',
 'The true and harrowing account of Primo Levi’s experience at the German concentration camp of Auschwitz and his miraculous survival; hailed by The Times Literary Supplement as a “true work of art, this edition includes an exclusive conversation between the author and Philip Roth.In 1943, Primo Levi, a twenty-five-year-old chemist and “Italian citizen of Jewish race,” was arrested by Italian fascists and deported from his native Turin to Auschwitz. Survival in Auschwitz is Levi’s classic account of his ten months in the German death camp, a harrowing story of systematic cruelty and miraculous endurance. Remarkable for its simplicity, restraint, compassion, and even wit, Survival in Auschwitz remains a lasting testament to the indestructibility of the human spirit.',
 'In his final book before his death, Primo Levi returns once more to his time at Auschwitz in a moving meditation on memory, resiliency, and the struggle to comprehend unimaginable tragedy.Drawing on history, philosophy, and his own personal experiences, Levi asks if we have already begun to forget about the Holocaust. His last book before his death, Levi returns to the subject that would define his reputation as a writer and a witness.Levi breaks his book into eight essays, ranging from topics like the unreliability of memory to how violence twists both the victim and the victimizer. He shares how difficult it is for him to tell his experiences with his children and friends. He also debunks the myth that most of the Germans were in the dark about the Final Solution or that Jews never attempted to escape the camps. As the Holocaust recedes into the past and fewer and fewer survivors are left to tell their stories, The Drowned and the Saved is a vital first-person testament.Along with Elie Wiesel and Hannah Arendt, Primo Levi is remembered as one of the most powerful and perceptive writers on the Holocaust and the Jewish experience during World War II. This is an essential book both for students and literary readers. Reading Primo Levi is a lesson in the resiliency of the human spirit.',
 "'With the moral stamina and intellectual poise of a twentieth-century Titan, this slightly built, dutiful, unassuming chemist set out systematically to remember the German hell on earth, steadfastly to think it through, and then to render it comprehensible in lucid, unpretentious prose. He was profoundly in touch with the minutest workings of the most endearing human events and with the most contemptible. What has survived in Levi's writing isn't just his memory of the unbearable, but also, in The Periodic Table and The Wrench, his delight in what made the world exquisite to him. He was himself a magically endearing man, the most delicately forceful enchanter I've ever known' - Philip Roth.",
 "You can find the redesigned cover of this edition HERE.At the centre of this novel is the passionate love between Catherine Earnshaw and Heathcliff - recounted with such emotional intensity that a plain tale of the Yorkshire moors acquires the depth and simplicity of ancient tragedy.This best-selling Norton Critical Edition is based on the 1847 first edition of the novel. For the Fourth Edition, the editor has collated the 1847 text with several modern editions and has corrected a number of variants, including accidentals. The text is accompanied by entirely new explanatory annotations.New to the fourth Edition are twelve of Emily Bronte's letters regarding the publication of the 1847 edition of Wuthering Heights as well as the evolution of the 1850 edition, prose and poetry selections by the author, four reviews of the novel, and poetry selections by the author, four reviews of the novel, and Edward Chitham's insightful and informative chronology of the creative process behind the beloved work.Five major critical interpretations of Wuthering Heights are included, three of them new to the Fourth Edition. A Stuart Daley considers the importance of chronology in the novel. J. Hillis Miller examines Wuthering Heights's problems of genre and critical reputation. Sandra M. Gilbert assesses the role of Victorian Christianity plays in the novel, while Martha Nussbaum traces the novel's romanticism. Finally, Lin Haire-Sargeant scrutinizes the role of Heathcliff in film adaptations of Wuthering Heights. A Chronology and updated Selected Bibliography are also included.",
 'Set in post-apartheid South Africa, J. M. Coetzee’s searing novel tells the story of David Lurie, a twice divorced, 52-year-old professor of communications and Romantic Poetry at Cape Technical University. Lurie believes he has created a comfortable, if somewhat passionless, life for himself. He lives within his financial and emotional means. Though his position at the university has been reduced, he teaches his classes dutifully; and while age has diminished his attractiveness, weekly visits to a prostitute satisfy his sexual needs. He considers himself happy. However, when Lurie seduces one of his students, he sets in motion a chain of events that will shatter his complacency and leave him utterly disgraced.',
 "For decades the Magistrate has been a loyal servant of the Empire, running the affairs of a tiny frontier settlement and ignoring the impending war with the barbarians. When interrogation experts arrive, however, he witnesses the Empire's cruel and unjust treatment of prisoners of war. Jolted into sympathy for their victims, he commits a quixotic act of rebellion that brands him an enemy of the state.J. M. Coetzee's prize-winning novel is a startling allegory of the war between oppressor and oppressed. The Magistrate is not simply a man living through a crisis of conscience in an obscure place in remote times; his situation is that of all men living in unbearable complicity with regimes that ignore justice and decency.",
 'Coetzee grew up in a new development north of Cape Town, tormented by guilt and fear. With a father he despised, and a mother he both adored and resented, he led a double life—the brilliant and well-behaved student at school, the princely despot at home, always terrified of losing his mother\'s love. His first encounters with literature, the awakenings of sexual desire, and a growing awareness of apartheid left him with baffling questions; and only in his love of the high veld ("farms are places of freedom, of life") could he find a sense of belonging. Bold and telling, this masterly evocation of a young boy\'s life is the book Coetzee\'s many admirers have been waiting for, but never could have expected.',
 'The second installment of J. M. Coetzee\'s fictionalized "memoir" explores a young man\'s struggle to experience life to its full intensity and transform it into art. The narrator of Youth has long been plotting an escape-from the stifling love of his overbearing mother, a father whose failures haunt him, and what he is sure is an impending revolution in his native country of South Africa. Arriving at last in London in the 1960s, however, he finds neither poetry nor romance and instead begins a dark pilgrimage into adulthood. Youth is a remarkable portrait of a consciousness, isolated and adrift, turning in on itself, of a young man struggling to find his way in the world, written with tenderness and a fierce clarity.',
 "Since 1982, J. M. Coetzee has been dazzling the literary world. After eight novels that have won, among other awards, two Booker Prizes, and most recently, the Nobel Prize for literature, J.M. Coetzee has once again crafted an unusual and deeply affecting tale. Told through an ingenious series of formal addresses, Elizabeth Costello is, on the surface, the story of a woman's life as a mother, sister, lover, and writer. Yet it is also a profound and haunting meditation on the nature of storytelling.",
 "In her great historical epic Kristin Lavransdatter, set in fourteenth-century Norway, Nobel laureate Sigrid Undset tells the life story of one passionate and headstrong woman. Painting a richly detailed backdrop, Undset immerses readers in the day-to-day life, social conventions, and political and religious undercurrents of the period. Now in one volume, Tiina Nunnally's award-winning definitive translation brings this remarkable work to life with clarity and lyrical beauty.  As a young girl, Kristin is deeply devoted to her father, a kind and courageous man. But when as a student in a convent school she meets the charming and impetuous Erlend Nikulaussøn, she defies her parents in pursuit of her own desires. Her saga continues through her marriage to Erlend, their tumultuous life together raising seven sons as Erlend seeks to strengthen his political influence, and finally their estrangement as the world around them tumbles into uncertainty.  With its captivating heroine and emotional potency, Kristin Lavransdatter is the masterwork of Norway's most beloved author, one of the twentieth century's most prodigious and engaged literary minds and, in Nunnally's exquisite translation, a story that continues to enthrall.",
 'In the first century AD, Publius Ovidius Naso, the most urbane and irreverent poet of imperial Rome, was banished to a remote village on the edge of the Black Sea. From these sparse facts, one of our most distinguished novelists has fashioned an audacious and supremely moving work of fiction.Marooned on the edge of the known world, exiled from his native tongue, Ovid depends on the kindness of barbarians who impale their dead and converse with the spirit world. But then he becomes the guardian of a still more savage creature, a feral child who has grown up among deer. What ensues is a luminous encounter between civilization and nature, as enacted by a poet who once catalogued the treacheries of love and a boy who slowly learns how to give it.',
 "Published to international critical and popular acclaim, this intensely romantic yet stunningly realistic novel spans three generations and the unimaginable gulf between the First World War and the present. As the young Englishman Stephen Wraysford passes through a tempestuous love affair with Isabelle Azaire in France and enters the dark, surreal world beneath the trenches of No Man's Land, Sebastian Faulks creates a world of fiction that is as tragic as A Farewell to Arms and as sensuous as The English Patient. Crafted from the ruins of war and the indestructibility of love, Birdsong is a novel that will be read and marveled at for years to come.",
 'A searing, postapocalyptic novel destined to become Cormac McCarthy’s masterpiece.A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind. It is cold enough to crack stones, and when the snow falls it is gray. The sky is dark. Their destination is the coast, although they don’t know what, if anything, awaits them there. They have nothing; just a pistol to defend themselves against the lawless bands that stalk the road, the clothes they are wearing, a cart of scavenged food—and each other.The Road is the profoundly moving story of a journey. It boldly imagines a future in which no hope remains, but in which the father and his son, “each the other’s world entire,” are sustained by love. Awesome in the totality of its vision, it is an unflinching meditation on the worst and the best that we are capable of: ultimate destructiveness, desperate tenacity, and the tenderness that keeps two people alive in the face of total devastation.',
 "Sophie has the great misfortune of being the eldest of three daughters, destined to fail miserably should she ever leave home to seek her fate. But when she unwittingly attracts the ire of the Witch of the Waste, Sophie finds herself under a horrid spell that transforms her into an old lady. Her only chance at breaking it lies in the ever-moving castle in the hills: the Wizard Howl's castle. To untangle the enchantment, Sophie must handle the heartless Howl, strike a bargain with a fire demon, and meet the Witch of the Waste head-on. Along the way, she discovers that there's far more to Howl—and herself—than first meets the eye.An alternative cover for this ISBN can be found here",
 'A beat movement icon and visionary poet, Allen Ginsberg broke boundaries with his fearless, pyrotechnic verse. The apocalyptic "Howl" became the subject of an obscenity trial when it was first published in 1956 -- its vindication was a watershed moment in twentieth-century history. Dark, ecstatic and rhapsodic, "Howl" shows why Ginsberg was one of the most influential poets of the twentieth century.Howl and Other Poems is a collection of Ginsberg\'s finest work, including "Howl," one of the principal works of the Beat Generation as well as "A Supermarket in California," "Transcription of Organ Music," "Sunflower Sutra," "America," "In the Baggage Room at Greyhound," and some of his earlier works.\xa0',
 "Charlie Bucket's wonderful adventure begins when he finds one of Mr. Willy Wonka's precious Golden Tickets and wins a whole day inside the mysterious chocolate factory. Little does he know the surprises that are in store for him!(back cover)",
 "Captured by a giant! The BFG is no ordinary bone-crunching giant. He is far too nice and jumbly. It's lucky for Sophie that he is. Had she been carried off in the middle of the night by the Bloodbottler, the Fleshlumpeater, the Bonecruncher, or any of the other giants-rather than the BFG-she would have soon become breakfast. When Sophie hears that they are flush-bunking off in England to swollomp a few nice little chiddlers, she decides she must stop them once and for all. And the BFG is going to help her!",
 "Note: This edition shares ISBN 0590032496 with another edition.This is not a fairy-tale. This is about real witches. Real witches don't ride around on broomsticks. They don't even wear black cloaks and hats. They are vile, cunning, detestable creatures who disguise themselves as nice, ordinary ladies. So how can you tell when you're face to face with one? Well, if you don't know yet you'd better find out quickly-because there's nothing a witch loathes quite as much as children and she'll wield all kinds of terrifying powers to get rid of them.",
 "I guess you think you know this story.You don't. The real one's much more gory.The phoney one, the one you know,Was cooked up years and years ago...Do you think Cinderella married the prince and lived happily ever after, and that the three little pigs outsmarted the wolf? Think again! Premier storyteller Roald Dahl twists the fate of six favorite fairy tales, in this picture book edition with vibrant new cover art by Quentin Blake. Fairy tales have never been more revolting!With his famous wicked humor and the cunning of a big bad wolf, master storyteller and satirist Roald Dahl retells his six favorite fairy tales. Get ready for Dahl's diabolical version of what really happened.This book collects the following stories adapted by Roald Dahl:- Cinderella- Snow White and the Seven Dwarfs- Jack and the Beanstock- Goldilocks and the Three Bears- Little Red Riding Hood and the Wolf- The Three Little Pigs",
 "The Best of Roald Dahl is a collection of 25 of Roald Dahl's short stories. This collection brings together Dahl’s finest work, illustrating his genius for the horrific and grotesque which is unparalleled.Contents- Madame Rosette- Man from the South- The Sound Machine- Taste- Dip in the Pool- Skin- Edward the Conqueror- Lamb to the Slaughter- Galloping Foxley- The Way Up to Heaven- Parson's Pleasure- The Landlady- William and Mary- Mrs. Bixby and the Colonel's Coat- Royal Jelly- Georgy Porgy- Genesis and Catastrophe- Pig- The Visitor- Claud's Dog (The Ratcatcher, Rummins, Mr. Hoddy, Mr. Feasy, Champion of the World)- The Great Switcheroo- The Boy Who Talked with Animals- The Hitchhiker- The Wonderful Story of Henry Sugar- The Bookseller",
 'Hailsham seems like a pleasant English boarding school, far from the influences of the city. Its students are well tended and supported, trained in art and literature, and become just the sort of people the world wants them to be. But, curiously, they are taught nothing of the outside world and are allowed little contact with it.Within the grounds of Hailsham, Kathy grows from schoolgirl to young woman, but it’s only when she and her friends Ruth and Tommy leave the safe grounds of the school (as they always knew they would) that they realize the full truth of what Hailsham is.Never Let Me Go breaks through the boundaries of the literary novel. It is a gripping mystery, a beautiful love story, and also a scathing critique of human arrogance and a moral examination of how we treat the vulnerable and different in our society. In exploring the themes of memory and the impact of the past, Ishiguro takes on the idea of a possible future to create his most moving and powerful book to date.',
 'Responding to the extraordinary number of questions raised by recent cultural phenomena such as The Gospel of Judas and The Da Vinci Code, New York Times bestselling author Sylvia Browne brings readers the full story of the life of Jesus  New discoveries in archaeology and recent bestsellers and movies such as The Da Vinci Code and The Passion of the Christ have sparked a renaissance of the many controversies that have remained unanswered in Christianity and other religions. At the heart of these controversies is Jesus. With a unique perspective only Sylvia Browne could bring, The Mystical Life of Jesus is filled with the details of Jesus’ inspiring life.  Including his birth, childhood, travels, ministry, miracles, crucifixion, death, and resurrection, she addresses all of the major controversies: • Was there a virgin birth? • Was there a Star of Bethlehem?  • What did he do for the first thirty years of his life?  • Was he married?  • Was he divine?  • Was it a miracle at Cana (and who was getting married)?  • Is there a Jesus lineage?   Using her unique relationship with her spirit guide and her years studying the controversial Gnostic texts, Sylvia answers all of these questions with a confidence and authority only someone who has visited the afterlife can have.',
 'Have you ever wondered about life and Creation? Is there life after death? Why do we have to go through these trials and tribulations? Why do we have thoughts and dreams that run from the sublime to those that are nightmarish and bizarre? Why do goodness and evil go hand in hand in life … or do they? The answers to these questions and more are brought to light by author and spiritual teacher Sylvia Browne. She once again shares her psychic gifts and years of research in order to enlighten us and give us more insights into God and the realities of life. This time she tackles the structure of Creation by showing us that there is purpose and order in our sometimes seemingly chaotic world and existence. She outlines the structural levels of Creation of not only life as we know it; but the reality of the afterlife and the heretofore-unexplored structure of the Lower Levels of Creation. From the beautiful and perfect life of the Other Side to the wondrous, weird, and strange Lower Levels, to the everyday intricacies of life on this planet, Sylvia takes us on another journey of exploration and truth.',
 'The New York Times –#1 bestselling author and psychic Sylvia Browne and her son explore the ways in which spirits, angels, and God celebrate Christmas in Heaven and how the celebrations compare to those on Earth. Questions such as Are there presents and the exchanging of gifts? Do heavenly spirits decorate? and How is Jesus honored? are discussed, as is the idea of giving gifts from the heart, like the spirits and angels in heaven do, instead of giving store-bought goods. Information is also provided on the role of religious ceremonies in heaven and how they differ from the ceremonies of the living.',
 'In this follow-up to her marvelous book, Mother God, Sylvia gives us many insights into our often-misunderstood Father God and the viewpoints about Him. From His history as put forth by humankind in the early days of organized religion to how we view Him today, Sylvia reveals His true attributes in a logical and truthful manner to give us a better understanding of our Father in heaven. Using her uncanny psychic skills and her ability to communicate with the Other Side, Sylvia dispels many of the false and traditional beliefs about the Father God and helps us to embrace Him more deeply and fully.Sylvia helps us see Father God in a different way . . . one in which everyone can gain a deeper understanding and love for this often-maligned Entity. If anyone wants to commune more closely with their Creator and to share His unmitigated and unconditional love, this fascinating book is the answer . . . for it not only shows us Sylvia’s tremendous insight and love for Him, but also tells us how we can enjoy that same intimacy in our everyday lives. In her own indomitable style, Sylvia again shows us that she goes against many conventional beliefs in presenting a God that is truly all-loving, merciful, and forgiving . . . one Whom she has dedicated her life and work to in what she would say is . . . /P>',
 'Renowned psychic, spiritual teacher, and #1 New York Times bestselling author of End of Days Sylvia Browne has changed millions of lives with her unique gifts. Now, she leads readers on an adventure of the a surprising glimpse into the next world, where their loved ones patiently await them.Take a journey you will never forget and discover the answer to life’s greatest “What’s on The Other Side? ”In this extraordinary and inspirational book, Sylvia reflects upon her past experiences, hypnosis sessions, and research to tell the truth about The Other Side. She explains the process of leaving this world for the next, and what circumstances foretell our next incarnation on Earth.Filled with stunning revelations and stories of those who have visited The Other Side, this uplifting book is the ultimate guide to finding peace in the afterlife.',
 'For nearly 50 years, New York Times bestselling author Sylvia Browne has been giving millions of readers and listeners spiritual advice, psychic predictions, inspiration, and emotional connections to a world on "the other side." Now, in this fascinating A-Z compendium, Browne delivers to her fans a complete guide to all things paranormal, ...and much more, in this easy-to-use reference that helps readers to understand the phenomenon of the other side.',
 '#1 New York Times bestselling author and world-renowned psychic Sylvia Browne offers a startling and revealing look into the world of dreams, illuminates a path to the beauty and truth that resides within everyone, and gives readers the knowledge to use their dreams to contact the world beyond.',
 'You’ll find a new level of comfort, safety, and clarity as you listen to these four uniquely powerful meditations from world-renowned psychic and best-selling author Sylvia Browne. Discover that angels and guides are real, and that they’re attending to you at all times. With these healing meditations—featuring one that came to Sylvia in a vision and has since transformed the lives of thousands—you’ll overcome negativity and pain, reunite with lost loved ones, and feel the energy and embrace of the Divine.As Sylvia teaches, angels serve to protect you; guides steer you in the right direction; and God, as your constant and eternal companion, loves you unconditionally and forever. In these personal sessions, Sylvia encourages you to call on your Divine helpers to help you eradicate your fears, phobias, and insecurities—the result being that you feel better than you ever have before!',
 'In this unique CD program, world-renowned psychic Sylvia Browne dispels the popular myths about angels, spirit guides, and ghosts. With her trademark candor, she explains that you can communicate with your angels and guides, and that they’re here to help you along your journey. In addition, she covers topics from forgiveness to reincarnation, shares some of her personal experiences with these celestial beings, and provides helpful tips on effective prayer.Sylvia also imparts methods to protect yourself from a psychic attack and determine whether your loved ones are sending you messages from the Other Side. Then, using a healing meditation, she shows you how you can unite with your angels and spirit guides whenever you choose to do so. In closing, Sylvia uses her abilities to answer audience questions and shed light on what really happens when we leave this plane of existence',
 'The New York Times– bestselling author and psychic Sylvia Browne and her son take readers on an insightful journey into the natural, spiritual, and mysterious world of animals and animal spirits. Questions such as Do animals have souls? Are animals psychic? and Do animals have a sixth sense? are discussed with examples drawn from real-life experiences. Both pets and animals in the wild are covered. Information is also provided about animal spirit guides, spiritual connection with pets, and explanations for why some animals have the ability to sense things before they happen.',
 "The New York Times–bestselling author and psychic Sylvia Browne and her son explain for pet owners of all ages what animals experience when their life on earth is over and what is waiting for them when they return home to the other side. Popular questions such as Does my pet miss me? Did he know I loved him? Can he hear me when I talk to him? Can he come back to visit me? and How will I be able to find my pet when I go home? are answered. The story begins when the spirit of Browne's dog, Jolie, leaves her body and goes home to live on the other side. Jolie runs, jumps, and plays with her eternal friends all around the world, devoid of the pain and suffering she was experiencing on earth. This is a comforting account of a pet's journey through one life and on to the next that explains how animals enjoy eternal happiness right alongside the people who love them.",
 "World-renowned psychic and bestselling author of End of Days \xa0Sylvia Browne turns her psychic wisdom to the puzzling, often contradictory predictions proposed by major historical and contemporary figures, ranging from Biblical prophets, to Nostradamus, to President George Washington, to NASA scientists.Sylvia Browne, the psychic who offered eerily accurate predictions of our current days, examines what the future holds for us in this guide to the most famous—and notorious—prophetic voices throughout the ages. Browne offers a clear and fascinating vision of the world as it will be from five years into the future to five hundred, with a startling and revealing look into the future of our nation and our world—and a beacon of hope and inspiration in these uncertain times.“I've personally witnessed Sylvia Browne bring closure to distraught families, help the police close cases, and open people’s hearts to help them see the good within themselves.”—Montel Williams",
 'This enlightening work by renowned psychic Sylvia Browne contains the Gnostic tenets of her church, the Society of Novus Spiritus, and is a map of our charts regardless of what spiritual path we follow .It has taken many years of research to put together what at first seems simple tenets to follow, but in going deeper, this book carries within it the very heart of humankind’s search for our own spirituality. Sylvia has also included many details from her own personal journey, which she feels is comparable to the quest that each of us follows to find our own God-center. As we travel this road, we can realize that long-forgotten, yet simple and truthful goal of viewing our life on Earth as our path to God.',
 "The one expert millions of readers have learned to trust, one of the few psychics instantly recognizable to television viewers, Sylvia Browne is back. She has proven herself, in her fifty years of working as a medium, to be the reigning queen of psychic phenomena. Here is an insightful look at how much of one's present life is informed by one's past lives, and how many health and relationship problems have their roots in unresolved past lives. From unexplained illnesses to bizarre phobias, from irrational anxieties and fears to the choice of partners, each can be traced back to past lives. Even birthmarks and recurring dreams are signs of issues from past lives. Sylvia helps readers recognize where their deep-rooted problems, fears, and hang-ups all began-and how to ultimately resolve them.",
 'For those of us who have always been fascinated by the unexplained—or inadequately explained—secrets and mysteries of this world, Sylvia Browne now brings her great insight. Using a combination of information from her spirit guide Francine as well as her own incredible psychic powers, Sylvia augments current scientific research to provide us with detailed explanations about seeming inexplicable concepts. From the Great Pyramid to Stonehenge, Sylvia reveals amazing facts about some of the world’s most mysterious sites. The truth behind sacred and controversial objects such as the Shroud of Turin and the Holy Grail are brought to light; and fascinating and mystifying topics such as crop circles, the Lost Continent of Atlantis, UFOs, Easter Island, and much more are examined and clarified. Sylvia tears away the obscure and timeworn explanations that hide the underlying truths about these fascinating subjects.',
 'Do angels really exist? Can we call upon them when we need them? What do they look like? Why are they here? With more than 60 years experience as a psychic - 20 of which have been spent studying angels - the author answers these and other often-asked questions.',
 'This very special gift set includes the three books that comprise Sylvia Browne’s Journey of the Soul Book 1 God, Creation, and Tools for Life Does God exist? Was the world created, or did it evolve? Where am I in the big picture of the universe? Most people have asked these questions but have no clear answers. However, Sylvia does, and in this fascinating book, she shares her 40 years of investigation into these issues. Drawing from thousands of research sessions with Francine, her spirit guide, along with her own understanding of a number of riveting topics that are pertinent to humanity as a whole, you will have access to information that is mentally profound, spiritually moving, and eminently logical. Francine, who resides on the Other Side, lives within the presence of God and has access to a wealth of knowledge about the nature of creation. Sylvia, then, becomes the human voice for Francine and is able to share the fruits of her wisdom. We are assured that God will respond to all questions—our job is to ask the right questions and be receptive to the answers we receive. In so doing, we gain valuable tools for life! Book 2 Soul’s Perfection Sylvia and her guides help solve a great mystery in this fascinating book—namely, what is the meaning of life? Most human beings—and many teachers and great scholars— have pondered this question over the years, but there has never been a truly definitive answer. This leaves most of us with a feeling of being incomplete in some way. Here, Sylvia and her guides take you to that place within you where you can achieve a sense of intellectual and spiritual fulfillment. They explain that we are here to perfect our souls by absorbing God’s knowledge. We are the experiencing side of God, where God is the primary intellect of creation. Soul’s Perfection takes you through the complete scope of your soul’s journey, from planning each incarnation on the Other Side to making life meaningful here on Earth. If you wish to stand proudly before God some day, then the concepts discussed here will bring you wisdom, depth, and spiritual insight. Book 3 The Nature of Good and Evil We constantly see the "senseless violence" in our world, and it begs the "How can an all-loving God allow this to exist?" Indeed, many people simply reject any notion of God for this very reason. This third book in Sylvia’s Journey of the Soul series gives you the philosophical framework to understand the nature of good and evil—and the role of God in the big picture. When you see how evil originated and why it thrives in our world, you’re more prepared to face it and overcome it. Sylvia points out that you need not fear "evil spirits" or "curses"—which are merely stories bred from ignorance. And how would you like to serve as one of God’s warriors of Light? Sylvia explains how to enlist! By combining her philosophical and theological views, Sylvia creates a spiritual umbrella that rises above traditional religion. All paths that lead to knowing God have merit—Sylvia simply invites you to know Him/Her in your own way, free of dogma and fear. Millions of people have witnessed Sylvia Browne’s incredible psychic powers on TV shows such as Montel, Larry King Live, Entertainment Tonight, and Unsolved Mysteries; and she has been profiled in Cosmopolitan, People magazine, and other national media. Her on-target psychic readings have helped police solve crimes, and she astounds audiences wherever she appears. Sylvia is the author of numerous books and audios; is the president of the Sylvia Browne Corporation; and is the founder of her church, the Society of Novus Spiritus, located in Campbell, California.',
 'This unique program involves an eight-step process that will help you realize your essence, identify your patterns, utilize past-life memories to your advantage, become more psychic, develop spiritual wealth, find the right relationships, deal with the death of loved ones and cope with divorce, and maintain a state of wellness. 100,000 first printing.',
 'Have you ever wondered why some relationships are wonderful and others are just catastrophic and tragic? Why do we get along with some people and with others just seem to constantly engage in bitter fighting? In this fascinating and helpful book, internationally renowned psychic Sylvia Browne examines why we form our relationships with certain individuals . . . for better or for worse. From the lifelong connection of a loving marriage to the short and bitter agony of a brief encounter leading to divorce and heartache, she reveals why we have joyful and happy relationships on the one hand and chaotic, hateful and painful ones on the other.Sylvia takes us on a remarkable excursion that covers all the different types of relationships we’ll encounter in life. From our childhood experiences to our golden years, she helps us see why we form both good and bad unions, and she also explores how our themes and charts of life can interact with others in both positive and negative ways—creating either lifelong love or friendship or a situation doomed for disaster. Sylvia enables us to come to a true understanding of why we have certain compulsions and attractions for some people while being totally repulsed by others. By utilizing Sylvia’s marvelous insights, we can all learn how to cultivate our relationships (and sift the wheat from the chaff) in order to live a happier and more fulfilling life.',
 'Sylvia Browne, in her own indomitable style, again defies convention in this uniquely informative compilation of diligently researched facts and personal accounts about the premise of a female divinity—namely, the Mother God (also known as the feminine principle). Spanning time from the earliest beginnings of humankind, when the time of the “Goddess” was at its peak, to the current era, with its myriad beliefs and religions, Sylvia takes us on a journey of discovery, where she discusses the suppression of the “Mother Goddess” by the male-dominated politics of modern-day religious dogma. Using a combination of historical data and poignant and heartwarming stories revealing the power and miracles attributed to the Mother God, Sylvia leads us from the question of “Does She exist” to the logical, fact-based conclusion that She does . . . and then shows us how to call upon Her to help us in our everyday lives.',
 'Nabbing Maxine Nowicki, thief and extortionist, would be the answer to Stephanie’s prayers and monetary woes. The only trouble is that Maxine is no where to be found, and her friends have been mysteriously turning up dead. To make matters worse, Stephanie’s arch nemesis since grade school is also looking for Nowicki, hoping to cash in first.Stephanie’s mentor and tormentor, Ranger, needs her. Vice cop Joe Morelli has invited her to move in… temporarily. And Stephanie’s Grandma Mazur, sidekick, Lula, and a six-foot-tall transvestite rock musician want to take Stephanie to Atlantic City. One thing is for certain, no good can come from any of it.',
 "Stephanie Plum has a whole lot of trouble on her doorstep.Her Uncle Fred has disappeared and Grandma Mazur is convinced he's been abducted by aliens.Meanwhile, Cousin Vinnie has asked her to bring in the vertically challenged Randy Briggs who's jumped bail. But instead of coming quietly, he has taken up residence in Stephanie's closet. The mysterious man called Bunchy is trailing Stephanie in the hope of tracking down Fred. And Benito Ramirez is back from jail, quoting Scripture and vowing to introduce Stephanie to God - face to face.Thankfully Joe Morelli, the irresistible cop, is still around to give her the odd sleepless night - though now he faces tough competition from the enigmatic Ranger...",
 "Also see: Alternate Cover Editions for this ISBN [ACE]  \nACE #1\nBLOWN UPAll New Jersey bounty hunter Stephanie Plum has to do is bring in semi-retired bail jumper Eddie DeChooch. For an old man he's still got a knack for slipping out of sight--and raising hell. How else can Stephanie explain the bullet-riddled corpse in Eddie's garden? Who else would have a clue as to why two of Stephanie's friends suddenly vanished? For answers Stephanie has the devil to pay: her mentor, Ranger. The deal? He'll give Stephanie all the help she needs--if she gives him everything he wants...MESSED UPAs if things weren't complicated enough, Stephanie's just discovered her Grandma Mazur's own unmentionable alliance with Eddie. Add a series of unnerving break-ins, not to mention the bombshell revelation leveled by Stephanie's estranged sister, and Stephanie's ready for some good news. Unfortunately, a marriage proposal from Joe Morelli, the love of her life, isn't quite cutting it. And now--murder, a randy paramour, a wily mobster, death threats, extortion, and a triple kidnapping aside--Stephanie's really got the urge to run for her life...~",
 "Fugitive Apprehension Agent Stephanie Plum has a big problem on her hands: Seven-year-old Annie Soder and her mother, Evelyn, have disappeared.Evelyn's estranged husband, Steven, a shady owner of a seedy bar, is not at all happy. During the divorce proceedings, he and Evelyn signed a child custody bond, and Steven is demanding the money guaranteed by the bond to find Annie. The money was secured by a mortgage on Evelyn's grandmother's house, and the True Blue Bonds Bail Agency wants to take possession of the house.Finding a kidnapped child is not an assignment for a bounty hunter. But Evelyn's grandmother lives next door to Stephanie's parents, and Stephanie's mother and grandmother are not about to see their neighbor lose her house because of abduction.Even though Stephanie's plate is full with miscreants who missed their court dates, including old nemesis and violent drunk Andy Bender and an elusive little old lady accused of grand theft auto, she can't disappoint Grandma Mazur! So she follows the trail left by Annie and Evelyn-- and finds a lot more than she bargained for. Steven is somehow linked with a very scary Eddie Abruzzi. Trenton cop and on-again, off-again fiance Joe Morelli and Stephanie's mentor and tormentor, Ranger, warn Stephanie about Abruzzi, but it's Abruzzi's eyes and mannerisms that frighten Stephanie the most. Stephanie needs Ranger's savvy and expertise, and she's willing to accept his help to find Annie even though it might mean becoming too involved with Ranger.Stephanie, Ranger, Lula (who's not going to miss riding with Ranger), and Evelyn's lawyer/laundromat manager set out to find Annie. The search turns out to be a race among Stephanie's posse, the True Blue Bonds' agent, a Rangerette known as Jeanne Ellen Burrows, and the Abruzzi crew. Not to mention the fact that there's a killer rabbit on the loose!Strap on your helmet and get ready for the ride of your life. Hard Eight. The world of Plum has never been wilder.",
 "This one's double the fun!Bounty hunter Stephanie Plum is still learning the ropes at her cousin Vinnie's bail bond office, so when she sets out on the trail of Kenny Mancuso - a suspiciously wealthy, working class Trenton boy who has just shot his best friend - the stakes are higher than ever. That Mancuso is distantly related to vice cop Joe Morelli - who is trying to beat Stephanie to the punch - only makes the hunt more thrilling...Taking pointers from her bounty hunter pal, Ranger, and using her pistol packing Grandma Mazur as a decoy, Stephanie is soon closing in on her mark. But Morelli and his libido are worthy foes. And a more sinister kind of enemy has made his first move... and his next move might be Stephanie's last.",
 'For this novel, Scott moved far away from the setting of his own turbulent time. He went back to the late 12th century, and to England rather than the Scottish settings of all his previous novels. He connected his writing Ivanhoe with his concerns about contemporary events.Scott drew together the apparently opposing themes of historical reality and chivalric romance, social realism and high adventure, past and present.',
 'To this landmark biography of our first president, Joseph J. Ellis brings the exacting scholarship, shrewd analysis, and lyric prose that have made him one of the premier historians of the Revolutionary era. Training his lens on a figure who sometimes seems as remote as his effigy on Mount Rushmore, Ellis assesses George Washington as a military and political leader and a man whose “statue-like solidity” concealed volcanic energies and emotions.Here is the impetuous young officer whose miraculous survival in combat half-convinced him that he could not be killed. Here is the free-spending landowner whose debts to English merchants instilled him with a prickly resentment of imperial power. We see the general who lost more battles than he won and the reluctant president who tried to float above the partisan feuding of his cabinet. His Excellency is a magnificent work, indispensable to an understanding not only of its subject but also of the nation he brought into being.',
 "The Bell Jar chronicles the crack-up of Esther Greenwood: brilliant, beautiful, enormously talented, and successful, but slowly going under—maybe for the last time. Sylvia Plath masterfully draws the reader into Esther's breakdown with such intensity that Esther's insanity becomes completely real and even rational, as probable and accessible an experience as going to the movies. Such deep penetration into the dark and harrowing corners of the psyche is an extraordinary accomplishment and has made The Bell Jar a haunting American classic.",
 "Soon after relocating to Charleston, S.C., to launch a private forensics lab, Scarpetta is asked to consult on the murder of U.S. tennis star Drew Martin, whose mutilated body was found in Rome. Contradictory evidence leaves Scarpetta, the Italian carabinieri and Scarpetta's lover, forensic psychologist Benton Wesley, stumped. But when she discovers unsettling connections between Martin's murder, the body of an unidentified South Carolina boy and her old nemesis, the maniacal psychiatrist Dr. Marilyn Self, Scarpetta encounters a killer as deadly as any she's ever faced.",
 "Scarpetta, now freelancing with the National Forensic Academy in Florida, digs into a case more bizarre than any she has ever faced, one that has produced not only unusual physical evidence, but also tantalizing clues about the inner workings of an extremely cunning and criminal mind.She and her team --- Pete Marino, Benton Wesley, and her niece, Lucy --- track the odd connections between several horrific crimes and the people who are the likely suspects. As one psychopath, safely behind bars and the subject of a classified scientific study at a Harvard-affiliated psychiatric hospital, teases Scarpetta with tips that could be fact --- or fantasy --- the number of killers on the loose seems to multiply. Are these events related or merely random? And what can the study of one man's brain tell them about the methods of a psychopath still lurking in the shadows?",
 'Four women with nothing in common, united only in death. Four brutalized victims of a brilliant monster - a "Mr. Nobody", moving undetected through a paralyzed city, leaving behind a gruesome trail of carnage . . . but few clues. With skilled hands, an unerring eye, and the latest advances in forensic research, an unrelenting female medical examiner - Kay Scarpetta - is determined to unmask a maniac. But someone is trying to sabotage Kay\'s investigation from the inside. And worse yet, someone wants her dead . . .',
 "Now updated with new material that brings the killer's picture into clearer focus.In the fall of 1888, all of London was held in the grip of unspeakable terror.\xa0 An elusive madman calling himself Jack the Ripper was brutally butchering women in the slums of London’s East End.\xa0 Police seemed powerless to stop the killer, who delighted in taunting them and whose crimes were clearly escalating in violence from victim to victim.\xa0 And then the Ripper’s violent spree seemingly ended as abruptly as it had begun.\xa0 He had struck out of nowhere and then vanished from the scene.\xa0 Decades passed, then fifty years, then a hundred, and the Ripper’s bloody sexual crimes became anemic and impotent fodder for puzzles, mystery weekends, crime conventions, and so-called “Ripper Walks” that end with pints of ale in the pubs of Whitechapel.\xa0 But to number-one New York Times bestselling novelist Patricia Cornwell, the Ripper murders are not cute little mysteries to be transformed into parlor games or movies but rather a series of terrible crimes that no one should get away with, even after death.\xa0 Now Cornwell applies her trademark skills for meticulous research and scientific expertise to dig deeper into the Ripper case than any detective before her—and reveal the true identity of this fabled Victorian killer.In Portrait of a Killer: Jack the Ripper, Case Closed, Cornwell combines the rigorous discipline of twenty-first century police investigation with forensic techniques undreamed of during the late Victorian era to solve one of the most infamous and difficult serial murder cases in history.\xa0 Drawing on unparalleled access to original Ripper evidence, documents, and records, as well as archival, academic, and law-enforcement resources, FBI profilers, and top forensic scientists, Cornwell reveals that Jack the Ripper was none other than a respected painter of his day, an artist now collected by some of the world’s finest museums: Walter Richard Sickert.It has been said of Cornwell that no one depicts the human capability for evil better than she.\xa0 \xa0Adding layer after layer of circumstantial evidence to the physical evidence discovered by modern forensic science and expert minds, Cornwell shows that Sickert, who died peacefully in his bed in 1942, at the age of 81, was not only one of Great Britain’s greatest painters but also a serial killer, a damaged diabolical man driven by megalomania and hate.\xa0 She exposes Sickert as the author of the infamous Ripper letters that were written to the Metropolitan Police and the press.\xa0 Her detailed analysis of his paintings shows that his art continually depicted his horrific mutilation of his victims, and her examination of this man’s birth defects, the consequent genital surgical interventions, and their effects on his upbringing present a casebook example of how a psychopathic killer is created.New information and startling revelations detailed in Portrait of a Killer include:- How a year-long battery of more than 100 DNA tests—on samples drawn by Cornwell’s forensics team in September 2001 from original Ripper letters and Sickert documents—yielded the first shadows of the 75- to 114 year-old genetic evid...",
 "The Body Farm - a research institute that tests the decomposition of corpses. Black Mountain, North Carolina: a sleepy little town where the local police deal with one homicide a year, if they're unlucky, and where people are still getting used to the idea of locking their doors at night. But violent death is no respecter of venue, and the discovery of the corpse of an 11-year-old girl sends shock waves through the community. Dr Kay Scarpetta, Chief medical Examiner on a similar case in Virginia, is called in to apply her forensic skills to this latest atrocity, but the apparent simplicity of the case proves something of a poisoned chalice - until Scarpetta finds enlightenment through the curious pathologists' playground known as the Body Farm.From Author’s Website",
 "It is New Year's Eve, the last day of Virginia's bloodiest year since the Civil War. Dr. Kay Scarpetta plunges into the murky depths of a ship graveyard to recover the very human remains of Ted Eddings, an investigative reporter. What kind of story was Eddings chasing below the icy surface of the Elizabeth River? And why did Scarpetta receive a phone call from someone reporting the death before the police were notified? She soon discovers that Eddings' murder is merely the first layer of something much deeper --- a labyrinthine conspiracy that will put all of her criminal and forensic knowledge to the test like never before. For Scarpetts, the real challenge won't be cataloging the growing number of dead bodies, but preventing herself and those she loves from becoming the next victims.",
 'This is the story of Moses Herzog, a great sufferer, joker, mourner, and charmer. Although his life steadily disintegrates around him - he has failed as a writer and teacher, as a father, and has lost the affection of his wife to his best friend - Herzog sees himself as a survivor, both of his private disasters and those of the age. He writes unsent letters to friends and enemies, colleagues and famous people, revealing his wry perception of the world around him, and the innermost secrets of his heart.',
 'Villejeune, Florida. A secluded little town at the edge of a vast, eerie swamp. Far from prying eyes. Far from the laws of civilization. Here folks live by their own rules -- dark rites of altars and infants, candles and blood.Years ago the Andersons left town with a dream. Now they are back. To live out a nightmare. Something has been waiting for them. Something unspeakably evil. It feeds on the young and the innocent. And soon it will draw their teenage daughter into its unholy embrace....From the Paperback edition.',
 'Alternate cover edition for this ISBN can be found here.One hundred years ago in Port Arbello a pretty little girl began to scream. And struggle. And die. No one heard. No one saw. Just one man whose guilty heart burst in pain as he dashed himself to death in the sea. Now something peculiar is happening in Port Arbello. The children are disappearing, one by one. An evil history is repeating itself. And one strange, terrified child has ended her silence with a scream that began a hundred years ago.',
 'Alex Cross battles the most ruthless and powerful killer he has ever encountered - a predator known only as "the Wolf. "Alex Cross\'s first case since joining the FBI has his new colleagues stymied. Across the country, men and women are being kidnapped in broad daylight and then disappearing completely. These people are not being taken for ransom, Alex realizes. They are being bought and sold. And it looks as if a shadowy figure called the Wolf - a master criminal who has brought a new reign of terror to organize crime - is behind this business in which ordinary men and women are sold as slaves. Even as he admires the FBI\'s vast resources, Alex grows impatient with the Bureau\'s clumsiness and caution when it is time to move. A lone wolf himself, he has to go out on his own in order to track the Wolf and try to rescue some of the victims while they are still alive. As the case boils over, Alex is in hot water at home too. His ex-fiancee, Christine Johnson, comes back into his life - and not for the reasons Alex might have hoped.',
 "In The Four Agreements, don Miguel Ruiz reveals the source of self-limiting beliefs that rob us of joy and create needless suffering. Based on ancient Toltec wisdom, the Four Agreements offer a powerful code of conduct that can rapidly transform our lives to a new experience of freedom, true happiness, and love. The Four Agreements are: Be Impeccable With Your Word, Don't Take Anything Personally, Don't Make Assumptions, Always Do Your Best.",
 'Now in paperback comes the sexy, funny, and page-turning bestseller from the author of "Sex and the City. 4 Blondes" brings together the stories of four modern women to render a vivid portrait of New York at the millennium.',
 'In a way, Candace Bushnell\'s Lipstick Jungle picks up where her career-defining book Sex and the City left off, in the money-soaked, power-hungry, beauty-obsessed jungle that is New York City. This time around, the ladies are a bit older, a lot richer, but not particularly wiser nor more endearing than Bushnell\'s earlier heroines.  Lipstick Jungle weaves the stories of Nico O\'Neilly, Wendy Healy, and Victory Ford, numbers 8, 12, and 17 on The New York Post\'s list of "New York\'s 50 Most Powerful Women." But this is 21st Century New York, and to get ahead and stay ahead, these women will do anything, including jeopardizing their personal and professional relationships. Take for example Nico, editor-in-chief of Bonfire magazine, who betrays her boss to rise to the top of the entire magazine division at media mega-giant Splatch-Verner. As president of Paradour Pictures, Wendy may be poised to win an Oscar for her 10-year labor-of-love, Ragged Pilgrims, but her marriage is in shambles and her children care more about a $50,000 pony than their mother. And for single, 43-year-old fashion designer Victory, pleasing tough critics may be more important than ever finding the real relationship she\'s convinced herself she doesn\'t need. This racy tale of women behaving badly manages to shrewdly flip the tables to show us how gender roles are essentially interchangeable, given the right circumstances. Whether that was Bushnell\'s intent when crafting this wicked tale is another story. --Gisele Toueg   Q: Were Victory, Wendy, and Nico inspired by any real-life women? A: The characters and situations in Lipstick Jungle were inspired by the real-life women I know and admire in New York City. As with Sex and the City, I spent a lot of time thinking about where women were today, and what I noticed was that there was a fascinating group of women in their forties who were leading non-traditional lives. They were highly successful and motivated, they often had children, and usually were the providers for their families, and yet, they didn\'t fit the old stereotype of the witchy businesswoman. Indeed, so many of these women were the girls next door, the girls who reminded me of my best friends when I was a kid and we used to fantasize about the great things we were going to do in life. Like the women in Sex and the City, the Lipstick Jungle women are charting new lives for themselves, redefining what it means to be a woman when you really are as powerful, or more powerful, than a man. Of course, you probably want specifics, so I will say that there was a moment when it all clicked. Tina Brown used to write a terrific column in the Washington Post, and one of the things she was always mentioning was how there was a group of powerful women who were meeting and lunching at Michael\'s restaurant. They\'d been working for over twenty years, their children were now in their early teens and didn\'t need them every minute, and now, in their forties or early fifties, they had time to strive for new career goals and to spend more time with their girlfriends. I thought, "Aha--that\'s the Lipstick Jungle."  Q: What kind of research did you do to cover fashion, film, and publishing in one book? A: To research fashion, film and publishing, I did what I always do--I talked to my girlfriends! Of course, it helps that I\'ve worked in magazine publishing and have had my share of experience with Hollywood. I\'m also lucky enough to have a couple of girlfriends who are top designers, who offered to help me out with the specific details. I still remember the afternoon when one of my girlfriends and I sat down to talk--she was over eight months pregnant, and I was worried that we were going to have to run to the hospital!',
 "It's Easter in Reading—a bad time for eggs—and no one can remember the last sunny day. Ovoid D-class nursery celebrity Humpty Stuyvesant Van Dumpty III, minor baronet, ex-convict, and former millionaire philanthropist, is found shattered to death beneath a wall in a shabby area of town. All the evidence points to his ex-wife, who has conveniently shot herself. But Detective Inspector Jack Spratt and his assistant Mary Mary remain unconvinced, a sentiment not shared with their superiors at the Reading Police Department, who are still smarting over their failure to convict the Three Pigs of murdering Mr. Wolff. Before long Jack and Mary find themselves grappling with a sinister plot involving cross-border money laundering, bullion smuggling, problems with beanstalks, titans seeking asylum, and the cut and thrust world of international chiropody. And on top of all that, the JellyMan is coming to town . . .",
 'This delightful comedy of manners and morals, money, marriage, and murder follows smart, sexy, and impeccably dressed American Isabel Walker as she lands in Paris to visit her stepsister Roxy, a poet whose marriage to an aristocratic French painter has assured her a coveted place in Parisian society...until her husband leaves her for the wife of an American lawyer.\xa0 Could "le divorce" be far behind?\xa0 Can irrepressible Isabel keep her perspective (and her love life) intact as cultures and human passions collide?\xa0 "Social comedy at its best" (Los Angeles Times Book Review), Le Divorce is Diane Johnson at her most scintillating and sublime.',
 'This Everyman’s Library edition–containing in one volume all three cantos, Inferno, Purgatorio, and Paradiso–includes an introduction by Nobel Prize—winning poet Eugenio Montale, a chronology, notes, and a bibliography. Also included are forty-two drawings selected from Botticelli’s marvelous late-fifteenth-century series of illustrations.Translated in this edition by Allen Mandelbaum, The Divine Comedy begins in a shadowed forest on Good Friday in the year 1300. It proceeds on a journey that, in its intense recreation of the depths and the heights of human experience, has become the key with which Western civilization has sought to unlock the mystery of its own identity. Mandelbaum’s astonishingly Dantean translation, which captures so much of the life of the original, renders whole for us the masterpiece of that genius whom our greatest poets have recognized as a central model for all poets.',
 "In Boy, Roald Dahl recounts his days as a child growing up in England. From his years as a prankster at boarding school to his envious position as a chocolate tester for Cadbury's, Roald Dahl's boyhood was as full of excitement and the unexpected as are his world-famous, best-selling books. Packed with anecdotes—some funny, some painful, all interesting—this is a book that's sure to please.",
 "The Enormous Crocodile is incredibly hungry-and incredibly greedy. His favorite meal is a plump, juicy little child, and he intends to gobble up as many of them as he can! But when the other animals in the jungle join together to put an end to his nasty schemes, the Enormous Crocodile learns a lesson he won't soon forget. Dahl's wicked humor is as delightful as ever in this new, larger edition of a hilarious favorite.  Illustrated by Quentin Blake.",
 "What happens when the hunter becomes the hunted?To the Gregg family, hunting is just plain fun. To the girl who lives next door, it's just plain horrible. She tries to be polite. She tries to talk them out of it, but the Greggs only laugh at her. Then one day the Greggs go too far, and the little girl turns her Magic Finger on them. When she's very, very angry, the little girl's Magic Finger takes over. She really can’t control it, and now it's turned the Greggs into birds! Before they know it, the Greggs are living in a nest, and that's just the beginning of their problems…",
 'Seven stories of fantasy and fun by the fantastic Roald Dahl.Henry Sugar is a man with an amazing talent: he can see with his eyes closed. But will he use his power for good or personal gain? Find out in "The Wonderful Story of Henry Sugar," one of seven short stories in this extraordinary collection.A clever mix of fact and fiction, this volume also includes the tale of a boy who can understand animals, the magical true story of Mildenhall treasure, and Roald Dahl\'s own account of how he became a writer (with a wealth of tips for aspiring authors).Included in this volume:- The Boy Who Talked With Animals - in which a stranded sea turtle and a small boy have more in common than meets the eye.- The Hitchhiker - proves that in a pinch a professional pickpocket can be the perfect pal.- The Mildenhall Treasure - a true tale of fortune found and an opportunity lost.- The Swan - a fantastic story about youthful misdeeds.- The Wonderful Story of Henry Sugar - in which a modern-day Robin Hood brings joy to the hearts of orphans - and fear to the souls of casino owners around the world.- Lucky Break: How I Became a Writer - an account in Dahl\'s own words on how he came to be.- A Piece of Cake: First Story - 1942 - Dahl\'s first story, which tells of how he was shot down over the Libyan Desert.',
 "From the bestselling author of Charlie and the Chocolate Factory and The BFG comes an autobiographical account of his exploits as a World War II pilot!'Going Solo' tells of how, when he grew up, Roald Dahl left England for Africa and a series of daring and dangerous adventures began. From tales of plane crashes to surviving snake bites, read all about Roald Dahl's life before becoming the world's number-one storyteller.This book is full of exciting and strange things—some funny, some frightening, all true.Here is the action-packed sequel to 'Boy' (1984), a tale of Dahl's exploits as a World War II pilot. Told with the same irresistible appeal that has made Roald Dahl one the world's best-loved writers, Going Solo brings you directly into the action and into the mind of this fascinating man.\nRoald Dahl\n was a spy, ace fighter-pilot, chocolate historian, and medical inventor. He was also the author of Charlie and the Chocolate Factory, Matilda, The BFG and many more brilliant stories. He remains the World's No. 1 Storyteller.",
 "Last seen flying through the sky in a giant elevator in Charlie and the Chocolate Factory, Charlie Bucket's back for another adventure. When the giant elevator picks up speed, Charlie, Willy Wonka, and the gang are sent hurtling through space and time. Visiting the world’' first space hotel, battling the dreaded Vermicious Knids, and saving the world are only a few stops along this remarkable, intergalactic joyride.",
 "James Henry Trotter lives with two ghastly hags. Aunt Sponge is enormously fat with a face that looks boiled and Aunt Spiker is bony and screeching. He's very lonely until one day something peculiar happens. . . At the end of the garden a peach starts to grow and GROW AND GROW. Inside that peach are seven very unusual insects - all waiting to take James on a magical adventure. But where will they go in their GIANT PEACH, and what will happen to the horrible aunts if they stand in their way? There's only one way to find out . . .",
 'Danny’s life seems perfect: his home is a gypsy caravan, he’s the youngest car mechanic around, and his best friend is his dad, who never runs out of wonderful stories to tell. And when Danny discovers his father’s secret, he’s off on the adventure of a lifetime. Here’s Roald Dahl’s famous story about a 9-year-old boy, his dad, and a daring and hilarious pheasant-snatching expedition. Just as important, it’s the story of the love between a boy and his father who, in Danny’s own words, is “the most marvelous and exciting father a boy ever had.”',
 'Uncle Oswald is, if you remember, the greatest rogue, bounder, connoisseur, bon vivant and fornicator of all time. Here, many famous names are mentioned and there is obviously a grave risk that families and friends are going to take offence... Uncle Oswald discovers the electrifying properties of the Sudanese Blister Beetle and the gorgeous Yasmin Howcomely, a girl absolutely soaked in sex, and sets about seducing all the great men of the time for his own wicked, irreverent reasons.',
 'Fantastic Mr. Fox is on the run! The three meanest farmers around are out to get him. Fat Boggis, squat Bunce, and skinny Bean have joined forces, and they have Mr. Fox and his family surrounded. What they don’t know is that they’re not dealing with just any fox–Mr. Fox would never surrender. But only the most fantastic plan ever can save him now.',
 "Little Altars Everywhere is a national best-seller, a companion to Rebecca Wells' celebrated novel Divine Secrets of the Ya-Ya Sisterhood. Originally published in 1992, Little Altars introduces Sidda, Vivi, the rest of the spirited Walker clan, and the indomitable Ya-Yas.Told in alternating voices of Vivi and her husband, Big Shep, along with Sidda, her siblings Little Shep, Lulu, Baylor, and Cheney and Willetta — the black couple who impact the Walkers' lives in ways they never fully comprehend — Little Altars embraces nearly thirty years of life on the plantation in Thorton, Louisiana, where the cloying air of the bayou and a web of family secrets at once shelter, trap and define an utterly original community of souls.Who can resist such cadences of Sidda Walker and her flamboyant, secretive mother, ViVi? Here the young Sidda — a precocious reader and an eloquent observer of the fault lines that divide her family — leads us on a mischievous adventures at Our Lady of Divine Compassion parochial school and beyond. A Catholic girl of pristine manners, devotion, and provocative ideas, Sidda is the very essence of childhood joy and sorrow.In a series of luminous reminiscences, we also hear Little Shep's stories of his eccentric grandmother, Lulu's matter-of-fact account of her shoplifting skills, and Baylor's memories of Vivi and her friends, the Ya-Yas.Beneath the humor and tight-knit bonds of family and friendship lie the undercurrents of alcoholism, abuse, and violence. The overlapping recollections of how the Walkers' charming life uncoils to convey their heart-breaking confusion are oat once unsettling and familiar. Wells creates an unforgettable portrait of the eccentric cast of characters and exposes their poignant and funny attempts to keep reality at arm's length. Through our laughter we feel their inevitable pain, with a glimmer of hope for forgiveness and healing.An arresting combination of colloquialism, poetry, and grace, Little Altars Everywhere is an insightful, piercing and unflinching evocation of childhood, a loving tribute to the transformative power of faith, and a thoroughly fresh chronicle of a family that is as haunted as it is blessed.",
 "Alternate cover edition of ISBN 9781577314806.To make the journey into the Now we will need to leave our analytical mind and its false created self, the ego, behind. From the very first page of Eckhart Tolle's extraordinary book, we move rapidly into a significantly higher altitude where we breathe a lighter air. We become connected to the indestructible essence of our Being, “The eternal, ever present One Life beyond the myriad forms of life that are subject to birth and death.” Although the journey is challenging, Eckhart Tolle uses simple language and an easy question-and-answer format to guide us.A word-of-mouth phenomenon since its first publication, The Power of Now is one of those rare books with the power to create an experience in readers, one that can radically change their lives for the better.",
 'Eckhart Tolle is rapidly emerging as one of the world\'s most inspiring spiritual teachers, sharing the enlightenment he himself experienced after a startling personal transformation. His views go beyond any particular religion, doctrine, or guru. This book extracts the essence from his teachings in The Power of Now, showing us how to free ourselves from "enslavement to the mind." The aim is to be able to enter into and sustain an awakened state of consciousness throughout everyday life. Through meditations and simple techniques, Eckhart shows us how to quiet our thoughts, see the world in the present moment, and find a path to "a life of grace, ease, and lightness."',
 'In this exuberantly praised book — a collection of seven pieces on subjects ranging from television to tennis, from the Illinois State Fair to the films of David Lynch, from postmodern literary theory to the supposed fun of traveling aboard a Caribbean luxury cruiseliner — David Foster Wallace brings to nonfiction the same curiosity, hilarity, and exhilarating verbal facility that has delighted readers of his fiction, including the bestselling Infinite Jest.',
 'In the stories that make up Oblivion, David Foster Wallace joins the rawest, most naked humanity with the infinite involutions of self-consciousness—a combination that is dazzlingly, uniquely his. These are worlds undreamt-of by any other mind. Only David Foster Wallace could convey a father\'s desperate loneliness by way of his son\'s daydreaming through a teacher\'s homicidal breakdown ("The Soul Is Not a Smithy"). Or could explore the deepest and most hilarious aspects of creativity by delineating the office politics surrounding a magazine profile of an artist who produces miniature sculptures in an anatomically inconceivable way ("The Suffering Channel"). Or capture the ache of love\'s breakdown in the painfully polite apologies of a man who believes his wife is hallucinating the sound of his snoring ("Oblivion"). Each of these stories is a complete world, as fully imagined as most entire novels, at once preposterously surreal and painfully immediate. Oblivion is an arresting and hilarious creation from a writer "whose best work challenges and reinvents the art of fiction" (Atlanta Journal-Constitution).Mister squishy --The soul is not a smithy --Incarnations of burned children --Another pioneer --Good old neon --Philosophy and the mirror of nature --Oblivion --The suffering channel',
 'Published when Wallace was just twenty-four years old, The Broom of the System stunned critics and marked the emergence of an extraordinary new talent. At the center of this outlandishly funny, fiercely intelligent novel is the bewitching heroine, Lenore Stonecipher Beadsman. The year is 1990 and the place is a slightly altered Cleveland, Ohio. Lenore’s great-grandmother has disappeared with twenty-five other inmates of the Shaker Heights Nursing Home. Her beau, and boss, Rick Vigorous, is insanely jealous, and her cockatiel, Vlad the Impaler, has suddenly started spouting a mixture of psycho-babble, Auden, and the King James Bible. Ingenious and entertaining, this debut from one of the most innovative writers of his generation brilliantly explores the paradoxes of language, storytelling, and reality.',
 'Do lobsters feel pain? Did Franz Kafka have a funny bone? What is John Updike\'s deal, anyway? And what happens when adult video starlets meet their fans in person? David Foster Wallace answers these questions and more in essays that are also enthralling narrative adventures. Whether covering the three-ring circus of a vicious presidential race, plunging into the wars between dictionary writers, or confronting the World\'s Largest Lobster Cooker at the annual Maine Lobster Festival, Wallace projects a quality of thought that is uniquely his and a voice as powerful and distinct as any in American letters.Contains: "Big Red Son," "Certainly the End of Something or Other, One Would Sort of Have to Think," "Some Remarks on Kafka\'s Funniness from Which Probably Not Enough Has Been Removed," "Authority and American Usage," "The View from Mrs. Thompson\'s," "How Tracy Austin Broke My Heart," "Up, Simba," "Consider the Lobster," "Joseph Frank\'s Dostoevsky" and "Host."',
 "In his startling and singular new short story collection, David Foster Wallace nudges at the boundaries of fiction with inimitable wit and seductive intelligence. Venturing inside minds and landscapes that are at once recognisable and utterly strange, these stories reaffirm Wallace's reputation as one of his generation's pre-eminent talents, expanding our ides and pleasures fiction can afford.Among the stories are 'The Depressed Person', a dazzling and blackly humorous portrayal of a woman's mental state; 'Adult World', which reveals a woman's agonised consideration of her confusing sexual relationship with her husband; and 'Brief Interviews with Hideous Men', a dark, hilarious series of portraits of men whose fear of women renders them grotesque. Wallace's stories present a world where the bizarre and the banal are interwoven and where hideous men appear in many different guises. Thought-provoking and playful, this collection confirms David Foster Wallace as one of the most imaginative young writers around. Wallace delights in leftfield observation, mining the ironic, the surprising and the illuminating from every situation. This collection will delight his growing number of fans, and provide a perfect introduction for new readers.",
 "A gargantuan, mind-altering tragi-comedy about the Pursuit of Happiness in America. Set in an addicts' halfway house and a tennis academy, and featuring the most endearingly screwed-up family to come along in recent fiction, Infinite Jest explores essential questions about what entertainment is and why it has come to so dominate our lives; about how our desire for entertainment affects our need to connect with other people; and about what the pleasures we choose say about who we are. Equal parts philosophical quest and screwball comedy, Infinite Jest bends every rule of fiction without sacrificing for a moment its own entertainment value. It is an exuberant, uniquely American exploration of the passions that make us human—and one of those rare books that renew the idea of what a novel can do.",
 'A gallery attendant at the Hermitage. A young jazz buff in Tokyo. A crooked British lawyer in Hong Kong. A disc jockey in Manhattan. A physicist in Ireland. An elderly woman running a tea shack in rural China. A cult-controlled terrorist in Okinawa. A musician in London. A transmigrating spirit in Mongolia. What is the common thread of coincidence or destiny that connects the lives of these nine souls in nine far-flung countries, stretching across the globe from east to west? What pattern do their linked fates form through time and space?A writer of pyrotechnic virtuosity and profound compassion, a mind to which nothing human is alien, David Mitchell spins genres, cultures, and ideas like gossamer threads around and through these nine linked stories. Many forces bind these lives, but at root all involve the same universal longing for connection and transcendence, an axis of commonality that leads in two directions—to creation and to destruction. In the end, as lives converge with a fearful symmetry, Ghostwritten comes full circle, to a point at which a familiar idea—that whether the planet is vast or small is merely a matter of perspective—strikes home with the force of a new revelation. It marks the debut novel of a writer with astonishing gifts.',
 'David Mitchell follows his eerily precocious, globe-striding first novel, Ghostwritten, with a work that is in its way even more ambitious. In outward form, number9dream is a Dickensian coming-of-age journey: Young dreamer Eiji Miyake, from remote rural Japan, thrust out on his own by his sister’s death and his mother’s breakdown, comes to Tokyo in pursuit of the father who abandoned him. Stumbling around this strange, awesome city, he trips over and crosses—through a hidden destiny or just monstrously bad luck—a number of its secret power centers. Suddenly, the riddle of his father’s identity becomes just one of the increasingly urgent questions Eiji must answer. Why is the line between the world of his experiences and the world of his dreams so blurry? Why do so many horrible things keep happening to him? What is it about the number 9? To answer these questions, and ultimately to come to terms with his inheritance, Eiji must somehow acquire an insight into the workings of history and fate that would be rare in anyone, much less in a boy from out of town with a price on his head and less than the cost of a Beatles disc to his name.',
 'Meet Stephanie Plum, a bounty hunter with attitude. In Stephanie’s opinion, toxic waste, rabid drivers, armed schizophrenics, and August heat, humidity, and hydrocarbons are all part of the great adventure of living in Jersey.She’s a product of the “burg,” a blue-collar pocket of Trenton where houses are attached and narrow, cars are American, windows are clean, and (God forbid you should be late) dinner is served at six.Out of work and out of money, Stephanie blackmails her bail-bondsman cousin Vinnie into giving her a try as an apprehension agent. Stephanie knows zilch about the job requirements, but she figures her new pal, el-primo bounty hunter Ranger, can teach her what it takes to catch a crook. Her first nail Joe Morelli, a former vice cop on the run from a charge of murder one. Morelli’s the inamorato who charmed Stephanie out of her virginity at age sixteen. There’s still powerful chemistry between them, so the chase should be interesting…and could also be extremely dangerous.',
 "Stephanie Plum, the brassy babe in the powder blue Buick is back and she's having a bad hair day -- for the whole month of January. She's been given the unpopular task of finding Mo Bedemier, Trenton's most beloved citizen, arrested for carrying concealed, gone no-show for his court appearance.And to make matters worse, she's got Lula, a former hooker turned file clerk -- now a wannabe bounty hunter -- at her side, sticking like glue. Lula's big and blonde and black and itching to get the chance to lock up a crook in the trunk of her car.Morelli, the New Jersey vice cop with the slow-burning smile that undermines a girl's strongest resolve is being polite. So what does this mean? Has he found a new love? Or is he manipulating Steph, using her in his police investigation, counting on her unmanageable curiosity and competitive Jersey attitude?Once again, the entire One for the Money crew is in action, including Ranger and Grandma Mazur, searching for Mo, tripping down a trail littered with dead drug dealers, leading Stephanie to suspect Mo has traded his ice-cream scoop for a vigilante gun.Cursed with a disastrous new hair color and an increasing sense that it's really time to get a new job, Stephanie spirals and tumbles through Three to Get Deadly with all the wisecracks and pace her fans have come to expect.",
 'Three Plums In One: One for the Money, Two for the Dough, Three to Get Deadly (Stephanie Plum Novels)',
 "Low-rent bounty hunter Stephanie Plum reaches depths of personal experience that other women detectives never quite do. In Hot Six, for example, a sequence of new and hideous cars bite the dust; she finds herself lumbered with a policeman's multiply incontinent dog; and she has several bad skin days. All this when she is trying to prove her distinctly more competent colleague and occasional boyfriend Ranger innocent of a mob hit; avoid the heavies trailing her in the hope of finding him; and cope with a wife-abusing bail defaulter with nasty habits, such as setting Stephanie on fire.",
 'BOOKER PRIZE WINNER • NATIONAL BESTSELLER • A\xa0sharp contemporary morality tale, cleverly disguised as a comic novel, Amsterdam is\xa0"a dark tour de force, perfectly fashioned" ( The New York Times ) f rom the bestselling author of Atonement.On a chilly February day, two old friends meet in the throng outside a London crematorium to pay their last respects to Molly Lane. Both Clive Linley and Vernon Halliday had been Molly\'s lovers in the days before they reached their current Clive is Britain\'s most successful modern composer, and Vernon is a newspaper editor. Gorgeous, feisty Molly had other lovers, too, notably Julian Garmony, Foreign Secretary, a notorious right-winger tipped to be the next prime minister. In the days that follow Molly\'s funeral, Clive and Vernon will make a pact with consequences that neither could have foreseen…Don’t miss Ian McEwan’s new novel, Lessons .',
 'Ian McEwan’s symphonic novel of love and war, childhood and class, guilt and forgiveness provides all the satisfaction of a brilliant narrative and the provocation we have come to expect from this master of English prose.On a hot summer day in 1935, thirteen-year-old Briony Tallis witnesses the flirtation between her older sister, Cecilia, and Robbie Turner, the son of a servant. But Briony’s incomplete grasp of adult motives and her precocious imagination bring about a crime that will change all their lives, a crime whose repercussions Atonement follows through the chaos and carnage of World War II and into the close of the twentieth century.',
 'Joe planned a postcard-perfect afternoon in the English countryside to celebrate his lover\'s return after 6 weeks in the States. The perfect day turns to nightmare however, when they are involved in freak ballooning accident in which a boy is saved but a man is killed. In itself, the accident would change the couple and the survivors\' lives, filling them with an uneasy combination of shame, happiness, and endless self-reproach. But fate has far more unpleasant things in store for Joe. Meeting the eye of fellow rescuer Jed Parry, for example, turns out to be a very bad move. For Jed is instantly obsessed, making the first of many calls to Joe and Clarissa\'s London flat that same night. Soon he\'s openly shadowing Joe and writing him endless letters. (One insane epistle begins, "I feel happiness running through me like an electrical current. I close my eyes and see you as you were last night in the rain, across the road from me, with the unspoken love between us as strong as steel cable.") Worst of all, Jed\'s version of love comes to seem a distortion of Joe\'s feelings for Clarissa.  Apart from the incessant stalking, it is the conditionals--the contingencies--that most frustrate Joe, a scientific journalist. If only he and Clarissa had gone straight home from the airport... If only the wind hadn\'t picked up... If only he had saved Jed\'s 29 messages in a single day... Ian McEwan has long been a poet of the arbitrary nightmare, his characters ineluctably swept up in others\' fantasies, skidding into deepening violence, and--worst of all--becoming strangers to those who love them. Even his prose itself is a masterful and methodical exercise in de-familiarisation. But Enduring Love and its underrated predecessor, Black Dogs, are also meditations on knowledge and perception as well as brilliant manipulations of our own expectations. By the novel\'s end, you will be surprisingly unafraid of hot-air balloons, but you won\'t be too keen on looking a stranger in the eye. --Alex Freeman',
 'As their holiday unfolds, Colin and Maria are locked into their own intimacy. They groom themselves meticulously, as though there waits someone who cares deeply about how they appear. Then they meet a man with a disturbing story to tell and become drawn into a fantasy of violence and obsession.',
 'Henri Charrière, called "Papillon," for the butterfly tattoo on his chest, was convicted in Paris in 1931 of a murder he did not commit. Sentenced to life imprisonment in the penal colony of French Guiana, he became obsessed with one goal: escape. After planning and executing a series of treacherous yet failed attempts over many years, he was eventually sent to the notorious prison, Devil\'s Island, a place from which no one had ever escaped . . . until Papillon. His flight to freedom remains one of the most incredible feats of human cunning, will, and endurance ever undertaken.Charrière\'s astonishing autobiography, Papillon, was published in France to instant acclaim in 1968, more than twenty years after his final escape. Since then, it has become a treasured classic -- the gripping, shocking, ultimately uplifting odyssey of an innocent man who simply would not be defeated.',
 "Maybe it was a grandparent, or a teacher or a colleague. Someone older, patient and wise, who understood you when you were young and searching, and gave you sound advice to help you make your way through it. For Mitch Albom, that person was Morrie Schwartz, his college professor from nearly twenty years ago.Maybe, like Mitch, you lost track of this mentor as you made your way, and the insights faded. Wouldn't you like to see that person again, ask the bigger questions that still haunt you? Mitch Albom had that second chance. He rediscovered Morrie in the last months of the older man's life. Knowing he was dying of ALS - or motor neurone disease - Mitch visited Morrie in his study every Tuesday, just as they used to back in college. Their rekindled relationship turned into one final 'class': lessons in how to live.",
 'Earthy, magical, and utterly charming, this tale of family life in turn-of-the-century Mexico became a best-selling phenomenon with its winning blend of poignant romance and bittersweet wit.The number one bestseller in Mexico and America for almost two years, and subsequently a bestseller around the world, Like Water For Chocolate is a romantic, poignant tale, touched with moments of magic, graphic earthiness, bittersweet wit - and recipes. A sumptuous feast of a novel, it relates the bizarre history of the all-female De La Garza family. Tita, the youngest daughter of the house, has been forbidden to marry, condemned by Mexican tradition to look after her mother until she dies. But Tita falls in love with Pedro, and he is seduced by the magical food she cooks. In desperation, Pedro marries her sister Rosaura so that he can stay close to her, so that Tita and Pedro are forced to circle each other in unconsummated passion. Only a freakish chain of tragedies, bad luck and fate finally reunite them against all the odds.',
 "The newest edition is here. Another alternate cover can be found here.Emma Woodhouse is one of Austen's most captivating and vivid characters. Beautiful, spoilt, vain and irrepressibly witty, Emma organizes the lives of the inhabitants of her sleepy little village and plays matchmaker with devastating effect.",
 "An alternate cover edition exists here.Sue Monk Kidd's phenomenal debut, The Secret Life of Bees, became a runaway bestseller that is still on the New York Times bestseller list more than two years after its paperback publication. Now, in her luminous new novel, Kidd has woven a transcendent tale that will thrill her legion of fans. Telling the story of Jessie Sullivan -- a love story between a woman and a monk, a woman and her husband, and ultimately a woman and her own soul -- Kidd charts a journey of awakening and self-discovery illuminated with a brilliance that only a writer of her ability could conjure.",
 "Botswana PI Precious Ramotswe investigates the alleged poisoning of the brother of an important government official, and the moral character of four beauty contestants. When her business has money trouble, and problems arise at at her reliable fiance Mr J.L.B. Matekoni's Speedy Motors, she finds he is more complicated then he seems.",
 'An alternative cover edition for this ISBN can be found here.Life is never without its problems. Will Precious Ramotswe’s delightfully cunning and profoundly moral methods save the day? Find out in this, the fourth volume in the No.1 Ladies Detective Agency series featuring Botswana\'s first and only lady detective.Now that The No. 1 Ladies’ Detective Agency (the only detective agency for ladies and others in Botswana) is established, its founder, Precious Ramotswe, can look upon her life with pride: she’s reached her late thirties ("the finest age to be"), has a house, two children, a good fiancé -- Mr. J. L. B. Matekoni -- and many satisfied customers. But life is never without its problems. It turns out that her adopted son is responsible for the dead hoopoe bird in the garden; her assistant, Mma Makutsi, wants a husband and needs help with her idea to open the Kalahari Typing School for Men; yet Mma Ramotswe’s sexist rival has no trouble opening his Satisfaction Guaranteed Detective Agency across town. Will Precious Ramotswe’s delightfully cunning and profoundly moral methods save the day? Follow the continuing story of Botswana’s first lady detective in the irresistible The Kalahari Typing School for Men.',
 "Librarian note: Older cover edition of 9780349116655.In 1999 The No. 1 Ladies' Detective Agency received two Booker Judges' Special Recommendations and was voted one of the ‘International Books of the Year and the Millennium' by the Times Literary Supplement. Tears of the Giraffe takes us further into the life of the engaging and sassy Precious Ramotswe, the owner and detective of Botswana's only Ladies' detective agency. Among her cases are wayward wives, unscrupulous maids and a challenge to resolve a mother's pain for her son, who is long lost on the African plains. Mma Ramotswe's own impending marriage to that most gentlemanly of men, Mr. J. L. B. Matekoni, the promotion of her secretary to the dizzy heights of Assistant Detective and new additions to the Matekoni family, all brew up the most humorous and charmingly entertaining of tales.",
 'Written in the eleventh century, this exquisite portrait of courtly life in medieval Japan is widely celebrated as the world’s first novel. Genji, the Shining Prince, is the son of an emperor. He is a passionate character whose tempestuous nature, family circumstances, love affairs, alliances, and shifting political fortunes form the core of this magnificent epic. Royall Tyler’s superior translation is detailed, poetic, and superbly true to the Japanese original while allowing the modern reader to appreciate it as a contemporary treasure. Supplemented with detailed notes, glossaries, character lists, and chronologies to help the reader navigate the multigenerational narrative, this comprehensive edition presents this ancient tale in the grand style that it deserves.',
 "Mma Ramotswe's normally unshakable composure is rattled when a visitor forces her to confront a secret from her past.In the newest addition to the universally beloved No. 1 Ladies’ Detective Agency series, the charming and ever-resourceful Precious Ramotswe finds herself overly beset by problems. She is already busier than usual at the detective agency when added to her concerns are a strange intruder in her house on Zebra Drive and the baffling appearance of a pumpkin. And then there is Mma Makutsi, who decides to treat herself to dance lessons, only to be partnered with a man who seems to have two left feet. Nor are things running quite as smoothly as they usually do at Tlokweng Road Speedy Motors. Mma Ramotswe’s husband, the estimable Mr. J.L.B. Matekoni, is overburdened with work even before one of his apprentices runs off with a wealthy woman. But what finally rattles Mma Ramotswe’s normally unshakable composure is a visitor who forces her to confront a secret from her past. . . . All this unfolds against the sunlit background of Mma Ramotswe’s beloved homeland, Botswana–a land of empty spaces, echoing skies, and an endless supply of soothing bush tea.",
 'THE NO. 1 LADIES’ DETECTIVE AGENCY - Book 8Fans around the world adore the bestselling No. 1 Ladies’ Detective Agency series, the basis of the HBO TV show, and its proprietor Precious Ramotswe, Botswana’s premier lady detective.\xa0 In this charming series, Mma\xa0 Ramotswe navigates her cases and her personal life with wisdom, and good humor—not to mention help from her loyal assistant, Grace Makutsi, and the occasional cup of tea.In the life of Precious Ramotswe–a woman duly proud of her fine traditional build– there is rarely a dull moment, and in the latest installment in the universally beloved No. 1 Ladies’ Detective Agency series there is much happening on Zebra Drive and Tlokweng Road. Mma Ramotswe is experiencing staffing difficulties. First Mr. J.L.B. Matekoni asks to be put in charge of a case involving an errant husband. But can a man investigate such matters as successfully as the number one lady detective can? Then she has a minor falling-out with her assistant, Mma Makutsi, who decides to leave the agency, taking the 97 percent she received on her typing final from the Botswana Secretarial College with her. Along the way, Mma Ramotswe is asked to investigate a couple of tricky cases. Will she be able to explain an unexpected series of deaths at the hospital in Mochudi? And what about the missing office supplies at a local printing company? These are the types of questions that she is uniquely well suited to answer.In the end, whatever happens, Mma Ramotswe knows she can count on Mr. J.L.B. Matekoni, who stands for all that is solid and true in a shifting world. And there is always her love for Botswana, a country of which she is justifiably proud.',
 "Precious Ramotswe has only just set up shop as Botswana's No.1 (and only) lady detective when she is hired to track down a missing husband, uncover a con man, and follow a wayward daughter. However, the case that tugs at her heart, and lands her in danger, is a missing eleven-year-old boy, who may have been snatched by witch doctors.",
 'This is the life and times of T. S. Garp, the bastard son of Jenny Fields—a feminist leader ahead of her times. This is the life and death of a famous mother and her almost-famous son; theirs is a world of sexual extremes—even of sexual assassinations. It is a novel rich with "lunacy and sorrow"; yet the dark, violent events of the story do not undermine a comedy both ribald and robust. In more than thirty languages, in more than forty countries—with more than ten million copies in print—this novel provides almost cheerful, even hilarious evidence of its famous last line: "In the world according to Garp, we are all terminal cases."',
 "A human diplomat kills his alien counterpart. Earth is on the verge of war with a vastly superior alien race. A lone man races against time and a host of enemies to find the one object that can save our planet and our people from alien enslavement...A sheep.That's right, a sheep. And if you think that's the most surprising thing about this book, wait until you read Chapter One. Welcome to The Android's Dream.For Harry Creek, it's quickly becoming a nightmare. All he wants is to do his uncomplicated mid-level diplomatic job with Earth's State Department. But his past training and skills get him tapped to save the planet--and to protect pet store owner Robin Baker, whose own past holds the key to the whereabouts of that lost sheep. Doing both will take him from lava-strewn battlefields to alien halls of power. All in a day's work. Maybe it's time for a raise.Throw in two-timing freelance mercenaries, political lobbyists with megalomaniac tendencies, aliens on a religious quest, and an artificial intelligence with unusual backstory, and you've got more than just your usual science fiction adventure story. You've got The Android's Dream.",
 'It was January 2021, and Rick Deckard had a license to kill. Somewhere among the hordes of humans out there, lurked several rogue androids. Deckard\'s assignment--find them and then..."retire" them. Trouble was, the androids all looked exactly like humans, and they didn\'t want to be found!',
 'The Big Money completes John Dos Passos\'s three-volume "fable of America\'s materialistic success and moral decline" ( American Heritage ) and marks the end of "one of the most ambitious projects that an American novelist has ever undertaken" ( Time ).Here we come back to America after the war and find a nation on the upswing. Industrialism booms. The stock market surges. Lindbergh takes his solo flight. Henry Ford makes automobiles. From New York to Hollywood, love affairs to business deals, it is a country taking the turns too fast, speeding toward the crash of 1929.Ultimately, whether the novels are read together or separately, they paint a sweeping portrait of collective America and showcase the brilliance and bravery of one of its most enduring and admired writers.“It is not simply that [Dos Passos] has a keen eye for people, but that he has a keen eye for so many different kinds of people.” — New York Times',
 'Thrown in prison for a crime he has not committed, Edmond Dantès is confined to the grim fortress of If. There he learns of a great hoard of treasure hidden on the Isle of Monte Cristo and he becomes determined not only to escape, but also to unearth the treasure and use it to plot the destruction of the three men responsible for his incarceration. Dumas’ epic tale of suffering and retribution, inspired by a real-life case of wrongful imprisonment, was a huge popular success when it was first serialized in the 1840s.Robin Buss’s lively English translation is complete and unabridged, and remains faithful to the style of Dumas’s original. This edition includes an introduction, explanatory notes and suggestions for further reading.',
 'Raskolnikov, a destitute and desperate former student, wanders through the slums of St Petersburg and commits a random murder without remorse or regret. He imagines himself to be a great man, a Napoleon: acting for a higher purpose beyond conventional moral law. But as he embarks on a dangerous game of cat and mouse with a suspicious police investigator, Raskolnikov is pursued by the growing voice of his conscience and finds the noose of his own guilt tightening around his neck. Only Sonya, a downtrodden sex worker, can offer the chance of redemption.',
 "One of the greatest love stories of all time, this novel has fascinated generations of readers. Dumas's subtle and moving portrait of a woman in love is based on his own love affair with one of the most desirable courtesans in Paris. This is a completely new translation commissioned for theWorld's Classics.",
 "First published in 1844, The Three Musketeers is the most famous of Alexandre Dumas' historical novels and one of the most popular adventure novels ever written.Dumas' swashbuckling epic chronicles the adventures of d'Artagnan, a brash young man from the countryside who journeys to Paris in 1625 hoping to become a musketeer and guard to King Louis XIII. Before long, he finds treachery and court intrigue,and also three boon companions, the daring swordsmen Athos, Porthos, and Aramis. Together, the four strive heroically to defend the honor of their queen against the powerful Cardinal Richelieu and the seductive spy Milady.",
 "Lucas Corso is a book detective, a middle-aged mercenary hired to hunt down rare editions for wealthy and unscrupulous clients. When a well-known bibliophile is found dead, leaving behind part of the original manuscript of Alexandre Dumas's The Three Musketeers, Corso is brought in to authenticate the fragment. He is soon drawn into a swirling plot involving devil worship, occult practices, and swashbuckling derring-do among a cast of characters bearing a suspicious resemblance to those of Dumas's masterpiece. Aided by a mysterious beauty named for a Conan Doyle heroine, Corso travels from Madrid to Toledo to Paris on the killer's trail in this twisty intellectual romp through the book world.",
 "The optimism of the early sixties, infused with the excitement of the space race and the menace of the Cold War, is filtered through the rich imagination of high-spirited, eight-year-old Madeleine, who welcomes her family's posting to a quiet Air Force base near the Canadian border. Secure in the love of her beautiful mother, she is unaware that her father, Jack, is caught up in a web of secrets. When a very local murder intersects with global forces, Jack must decide where his loyalties lie, and Madeleine will be forced to learn a lesson about the ambiguity of human morality -- one she will only begin to understand when she carries her quest for the truth, and the killer, into adulthood twenty years later.",
 'Growing up in the slums of East End London, Charlie Trumper dreams of someday running his grandfather\'s fruit and vegetable barrow. That day comes suddenly when his grandfather dies leaving him the floundering business. With the help of Becky Salmon, an enterprising young woman, Charlie sets out to make a name for himself as "The Honest Trader". But the brutal onset of World War I takes Charlie far from home and into the path of a dangerous enemy whose legacy of evil follows Charlie and his family for generations.Encompassing three continents and spanning over sixty years, As the Crow Flies brings to life a magnificent tale of one man\'s rise from rags to riches set against the backdrop of a changing century.',
 'Shares tales of love, suffering, and healing through allegories and ancestral myths in an exploration of the interconnection between human lives.',
 'Librarian\'s note: See alternate cover edition of ISBN 0785263705 here."I never liked jazz music because jazz music doesn\'t resolve. I used to not like God because God didn\'t resolve. But that was before any of this happened." ―Donald MillerIn Donald Miller\'s early years, he was vaguely familiar with a distant God. But when he came to know Jesus Christ, he pursued the Christian life with great zeal. Within a few years he had a successful ministry that ultimately left him feeling empty, burned out, and, once again, far away from God. In this intimate, soul-searching account, Miller describes his remarkable journey back to a culturally relevant, infinitely loving God.For anyone wondering if the Christian faith is still relevant in a postmodern culture.For anyone thirsting for a genuine encounter with a God who is real.For anyone yearning for a renewed sense of passion in\xa0 life.Blue Like Jazz is a fresh and original perspective on life, love, and redemption.',
 "The Poisonwood Bible is a story told by the wife and four daughters of Nathan Price, a fierce, evangelical Baptist who takes his family and mission to the Belgian Congo in 1959. They carry with them everything they believe they will need from home, but soon find that all of it -- from garden seeds to Scripture -- is calamitously transformed on African soil. What follows is a suspenseful epic of one family's tragic undoing and remarkable reconstruction over the course of three decades in postcolonial Africa.",
 'Classic hardback edition of this fascinating collection of stories, featuring Tolkien’s own painting of the dragon Glaurung on the cover, which continues the tales of The Hobbit, The Lord of the Rings and The Silmarillion and contains an alternative version of The Children of Hurin.Unfinished Tales is a collection of narratives ranging in time from the Elder Days of Middle-earth to the end of the War of the Ring, and provides those who have read The Lord of the Rings with a whole collection of background and new stories from the twentieth century’s most acclaimed popular author.The book concentrates on the realm of Middle-earth and comprises such elements as Gandalf’s lively account of how it was that he came to send the Dwarves to the celebrated party at Bag-End, the emergence of the sea-god Ulmo before the eyes of Tuor on the coast of Beleriand, and an exact description of the military organization of the Riders of Rohan.Unfinished Tales also contains the only story about the long ages of Numenor before its downfall, and all that is known about such matters as the Five Wizards, the Palantiri and the legend of Amroth. The tales were collated and edited by JRR Tolkien’s son and literary heir, Christopher Tolkien, who provides a short commentary on each story, helping the reader to fill in the gaps and put each story into the context of the rest of his father’s writings.',
 'The Silmarillion is an account of the Elder Days, of the First Age of Tolkien’s world. It is the ancient drama to which the characters in The Lord of the Rings look back, and in whose events some of them such as Elrond and Galadriel took part. The tales of The Silmarillion are set in an age when Morgoth, the first Dark Lord, dwelt in Middle-Earth, and the High Elves made war upon him for the recovery of the Silmarils, the jewels containing the pure light of Valinor.',
 "Alternate Cover Edition ISBN 0671510053 (ISBN13: 9780671510053)At thirty-six, Quoyle, a third-rate newspaperman, is wrenched violently out of his workaday life when his two-timing wife meets her just deserts. He retreats with his two daughters to his ancestral home on the starkly beautiful Newfoundland coast, where a rich cast of local characters all play a part in Quoyle's struggle to reclaim his life. As three generations of his family cobble up new lives, Quoyle confronts his private demons--and the unpredictable forces of nature and society--and begins to see the possibility of love without pain or misery.A vigorous, darkly comic, and at times magical portrait of the contemporary American family, The Shipping News shows why E. Annie Proulx is recognized as one of the most gifted and original writers in America today.(back cover)",
 "In the third novel of this bestselling series, London investigator Maisie Dobbs faces grave danger as she returns to the site of her most painful WWI memories to resolve the mystery of a pilot's death.A deathbed plea from his wife leads Sir Cecil Lawton to seek the aid of Maisie Dobbs, psychologist and investigator. As Maisie soon learns, Agnes Lawton never accepted that her aviator son was killed in the Great War, a torment that led her not only to the edge of madness but to the doors of those who practice the dark arts and commune with the spirit world. In accepting the assignment, Maisie finds her spiritual strength tested, as well as her regard for her mentor, Maurice Blanche. The mission also brings her together once again with her college friend Priscilla Evernden, who served in France and who lost three brothers to the war — one of whom, it turns out, had an intriguing connection to the missing Ralph Lawton.",
 "The book is structured as a series of loosely connected vignettes. Burroughs stated that the chapters are intended to be read in any order. The reader follows the narration of junkie William Lee, who takes on various aliases, from the U.S. to Mexico, eventually to Tangier and the dreamlike Interzone.The vignettes are drawn from Burroughs' own experiences in these places and his addiction to drugs (heroin, morphine, and while in Tangier, majoun [a strong hashish confection] as well as a German opioid, brand name Eukodol, of which he wrote frequently).[source wiki}",
 'Tom Wolfe\'s much-discussed kaleidoscopic non-fiction novel chronicles the tale of novelist Ken Kesey and his band of Merry Pranksters. In the 1960s, Kesey led a group of psychedelic sympathizers around the country in a painted bus, presiding over LSD-induced "acid tests" all along the way. Long considered one of the greatest books about the history of the hippies, Wolfe\'s ability to research like a reporter and simultaneously evoke the hallucinogenic indulgence of the era ensures that this book, written in 1967, will live long in the counter-culture canon of American literature.',
 "THE #1 NEW YORK TIMES BESTSELLERThe Glass Castle is a remarkable memoir of resilience and redemption, and a revelatory look into a family at once deeply dysfunctional and uniquely vibrant. When sober, Jeannette's brilliant and charismatic father captured his children's imagination, teaching them physics, geology, and how to embrace life fearlessly. But when he drank, he was dishonest and destructive. Her mother was a free spirit who abhorred the idea of domesticity and didn't want the responsibility of raising a family. The Walls children learned to take care of themselves. They fed, clothed, and protected one another, and eventually found their way to New York. Their parents followed them, choosing to be homeless even as their children prospered.The Glass Castle is truly astonishing--a memoir permeated by the intense love of a peculiar but loyal family.",
 'Enter a world where the sometimes shocking and often hilarious mating habits of the privileged are exposed by a true insider. In essays drawn from her witty and sometimes brutally candid column in the New York Observer, Candace Bushnell introduces us to the young and beautiful who travel in packs from parties to bars to clubs. Meet "Carrie," the quintessential young writer looking for love in all the wrong places..."Mr. Big," the business tycoon who drifts from one relationship to another..."Samantha Jones," the fortyish, successful, "testosterone woman" who uses sex like a man...not to mention "Psycho Moms," "Bicycle Boys," "International Crazy Girls," and the rest of the New Yorkers who have inspired one of the most watched TV series of our time. You\'ve seen them on HBO, now read the book that started it all...',
 'Informs our understanding of American politics--then and now--and gives us a new perspective on the unpredictable forces that shape history.An illuminating study of the intertwined lives of the founders of the American republic--John Adams, Aaron Burr, Benjamin Franklin, Alexander Hamilton, Thomas Jefferson, James Madison, and George Washington.During the 1790s, which Ellis calls the most decisive decade in our nation\'s history, the greatest statesmen of their generation--and perhaps any--came together to define the new republic and direct its course for the coming centuries. Ellis focuses on six discrete moments that exemplify the most crucial issues facing the fragile new nation: Burr and Hamilton\'s deadly duel, and what may have really happened; Hamilton, Jefferson, and Madison\'s secret dinner, during which the seat of the permanent capital was determined in exchange for passage of Hamilton\'s financial plan; Franklin\'s petition to end the "peculiar institution" of slavery--his last public act--and Madison\'s efforts to quash it; Washington\'s precedent-setting Farewell Address, announcing his retirement from public office and offering his country some final advice; Adams\'s difficult term as Washington\'s successor and his alleged scheme to pass the presidency on to his son; and finally, Adams and Jefferson\'s renewed correspondence at the end of their lives, in which they compared their different views of the Revolution and its legacy.In a lively and engaging narrative, Ellis recounts the sometimes collaborative, sometimes archly antagonistic interactions between these men, and shows us the private characters behind the public personas: Adams, the ever-combative iconoclast, whose closest political collaborator was his wife, Abigail; Burr, crafty, smooth, and one of the most despised public figures of his time; Hamilton, whose audacious manner and deep economic savvy masked his humble origins; Jefferson, renowned for his eloquence, but so reclusive and taciturn that he rarely spoke more than a few sentences in public; Madison, small, sickly, and paralyzingly shy, yet one of the most effective debaters of his generation; and the stiffly formal Washington, the ultimate realist, larger-than-life, and America\'s only truly indispensable figure.Ellis argues that the checks and balances that permitted the infant American republic to endure were not primarily legal, constitutional, or institutional, but intensely personal, rooted in the dynamic interaction of leaders with quite different visions and values. Revisiting the old-fashioned idea that character matters, Founding Brothers informs our understanding of American politics--then and now--and gives us a new perspective on the unpredictable forces that shape history.',
 "Beautifully captures the joys of a new family as it builds to an overwhelmingly moving climax. This is an unforgettable love story, at once heartbreaking and full of hope.James Patterson has written a love story!--a powerfully moving and suspenseful novel about families, loss, new love, and hope. Katie Wilkinson has found her perfect man at last. He's a writer, a house painter, an original thinker--everything she's imagined she wanted in a partner. But one day, without explanation, he disappears from her life, leaving behind only a diary for her to read. This diary is a love letter written by a new mother named Suzanne for her baby son, Nicholas. In it she pours out her heart about how she and the boy's father met, about her hopes for marriage and family, and about the unparalleled joy that having a baby has brought into her life. As Katie reads this touching document, it becomes clear that the lover who has just left her is the husband and father in this young family. She reads on, filled with terror and hope, as she struggles to understand what has happened--and whether her new love has a prayer of surviving. Written with James Patterson's perfect pitch for emotion and suspense, Suzanne's Diary for Nicholas captures beautifully the joys of a new family as it builds to an overwhelmingly moving climax. This is an unforgettable love story, at once heartbreaking and full of hope.",
 "Jack Mullen is a driven student of the law. His brother Peter is a servant of the rich, parking the cars of the Hamptons' elite --- and perhaps satisfying their more intimate needs as well. Then Peter's body is found on the beach. Jack knows the drowning was no accident, but someone's unlimited power and money have bought the cops, the judges, the system. Now Jack is learning a lesson in justice he never got in law school ... and his astonishing plan to beat the billionaires will have you reeling --- and cheering --- to the very last page.",
 'Starring Sissy Hanshaw--flawlessly beautiful, almost. A small-town girl with big-time dreams and a quirk to match--hitchhiking her way into your heart, your hopes, and your sleeping bags...Featuring Bonanza Jellybean and the smooth-riding cowgirls of Rubber Rose Ranch. Chink, lascivious guru of yams and yang. Julian, Mohawk by birth; asthmatic esthete and husband by disposition. Dr. Robbins, preventive psychiatrist and reality instructor...Follow Sissy\'s amazing odyssey from Virginia to chic Manhattan to the Dakota Badlands, where FBI agents, cowgirls, and ecstatic whooping cranes explode in a deliciously drawn-out climax..."This is one of those special novels--a piece of working magic, warm, funny, and san--that you just want to ride off into the sunset with."--Thomas Pynchon"The best fiction, so far, to come out of the American counterculture."-- "Chicago Tribune Book World"',
 "The portrayal of Stephen Dedalus's Dublin childhood and youth, his quest for identity through art and his gradual emancipation from the claims of family, religion and Ireland itself, is also an oblique self-portrait of the young James Joyce and a universal testament to the artist's 'eternal imagination'. Both an insight into Joyce's life and childhood, and a unique work of modernist fiction, A Portrait of the Artist as a Young Man is a novel of sexual awakening, religious rebellion and the essential search for voice and meaning that every nascent artist must face in order to blossom fully into themselves.",
 "Every Thursday morning for two years in the Islamic Republic of Iran, a bold and inspired teacher named Azar Nafisi secretly gathered seven of her most committed female students to read forbidden Western classics. As Islamic morality squads staged arbitrary raids in Tehran, fundamentalists seized hold of the universities, and a blind censor stifled artistic expression, the girls in Azar Nafisi's living room risked removing their veils and immersed themselves in the worlds of Jane Austen, F. Scott Fitzgerald, Henry James, and Vladimir Nabokov. In this extraordinary memoir, their stories become intertwined with the ones they are reading. Reading Lolita in Tehran is a remarkable exploration of resilience in the face of tyranny and a celebration of the liberating power of literature.",
 "Librarian's note: Alternate cover edition of ISBN 9780141182537.Humbert Humbert - scholar, aesthete and romantic - has fallen completely and utterly in love with Dolores Haze, his landlady's gum-snapping, silky skinned twelve-year-old daughter. Reluctantly agreeing to marry Mrs Haze just to be close to Lolita, Humbert suffers greatly in the pursuit of romance; but when Lo herself starts looking for attention elsewhere, he will carry her off on a desperate cross-country misadventure, all in the name of Love. Hilarious, flamboyant, heart-breaking and full of ingenious word play, Lolita is an immaculate, unforgettable masterpiece of obsession, delusion and lust.",
 'Nei de dea fån Ald Majoar, de baarch dy’t harren lieder wie, nimme de bisten de macht oer op de Hearkespleats. Se dope it boerehiem om ta: It Bistespul. It eksperimint begjint! Kinne de bisten it sels roaie op de pleats? Jawis – ålteast…It duorret net lang ear’t de earste skuorkes yn de idillyske bistkommune har fertoane. Neat minskliks is de bisten frjemd. Slagje se deryn om it eksperimint slagje te litten? Of sil de skiednis himsels werhelje?George Orwell skreau mei Bistespul (Animal Farm, 1945) in like felle ås tragikomyske oanklacht tsjin totalitêre rezjyms. Dat die er yn it histoaryske each fan de stoarm: healwei de jierren fjirtich, doe’t it nasjonaalsosjalisme ôflost waard troch it stalinisme. Syn fabel hat hjoed-de-dei noch neat fan syn krêft en tapåslikheid ferlern. Like twingend ås åltiten bliuwt Orwells universele boadskip oerein, dat ålle bisten lyk binne, mar guon geliker ås oaren.',
 'With over 10 million copies in print, Madeleine L’Engle’s Newbery Medal-winning classic, A Wrinkle in Time , along with its bestselling companions, A Wind in the Door , A Swiftly Tilting Planet , and Many Waters , has enthralled and inspired readers of all ages. This newly designed boxed set features the stunning art of Peter Sís.',
 'At the dawn of the next world war, a plane crashes on an uncharted island, stranding a group of schoolboys. At first, with no adult supervision, their freedom is something to celebrate; this far from civilization the boys can do anything they want. Anything. They attempt to forge their own society, failing, however, in the face of terror, sin and evil. And as order collapses, as strange howls echo in the night, as terror begins its reign, the hope of adventure seems as far from reality as the hope of being rescued. Labeled a parable, an allegory, a myth, a morality tale, a parody, a political treatise, even a vision of the apocalypse, Lord of the Flies is perhaps our most memorable novel about “the end of innocence, the darkness of man’s heart.”',
 '"A Tale of Passion," as its subtitle declares, The Good Soldier relates the complex social and sexual relationships between two couples, one English, one American, and the growing awareness by the American narrator John Dowell of the intrigues and passions behind their orderly Edwardian facade. It is the attitude of Dowell, his puzzlement, his uncertainty, and the seemingly haphazard manner of his narration that make the book so powerful and mysterious. Despite its catalogue of death, insanity, and despair, the novel has many comic moments, and has inspired the work of several distinguished writers, including Graham Greene. This is the only annotated edition available.',
 "In The Good Soldier Švejk, celebrated Czech writer and anarchist Jaroslav Hašek combined dazzling wordplay and piercing satire in a hilariously subversive depiction of the futility of war.Good-natured and garrulous, Švejk becomes the Austrian army's most loyal Czech soldier when he is called up on the outbreak of World War I -- although his bumbling attempts to get to the front serve only to prevent him from reaching it. Playing cards and getting drunk, he uses all his cunning and genial subterfuge to deal with the police, clergy, and officers who chivy him toward battle.Cecil Parrott's vibrant translation conveys the brilliant irreverence of this classic about a hapless Everyman caught in a vast bureaucratic machine.",
 "Welcome to our genetic world.Fast, furious, and out of control.This is not the world of the future --- it's the world right now.Is a loved one missing some body parts? Are blondes becoming extinct? Is everyone at your dinner table of the same species? Humans and chimpanzees differ in only 400 genes; is that why an adult human being resembles a chimp fetus? And should that worry us? There's a new genetic cure for drug addiction --- is it worse than the disease?We live in a time of momentous scientific leaps; a time when it's possible to sell our eggs and sperm online for thousands of dollars; test our spouses for genetic maladies and even frame someone for a genetic crime.We live in a time when one fifth of all our genes are owned by someone else, and an unsuspecting person and his family can be pursued cross-country because they happen to have certain valuable genes within their chromosomes ...Devilishly clever, Next blends fact and fiction into a breathless tale of a new world where nothing is what it seems, and a set of new possibilities can open at every turn. Next challenges our sense of reality and notions of morality. Balancing the comic and bizarre with the genuinely frightening and disturbing, Next shatters our assumptions, and reveals shocking new choices where we least expect.The future is closer than you think. Get used to it.",
 "The twin jet plane en route to Denver from Hong Kong is merely a green radar blip half an hour off the California coast when the call comes through to air traffic control:'Socal Approach, this is TransPacific 545. We have an emergency.' The pilot requests priority clearance to land - then comes the bombshell - he needs forty ambulances on the runway.But nothing prepares the rescue workers for the carnage they witness when they enter the plane.Ninety-four passengers are injured. Three dead. The interior cabin virtually destroyed.What happened on board Flight TPA 545?",
 'In a novel set within the arena of volatile Japanese-American relations, business moguls compete for control of the international electronics industry.',
 'In an Arizona desert, a man wanders in a daze, speaking words that make no sense. Within twenty-four hours he is dead, his body swiftly cremated by his only known associates. Halfway around the world, archaeologists make a shocking discovery at a medieval site. Suddenly they are swept off to the headquarters of a secretive multinational corporation that has developed an astounding technology. Now this group is about to get a chance not to study the past but to enter it. And with history opened up to the present, the dead awakened to the living, these men and women will soon find themselves fighting for their very survival -- six hundred years ago.',
 "The United States government is given a warning by the pre-eminent biophysicists in the country: current sterilization procedures applied to returning space probes may be inadequate to guarantee uncontaminated re-entry to the atmosphere. Two years later, seventeen satellites are sent into the outer fringes of space to collect organisms and dust for study. One of them falls to earth, landing in a desolate area of Arizona. Twelve miles from the landing site, in the town of Piedmont, a shocking discovery is made: the streets are littered with the dead bodies of the town's inhabitants, as if they dropped dead in their tracks.--back cover",
 'Deep in the African rain forest, near the legendary ruins of the Lost City of Zinj, an expedition of eight American geologists is mysteriously and brutally killed in a matter of minutes.Ten thousand miles away, Karen Ross, the Congo Project Supervisor, watches a gruesome video transmission of the aftermath: a camp destroyed, tents crushed and torn, equipment scattered in the mud alongside dead bodies — all motionless except for one moving image — a grainy, dark, man-shaped blur.In San Francisco, primatologist Peter Elliot works with Amy, a gorilla with an extraordinary vocabulary of 620 “signs,” the most ever learned by a primate, and she likes to fingerpaint. But recently, her behavior has been erratic and her drawings match, with stunning accuracy, the brittle pages of a Portuguese print dating back to 1642 . . . a drawing of an ancient lost city. A new expedition — along with Amy — is sent into the Congo where they enter a secret world, and the only way out may be through a horrifying death …source: michaelcrichton.com',
 'It is 922 A.D. The refined Arab courtier Ibn Fadlan is accompanying a party of Viking warriors back to their home. He is appalled by their customs—the gratuitous sexuality of their women, their disregard for cleanliness, and their cold-blooded sacrifices. As they enter the frozen, forbidden landscape of the North—where the day’s length does not equal the night’s, where after sunset the sky burns in streaks of color—Fadlan soon discovers that he has been unwillingly enlisted to combat the terrors in the night that come to slaughter the Vikings, the monsters of the mist that devour human flesh. But just how he will do it, Fadlan has no idea.',
 "Thomas Sanders' world collapses in just 24 hours - he is passed over for promotion, his new woman boss comes on to him during a drink after work, then, the next morning, he learns that she has accused him of sexually harassing her. She demands his transfer, thereby threatening to cut him off from the millions he would have made when his high-tech company was floated on the stock market.What follow next made Disclosure the most talked about novel of the decade.",
 'En esta espectacular novela, los dinosaurios vuelven a conquistar la Tierra. En una isla remota, un grupo de hombres y mujeres emprende una carrera contra el tiempo para evitar un desastre mundial provocado por la desmedida ambición de comercializar la ingeniería genética. Pero todos los esfuerzos resultarán vanos cuando el inescrupuloso proyecto quede fuera de control y el mundo a merced de unas bestias monstruosas...Parque jurásico, la novela más célebre de Michael Crichton y una de las más leídas en los últimos años, fue adaptada al cine por Steven Spielberg en una película que se convirtió en el gran acontecimiento cinematográfico de 1993 y en el origen del fenómeno de masas llamado «dinomanía».',
 "Lavish wealth and appalling poverty live side by side in Victorian London -- and Edward Pierce easily navigates both worlds. Rich, handsome, and ingenious, he charms the city's most prominent citizens even as he plots the crime of his century, the daring theft of a fortune in gold. But even Pierce could not predict the consequences of an extraordinary robbery that targets the pride of England's industrial era: the mighty steam locomotive. Based on remarkable fact, and alive with the gripping suspense, surprise, and authenticity that are his trademarks, Michael Crichton's classic adventure is a breathtaking thrill-ride that races along tracks of steel at breakneck speed.",
 '"[This] is a book of great richness, beauty and power and thus very difficult to do justice to in a brief review. . . . The violence is sometimes unbearable, the language rarely less than superb. Dillard\'s description of the moth\'s death makes Virginia Woolf\'s go dim and Edwardian. . . . Nature seen so clear and hard that the eyes tear. . . . A rare and precious book." —\xa0Frederick Buechner,\xa0 New York Times Book Review From Pulitzer Prize-winning Annie Dillard, a book about the grace, beauty, and terror of the natural world.\xa0 In the mid 1970s, Annie Dillard spent two years on an island in Puget Sound in a room with a solitary window, a cat, and a spider for company, asking herself questions about memory, time, sacrifice, reality, death, and God. Holy the Firm , the diary-like collection of her thoughts, feelings, and ruminations during this time, is a lyrical gift to any reader who have ever wondered how best to live with grace and wonder in the natural world.',
 "One of George Bernard Shaw's best-known plays, Pygmalion was a rousing success on the London and New York stages, an entertaining motion picture and a great hit with its musical version, My Fair Lady. An updated and considerably revised version of the ancient Greek legend of Pygmalion and Galatea, the 20th-century story pokes fun at the antiquated British class system. In Shaw's clever adaptation, Professor Henry Higgins, a linguistic expert, takes on a bet that he can transform an awkward cockney flower seller into a refined young lady simply by polishing her manners and changing the way she speaks. In the process of convincing society that his creation is a mysterious royal figure, the Professor also falls in love with his elegant handiwork.The irresistible theme of the emerging butterfly, together with Shaw's brilliant dialogue and splendid skills as a playwright, have made Pygmalion one of the most popular comedies in the English language. A staple of college drama courses, it is still widely performed.",
 'Virtually unknown during his lifetime, Franz Kafka is now one of the world’s most widely read and discussed authors. His nightmarish novels and short stories have come to symbolize modern man’s anxiety and alienation in a bizarre, hostile, and dehumanized world. This vision is most fully realized in Kafka’s masterpiece, “The Metamorphosis,” a story that is both harrowing and amusing, and a landmark of modern literature. Bringing together some of Kafka’s finest work, this collection demonstrates the richness and variety of the author’s artistry. “The Judgment,” which Kafka considered to be his decisive breakthrough, and “The Stoker,” which became the first chapter of his novel Amerika, are here included. These two, along with “The Metamorphosis,” form a suite of stories Kafka referred to as “The Sons,” and they collectively present a devastating portrait of the modern family.Also included are “In the Penal Colony,” a story of a torture machine and its operators and victims, and “A Hunger Artist,” about the absurdity of an artist trying to communicate with a misunderstanding public. Kafka’s lucid, succinct writing chronicles the labyrinthine complexities, the futility-laden horror, and the stifling oppressiveness that permeate his vision of modern life.',
 "The curse placed on Oedipus lingers and haunts a younger generation in this new and brilliant translation of Sophocles' classic drama. The daughter of Oedipus and Jocasta, Antigone is an unconventional heroine who pits her beliefs against the King of Thebes in a bloody test of wills that leaves few unharmed. Emotions fly as she challenges the king for the right to bury her own brother. Determined but doomed, Antigone shows her inner strength throughout the play.Antigone raises issues of law and morality that are just as relevant today as they were more than two thousand years ago. Whether this is your first reading or your twentieth, Antigone will move you as few pieces of literature can.To make this quintessential Greek drama more accessible to the modern reader, this Prestwick House Literary Touchstone Edition includes a glossary of difficult terms, a list of vocabulary words, and convenient sidebar notes. By providing these, it is our intention that readers will more fully enjoy the beauty, wisdom, and intent of the play.",
 "A wickedly clever satire uses comic inversions to offer telling insights into the nature of man and society. Nominated as one of America’s best-loved novels by PBS’s The Great American Read.Gulliver's Travels describes the four voyages of Lemuel Gulliver, a ship's surgeon. In Lilliput he discovers a world in miniature; towering over the people and their city, he is able to view their society from the viewpoint of a god. However, in Brobdingnag, a land of giants, tiny Gulliver himself comes under observation, exhibited as a curiosity at markets and fairs. In Laputa, a flying island, he encounters a society of speculators and projectors who have lost all grip on everyday reality; while they plan and calculate, their country lies in ruins. Gulliver's final voyage takes him to the land of the Houyhnhnms, gentle horses whom he quickly comes to admire - in contrast to the Yahoos, filthy bestial creatures who bear a disturbing resemblance to humans. This text, based on the first edition of 1726, reproduces all the original illustrations and includes an introduction by Robert Demaria, Jr, which discusses the ways Gulliver's Travels has been interpreted since its first publication. Jonathan Swift (1667-1745) was born in Dublin. For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Readers trust the series to provide authoritative texts enhanced by introductions and notes by distinguished scholars and contemporary authors, as well as up-to-date translations by award-winning translators.",
 "A magnificent, vast, and enthralling saga, Sena Jeter Naslund's Ahab's Wife is a remarkable epic spanning a rich, eventful, and dramatic life. Inspired by a brief passage in Moby Dick, it is the story of Una, exiled as a child to live in a lighthouse, removed from the physical and emotional abuse of a religion-mad father. It is the romantic adventure of a young woman setting sail in a cabin boy's disguise to encounter darkness, wonder, and catastrophe; the story of a devoted wife who witnesses her husband's destruction by obsession and madness. Ultimately it is the powerful and moving story of a woman's triumph over tragedy and loss through her courage, creativity, and intelligence.",
 'Fear and Loathing in Las Vegas is the best chronicle of drug-soaked, addle-brained, rollicking good times ever committed to the printed page. It is also the tale of a long weekend road trip that has gone down in the annals of American pop culture as one of the strangest journeys ever undertaken.',
 "Hilarious, terrifying, insightful, and compulsively readable, these are the articles that Hunter S. Thompson wrote for Rolling Stone magazine while covering the 1972 election campaign of President Richard M. Nixon and his unsuccessful opponent, Senator George S. McGovern. Hunter focuses largely on the Democratic Party's primaries and the breakdown of the national party as it splits between the different candidates.With drug-addled alacrity and incisive wit, Thompson turned his jaundiced eye and gonzo heart to the repellent and seductive race for president, deconstructed the campaigns, and ended up with a political vision that is eerily prophetic",
 "Alternate cover editions of ISBN 9780143038092 can be found here.Four mothers, four daughters, four families, whose histories shift with the four winds depending on who's telling the stories. In 1949, four Chinese women, recent immigrants to San Francisco, meet weekly to play mahjong and tell stories of what they left behind in China. United in loss and new hope for their daughters' futures, they call themselves the Joy Luck Club. Their daughters, who have never heard these stories, think their mothers' advice is irrelevant to their modern American lives – until their own inner crises reveal how much they've unknowingly inherited of their mothers' pasts. With wit and sensitivity, Amy Tan examines the sometimes painful, often tender, and always deep connection between mothers and daughters. As each woman reveals her secrets, trying to unravel the truth about her life, the strings become more tangled, more entwined. Mothers boast or despair over daughters, and daughters roll their eyes even as they feel the inextricable tightening of their matriarchal ties. Tan is an astute storyteller, enticing readers to immerse themselves into these lives of complexity and mystery.",
 'From there to here, from here to there, funny things are everywhere. In this exploration of simple concepts such as colour, numbers and opposites, Dr Seuss presents a crazy world of boxing Goxes, singing Yinks and hump Wumps.',
 "Horton the kindly elephant has his work cut out saving the tiny Whos who live on a speck of dust – no one else believes they are there! But Horton eventually convinces everyone that ‘A person’s a person, no matter how small’!With his unique combination of hilarious stories, zany pictures and riotous rhymes, Dr Seuss has been delighting young children and helping them learn to read for over fifty years. Creator of the wonderfully anarchic Cat in the Hat, and ranked among the world's top ten favorite children’s authors, Dr. Seuss is a global best-seller, with nearly half a billion books sold worldwide.",
 '"Unless someone like you... cares a whole awful lot... nothing is going to get better... It\'s not."Long before saving the earth became a global concern, Dr. Seuss, speaking through his character the Lorax, warned against mindless progress and the danger it posed to the earth\'s natural beauty.His classic cautionary tale is now available in an irresistible mini-edition, perfect for backpack or briefcase, for Arbor Day, Earth Day, and every day.',
 "“The more that you read, the more things you will know. The more you learn, the more places you’ll go”. In this delightful book, Dr. Seuss celebrates the joys of reading, encouraging young children to take pride in their budding reading abilities. With his unique combination of hilarious stories, zany pictures and riotous rhymes, Dr. Seuss has been delighting young children and helping them learn to read for over fifty years. Creator of the wonderfully anarchic Cat in the Hat, and ranked among the UK's top ten favourite children's authors, Seuss is firmly established as a global best-seller, with nearly half a billion books sold worldwide. As the first step in a major rebrand programme, HarperCollins is relaunching 17 of Dr. Seuss's best-selling books, including such perennial favourites as The Cat in the Hat, Green Eggs and Ham and Fox in Socks. In response to consumer demand, the bright new cover designs incorporate much needed guidance on reading levels, with the standard paperbacks divided into three reading strands – Blue Back Books for parents to share with young children, Green Back Books for budding readers to tackle on their own, and Yellow Back Books for older, more fluent readers to enjoy. I Can Read With My Eyes Shut belongs to the Green Back Book range.",
 "Now in audio format, here are 11\xa0complete, timeless Dr. Seuss stories, read by some of today's most beloved actors!\nFeaturing:\n- The Cat in the Hat read by Kelsey Grammer- Horton Hears a Who read by Dustin Hoffman- How the Grinch Stole Christmas read by Walter Matthau- Did I Ever Tell You How Lucky You Are? read by John Cleese- The Lorax read by Ted Danson- Yertle the Turtle read by John Lithgow- Gertrude McFuzz read by John Lithgow- The Big Brag read by John Lithgow- Thidwick, the Big-Hearted Moose read by Mercedes McCambridge- Horton Hatches the Egg read by Billy Crystal- The Cat in the Hat Comes Back read by Kelsey Grammer",
 "The American poet John Shade is dead. His last poem, 'Pale Fire', is put into a book, together with a preface, a lengthy commentary and notes by Shade's editor, Charles Kinbote. Known on campus as the 'Great Beaver', Kinbote is haughty, inquisitive, intolerant, but is he also mad, bad - and even dangerous? As his wildly eccentric annotations slide into the personal and the fantastical, Kinbote reveals perhaps more than he should be.Nabokov's darkly witty, richly inventive masterpiece is a suspenseful whodunit, a story of one-upmanship and dubious penmanship, and a glorious literary conundrum.Part of a major new series of the works of Vladimir Nabokov, author of Lolita and Pale Fire, in Penguin Classics.",
 "Pale Fire is regarded by many as Vladimir Nabokov's masterpiece. The novel has been hailed as one of the most striking early examples of postmodernism and has become a famous test case for theories about reading because of the apparent impossibility of deciding between several radically different interpretations. Does the book have two narrators, as it first appears, or one? How much is fantasy and how much is reality? Whose fantasy and whose reality are they? Brian Boyd, Nabokov's biographer and hitherto the foremost proponent of the idea that Pale Fire has one narrator, John Shade, now rejects this position and presents a new and startlingly different solution that will permanently shift the nature of critical debate on the novel. Boyd argues that the book does indeed have two narrators, Shade and Charles Kinbote, but reveals that Kinbote had some strange and highly surprising help in writing his sections. In light of this interpretation, Pale Fire now looks distinctly less postmodern--and more interesting than ever.In presenting his arguments, Boyd shows how Nabokov designed Pale Fire for readers to make surprising discoveries on a first reading and even more surprising discoveries on subsequent readings by following carefully prepared clues within the novel. Boyd leads the reader step-by-step through the book, gradually revealing the profound relationship between Nabokov's ethics, aesthetics, epistemology, and metaphysics. If Nabokov has generously planned the novel to be accessible on a first reading and yet to incorporate successive vistas of surprise, Boyd argues, it is because he thinks a deep generosity lies behind the inexhaustibility, complexity, and mystery of the world. Boyd also shows how Nabokov's interest in discovery springs in part from his work as a scientist and scholar, and draws comparisons between the processes of readerly and scientific discovery.This is a profound, provocative, and compelling reinterpretation of one of the greatest novels of the twentieth century.",
 'One of LitHub\'s 365 Books to Start Your Climate Change Library "Fiction about ecological disaster tends to be written in a tragic key. Boyle, by contrast, favors the darkly comic." -Elizabeth Kolbert, author of The Sixth ExtinctionOriginally published in 2000, T. C. Boyle\'s prescient novel about global warming and ecological collapseIt is the year 2025. Global warming is a reality. The biosphere has collapsed and most mammals--not to mention fish, birds, and frogs--are extinct. Tyrone Tierwater is eking out a bleak living in southern California, managing a pop star\'s private menagerie that only a mother could love--scruffy hyenas, jackals, warthogs, and three down-at-the-mouth lions.It wasn\'t always like this for Ty. Once he was a passionate environmentalist, so committed to saving the earth that he became an eco-terrorist and, ultimately, a convicted felon. as a member of the radical group Earth Forever!, he unwittingly endangered both his daughter Sierra and his wife Andrea. Now, just when he\'s trying to survive in a world torn by obdurate storms and winnowing drought, Andrea comes back into his life.T. C. Boyle\'s eighth novel blends idealism and satire in a story that addresses the ultimate questions of human love and the survival of the species.',
 '\'An act of consummate literary bravery, a writer known for her clarity allowing us to watch her mind as it becomes clouded with grief.\'From one of America\'s iconic writers, a stunning book of electric honesty and passion. Joan Didion explores an intensely personal yet universal experience: a portrait of a marriage–and a life, in good times and bad–that will speak to anyone who has ever loved a husband or wife or child.Several days before Christmas 2003, John Gregory Dunne and Joan Didion saw their only daughter, Quintana, fall ill with what seemed at first flu, then pneumonia, then complete septic shock. She was put into an induced coma and placed on life support. Days later–the night before New Year\'s Eve–the Dunnes were just sitting down to dinner after visiting the hospital when John Gregory Dunne suffered a massive and fatal coronary. In a second, this close, symbiotic partnership of forty years was over. Four weeks later, their daughter pulled through. Two months after that, arriving at LAX, she collapsed and underwent six hours of brain surgery at UCLA Medical Center to relieve a massive hematoma.This powerful book is Didion\'s attempt to make sense of the "weeks and then months that cut loose any fixed idea I ever had about death, about illness . . . about marriage and children and memory . . . about the shallowness of sanity, about life itself."',
 "The novelist and essayist Elizabeth Hardwick is one of contemporary America's most brilliant writers, and Seduction and Betrayal , in which she considers the careers of women writers as well as the larger question of the presence of women in literature, is her most passionate and concentrated work of criticism. A gallery of unforgettable portraits--of Virginia Woolf and Zelda Fitzgerald, Dorothy Wordsworth and Jane Carlyle--as well as a provocative reading of such works as Wuthering Heights, Hedda Gabler , and the poems of Sylvia Plath, Seduction and Betrayal is a virtuoso performance, a major writer's reckoning with the relations between men and women, women and writing, writing and life.",
 'A riveting exploration of the tensions between nature and the built environment. The storm is here, crushed dams no longer hold, the savage seas come inland with a hop. Jacob van Hoddis As Mike Davis shows, prophecies of urban doom too often come true. Beginning with a trip to New York\'s Ground Zero, Davis pairs the horror of lower Manhattan\'s falling skyscrapers with Las Vegas\' delirious delight in blowing up its landmark hotels, where environmental terrorism is practiced in the name of urban development. We stop at "German Village," the Utah wasteland where Allied scientists once perfected their plans to destroy Berlin, then move on to Los Angeles, the frontline of a "Second Civil War" that lies waiting to be ignited in cities across the country. The title essay is an autopsy of the metropolis dead on a slab, with reflections on "bomber ecology" and "ghetto geomorphology." The final chapter, with accounts of Montreal and Auckland brought to their knees by ice storms and heat, warns that our urban infrastructures are as little prepared to deal with climate change as with car bombs and hijacked airliners.',
 'Alternate cover for this ISBN can be found hereWho is Jason Bourne? Is he an assassin, a terrorist, a thief? Why has he got four million dollars in a Swiss bank account? Why has someone tried to murder him?...Jason Bourne does not know the answer to any of these questions. Suffering from amnesia, he does not even know that he is Jason Bourne. What manner of man is he? What are his secrets? Who has he killed?',
 'The adventures of Laura Ingalls and her family continue as they leave their little house on the prairie and travel in their covered wagon to Minnesota. They settle into a house made of sod on the banks of beautiful Plum Creek. Soon Pa builds them a sturdier house, with real glass windows and a hinged door. Laura and Mary go to school, help with the chores around the house, and fish in the creek. Pa’s fiddle lulls them all to sleep at the end of the day. But then disaster strikes—on top of a terrible blizzard, a grasshopper infestation devours their wheat crop. Now the family must work harder than ever to overcome these challenges.',
 'The first four books in the Betsy-Tacy series: Betsy-Tacy, Betsy-Tacy and Tib, Betsy and Tacy Go over the Big Hill, and Betsy and Tacy Go Downtown.',
 "A small town shortly after the turn of the century provides the background for this account of Betsy's third year at Deep Valley High. Reissue.",
 "High School is Heaven! It's Betsy Ray's freshman year at Deep Valley High School, and she and her best childhood chum, Tacy Kelly, are loving every minute. Betsy and Tacy find themselves in the midst of a new crowd of friends, with studies aplenty (including Latin and--ugh--algebra), parties and picnics galore, Sunday night lunches at home--and boys!There's Cab Edwards, the jolly boy next door; handsome Herbert Humphreys; and the mysteriously unfriendly, but maddeningly attractive, Joe Willard. Betsy likes them all, but no boy in particular catches her fancy until she meets the new boy in town, Tony Markham . . . the one she and Tacy call the Tall Dark Handsome Stranger. He's sophisticated, funny, and dashing--and treats Betsy just like a sister. Can Betsy turn him into a beau?An entertaining picture of school clubs, fudge parties, sings around the piano, and Sunday-night suppers in Betsy's hospitable home.' 'Chicago Tribune.",
 "Best Friends ForeverThere are lots of children on Hill Street, but no little girls Betsy's age. So when a new family moves into the house across the street, Betsy hopes they will have a little girl she can play with. Sure enough, they do—a little girl named Tacy. And from the moment they meet at Betsy's fifth birthday party, Betsy and Tacy become such good friends that everyone starts to think of them as one person—Betsy-Tacy.Betsy and Tacy have lots of fun together. They make a playhouse from a piano box, have a sand store, and dress up and go calling. And one day, they come home to a wonderful surprise—a new friend named Tib.Ever since their first publication in the 1940's, the Betsy-Tacy stories have been loved by each generation of young readers.",
 'Lanik Mueller\'s birthright as heir to planet Treason\'s most powerful rulership will never be realized. He is a "rad" -- radical regenerative. A freak among people who can regenerate injured flesh... and trade extra body parts to the Offworld oppressors for iron. For, on a planet without hard metals -- or the means of escape -- iron is power in the race to build a spacecraft. Iron is the promise of freedom -- which may never be fulfilled as Lanik uncovers a treacherous conspiracy beyond his imagination. Now charged with a mission of conquest -- and exile -- Lanik devises a bold and dangerous plan... a quest that may finally break the vicious chain of rivalry and bloodshed that enslaves the people of Treason as the Offworld never could.',
 "Sarai was a child of ten years, wise for her age but not yet a woman, when she first met Abram. He appeared before her in her father's house, filthy from the desert, tired and thirsty. But as the dirt of travel was washed from his body, the sight of him filled her heart. And when Abram promises Sarai to return in ten years to take her for his wife, her fate was sealed.Abram kept his promise, and Sarai kept hers they were wed, and so joined the royal house of Ur with the high priesthood of the Hebrews. So began a lifetime of great joy together, and greater peril: and with the blessing of their God, a great nation would be built around the core of their love.Bestselling author Orson Scott Card uses his fertile imagination, and uncanny insight into human nature, to tell the story of a unique woman--one who is beautiful, tough, smart, and resourceful in an era when women had little power, and are scarce in the historical record. Sarah, child of the desert, wife of Abraham, takes on vivid reality as a woman desirable to kings, a devoted wife, and a faithful follower of the God of Abraham, chosen to experience an incomparable miracle.",
 "Now available in mass market, the revised, definitive edition of the Hugo and Nebula Award-winning classic. In this second book in the saga set 3,000 years after the terrible war, Ender Wiggin is reviled by history as the Xenocide--the destroyer of the alien Buggers. Now, Ender tells the true story of the war and seeks to stop history from repeating itself. ...In the aftermath of his terrible war, Ender Wiggin disappeared, and a powerful voice arose: The Speaker for the Dead, who told the true story of the Bugger War.Now, long years later, a second alien race has been discovered, but again the aliens' ways are strange and frightening...again, humans die. And it is only the Speaker for the Dead, who is also Ender Wiggin the Xenocide, who has the courage to confront the mystery...and the truth.Speaker for the Dead, the second novel in Orson Scott Card's Ender Quintet, is the winner of the 1986 Nebula Award for Best Novel and the 1987 Hugo Award for Best Novel.",
 "In Enchantment, Card works his magic as never before, transforming the timeless story of Sleeping Beauty into an original fantasy brimming with romance and adventure.The moment Ivan stumbled upon a clearing in the dense Carpathian forest, his life was forever changed. Atop a pedestal encircled by fallen leaves, the beautiful princess Katerina lay still as death. But beneath the foliage a malevolent presence stirred and sent the ten-year-old Ivan scrambling for the safety of Cousin Marek's farm.Now, years later, Ivan is an American graduate student, engaged to be married. Yet he cannot forget that long-ago day in the forest--or convince himself it was merely a frightened boy's fantasy. Compelled to return to his native land, Ivan finds the clearing just as he left it.This time he does not run. This time he awakens the beauty with a kiss . . . and steps into a world that vanished a thousand years ago.A rich tapestry of clashing worlds and cultures, Enchantment is a powerfully original novel of a love and destiny that transcend centuries . . . and the dark force that stalks them across the ages.From the Hardcover edition.",
 'The Redwall series is soon to be a Netflix original movie!The bestselling Redwall saga continues in\xa0 Taggerung .Years ago, the vermin clan of Sawney Rath kidnapped one of Redwall\'s own-a baby otter, destined to become their "Taggerung," a warrior hero of ancient legend. But as young Tagg grows, he rebels against his destiny. The young otter journeys in search of his birthplace, a member of Sawney\'s clan always near, out to destroy the deserter. With the feisty mouse Nimbalo, Tagg fends off the avenging vermin, but can he find his way back to the Redwall family from whom he was separated so long ago? Here is all of the excitement and adventure a Redwall fan could wish for!Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series.',
 'The Redwall series is soon to be a Netflix original movie!New York Times \xa0bestselling author Brian Jacques masterfully recounts more woodland adventures in\xa0the seventh epic in the beloved Redwall series!It has been four seasons since Mariel, the warrior-mouse daughter of Joseph the Bellmaker, and her companion, Dandin, set off from Redwall to fight evil in Mossflower. Nothing has been heard of them since. Then one night, in a dream, the legendary Martin the Warrior comes to the Bellmaker with a mysterious message. Clearly, Mariel and Dandin are in grave danger. Joseph and four Redwallers set off at once to aid them. As they push over land and sea, they cannot know the terrible threats they face. Will the Bellmaker and his companions arrive in time to help Mariel and Dandin?Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series."This is storytelling at its best."— School Library Journal',
 'The Redwall series is soon to be a Netflix original movie!The search for the pearls is underway in the next installment of the beloved and bestselling\xa0 Redwall \xa0series.\xa0The Tears of All Oceans are missing. Six magnificent rose-colored pearls, which inspire passion and greed in all who see them, have been stolen and passed from hand to hand, leaving a cryptic trail of death and deception in their wake. And now Ublaz Mad Eyes, the evil emperor of a tropical isle, is determined to let no one stand in the way of his desperate attempt to claim the pearls as his own. At Redwall Abbey, a young hedgehog maid, Tansy, is equally determined to find the pearls first, with the help of her friends. And she must succeed, for the life of the one she holds dear is in great danger...Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series.',
 "The Redwall series is soon to be a Netflix original movie!The adventures of Redwall continue, as Jacques' masterful storytelling leads readers through one of the greatest battles yet.\xa0The murderous Rapscallion army is on the move. Dealt a humiliating defeat by Lady Cregga Rose Eyes, the Badger Lady of Salamandastron, who still pursues them, the Rapscallions are heading inland to take an even greater the peaceful Abbey of Redwall. The elite fighting unit of hares, the Long Patrol, is called out to draw them off. At the forefront is the young hare Tammo, the lead sword in one of the most ferocious battles Redwall has ever faced.Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series.“[Jacques is] a masterful storyteller . . . As in the other Redwall books, the combination of an absorbing plot, robust characterization, and detailed description make the novel a page-turner.”— The Horn Book",
 'The Redwall series is soon to be a Netflix original movie!The beloved\xa0Redwall saga continues in Salamandastron .The inhabitants of Redwall relax in the haze of summer-but as they do, the neighboring stronghold of Salamandastron lies besieged by the evil weasel army of Ferhago the Assassin. Worse still, Mara, beloved daughter of Urthstripe, Badger Lord of the Fire Mountain, is in terrible danger. Then a lightning bolt uncovers the sword of Martin the Warrior, and young Samkin embarks on an adventure that leads him to Mara. Can the good creatures triumph over the villainous Assassin?Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series.',
 "Joined by Trimp the Hedgehog, Dinny Foremole, and Gonff—the ever-mischievous Prince of Mousethieves—Martin embarks on a perilous journey to the northland shore, where Luke, his father, abandoned him as a child. There, within the carcass of a great red ship, he finally uncovers what he has been searching for: the story of the evil pirate stoat, Vilu Deskar, and the valiant warrior who pursued him relentlessly over the high seas, seeking to destroy Vilu at all costs, even if it meant deserting his only son. The legend of Luke and his son, Martin, is a glorious tale from Redwall's history.",
 "In the fourth volume of the epic Redwall saga, a mouse-ship is attacked by the pirate rat Gabool and his heinous band of cut-throats. Hapless voyagers Mariel and her father Joseph the Bellmaker are mercilessly thrown into the sea by the pirates. Mariel washes ashore, starved and near death, and is taken in by the hospitable inhabitants of Redwall Abbey. Sure that her poor father is dead, Mariel swears an oath of vengeance against the filthy pirates who killed her father. With he help of a motley band of animals, Mariel leads the charge to recover a bell and avenge her father.  About the Author:Brian Jacques was born in Liverpool, England, in 1939. Growing up on the docks of Liverpool, he attended St. John's School. He went on to work as a radio show host, playwright, longshoreman, lorry driver, folk singer and comedian prior to his career as a writer. The father of two sons, Jacques enjoys walking his West Highland Terrier, Teddy and spends most of his time writing. A new Redwall book is introduced once every year.",
 "The Redwall series is soon to be a Netflix original movie!The bestselling Redwall saga continues in\xa0 Rakkety Tam .There has never been a Redwall hero quite like Rakkety Tam, the roguish Highlander squirrel who sets off for Mossflower Wood on a mercenary errand and loses his heart to the charms of Redwall Abbey. And there's never been a villain quite like Gulo the a vicious beast-eating wolverine who descends upon the Abbey in search of a relic called the Walking Stone. Readers will cheer at the return of the Long Patrol, the antics of a renegade vole thief, and the emergence of a new champion to wield the sword of Martin.\xa0Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series.",
 'A quest to recover a legendary lost weapon by bumbling young apprentice monk, mouse Matthias. Redwall Abbey, tranquil home to a community of peace-loving mice, is threatened by Cluny the Scourge savage bilge rat warlord and his battle-hardened horde. But the Redwall mice and their loyal woodland friends combine their courage and strength.',
 'A boy and dog trapped aboard the Flying Dutchman, are sent off on an eternal journey by an avenging angel, roaming the earth throughout the centuries in search of those in need. Their travels lead them to Chapelvale, a sleepy nineteenth century village whose existence is at stake. Only by discovering the buried secrets and solving the dust-laden riddles of the ancient village can it be saved.\xa0',
 "The Redwall series is soon to be a Netflix original movie!Energetic and poignant as ever, Jacques' Outcast of Redwall \xa0is another must-read in the bestselling\xa0 Redwall \xa0series.\xa0Abandoned as an infant by his father, the evil warlord Swartt Sixclaw, Veil is raised by the kindhearted Bryony. Despite concerns from everyone at Redwall, Bryony is convinced that Veil's goodness will prevail. But when he commits a crime that is unforgivable, he is banished from the abbey forever. Then Swartt and his hordes of searats and vermin attack Redwall, and Veil has to decide: Should he join Swartt in battle against the only creature who has ever loved him? Or should he turn his back on his true father?Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series.",
 "The Redwall series is soon to be a Netflix original movie!The bestselling Redwall saga continues in\xa0 Marlfox .A villainous new presence is aprowl in Mossflower Woods-the Marlfoxes. Stealthy and mysterious, they are out to plunder and destroy everything in their path. And when they reach Redwall Abbey, they ruthlessly steal the most precious treasure of all-the tapestry of Martin the Warrior. It takes Dann Reguba and Song Swifteye, children of warrior squirrels, to follow in their fathers' heroic footsteps. Together with the young shrew Dippler, and Burble the brave watervole, they embark upon the seemingly impossible quest. . . .Perfect for fans of T. A. Barron’s Merlin saga, John Flanagan’s Ranger’s Apprentice series, and J. R. R. Tolkien’s Lord of the Rings series.",
 'New York Times bestselling author Brian Jacques gives us another tales of Redwall, filled with “The Knights of the Round Table with paws” (The Sunday Times) along with their friends and enemies.All her life, Triss the squirrelmaid has suffered the tyranny of the evil ferret king King Agarnu and his daughter, Princess Kurda. But with the help of her fellow slaves, Shogg the otter and Welfo the hedgehog, Triss plans and executes a daring escape by sea. Meanwhile, in Mossflower forest, a new mystery has arisen: a pair of wandering Dibbuns has accidentally discovered what may be the long-lost secret entrance to Brockhall-original home of the warrior badgers. The threads of the story eventually come together when Triss happens upon Redwall in her flight and takes up the famous sword of Martin. The rest is Redwall history.',
 'An imaginative story of amazing food weather that inspired the hit movie, Cloudy with a Chance of Meatballs is a favorite of grown-ups and children everywhere.The tiny town of Chewandswallow was very much like any other tiny town—except for its weather which came three times a day, at breakfast, lunch, and dinner.But it never rained rain and it never snowed snow and it never blew just wind. It rained things like soup and juice. It snowed things like mashed potatoes. And sometimes the wind blew in storms of hamburgers.Life for the townspeople was delicious until the weather took a turn for the worse. The food got larger and larger and so did the portions. Chewandswallow was plagued by damaging floods and storms of huge food. The town was a mess and the people feared for their lives.Something had to be done, and in a hurry.Edition MSRP: $7⁹⁹ U.S. / $9⁹⁹ CAN (978-0-689-70749-0)',
 "As Princess Lissla Lissar reaches womanhood, it is clear to all the kingdom that in her beauty she is the image of her dead mother, the queen. But this likeness forces her to flee from her father's lust and madness; and in the pain and horror of that flight she forgets who she is and what it is she flees from: forgets almost everything but the love and loyalty of her dog, Ash, who accompanies her. But a chance encounter on the road leads to a job in another king's kennels, where the prince finds himself falling in love with the new kennel maid . . . and one day he tells her of a princess named Lissla Lissar, who had a dog named Ash.",
 "There are places in the world where darkness rules, where it's unwise to walk. But there hadn't been any trouble out at the lake for years, and Sunshine just needed a spot where she could be alone with her thoughts. Vampires never entered her mind.Until they found her...",
 'This heartwarming story has beckoned generations of readers into the special world of Green Gables, an old-fashioned farm outside a town called Avonlea. Anne Shirley, an eleven-year-old orphan, has arrived in this verdant corner of Prince Edward Island only to discover that the Cuthberts—elderly Matthew and his stern sister, Marilla—want to adopt a boy, not a feisty redheaded girl. But before they can send her back, Anne—who simply must have more scope for her imagination and a real home—wins them over completely. A much-loved classic that explores all the vulnerability, expectations, and dreams of a child growing up, Anne of Green Gables is also a wonderful portrait of a time, a place, a family… and, most of all, love. WITH AN AFTERWORD BY JENNIFER LEE CARELL',
 "From the writer who shocked and delighted the world with his novels Lolita, Pale Fire, and Ada, or Ardor, and so many others, comes a magnificent collection of stories. Written between the 1920s and 1950s, these sixty-five tales—eleven of which have been translated into English for the first time—display all the shades of Nabokov's imagination. They range from sprightly fables to bittersweet tales of loss, from claustrophobic exercises in horror to a connoisseur's samplings of the table of human folly. Read as a whole, The Stories of Vladimir Nabokov offers an intoxicating draft of the master's genius, his devious wit, and his ability to turn language into an instrument of ecstasy.The Wood-SpriteRussian Spoken HereSoundsWingstrokeGodsA Matter of ChanceThe SeaportRevengeBeneficenceDetails of A SunsetThe ThunderstormLa VenezianaBachmannThe DragonChristmasA Letter That Never Reached RussiaThe FightThe Return of ChorbA Guide to BerlinA Nursery TaleTerrorRazorThe PassengerThe DoorbellAn Affair of HonorThe Christmas StoryThe Potato ElfThe AurelianA Dashing FellowA Bad DayThe Visit to the MuseumA Busy ManTerra IncognitaThe ReunionLips to LipsOracheMusicPerfectionThe Admiralty SpireThe LeonardoIn Memory of L.I. ShigaevThe CircleA Russian BeautyBreaking the NewsTorpid SmokeRecruitingA Slice of LifeSpring in FialtaCloud, Castle, LakeTyrants DestroyedLikMademoiselle OVasiliy ShishkovUltima ThuleSolus RexThe Assistant ProducerThat in Aleppo OnceA Forgotten PoetTime and EbbConversation Piece, 1945Signs and SymbolsFirst LoveScenes From the Life of A Double MonsterThe Vane SistersLance",
 '"Once upon a time there lived in Berlin, Germany, a man called Albinus. He was rich, respectable, happy; one day he abandoned his wife for the sake of a youthful mistress; he loved; was not loved; and his life ended in disaster." Thus begins Vladimir Nabokov\'s Laughter in the Dark; this, the author tells us, is the whole story except that he starts from here, with his characteristic dazzling skill and irony, and brilliantly turns a fable into a chilling, original novel of folly and destruction. Amidst a Weimar-era milieu of silent film stars, artists, and aspirants, Nabokov creates a merciless masterwork as Albinus, an aging critic, falls prey to his own desires, to his teenage mistress, and to Axel Rex, the scheming rival for her affections who finds his greatest joy in the downfall of others. Published first in Russian as Kamera Obskura in 1932, this book appeared in Nabokov\'s own English translation six years later. This New Directions edition, based on the text as Nabokov revised it in 1960, features a new introduction by Booker Prize-winner John Banville.',
 'A chilling story of obsession and madness. Luzhin, a distracted, withdrawn boy, takes up chess as a refuge from everyday life. As he rises to the heights of grandmaster, the game of chess gradually supplants the world of reality as he moves inexorably towards madness.',
 "A celebration of an indomitable spirit, here is New York Times bestselling author Barbara Taylor Bradford's dazzling saga of a woman who dared to dream--and to triumph against all odds... In the brooding moors above a humble Yorkshire village stood Fairley Hall. There, Emma Harte, its oppressed but resourceful servant girl, acquired a shrewd determination. There, she honed her skills, discovered the meaning of treachery, learned to survive, to become a woman, and vowed to make her mark on the world.In the wake of tragedy she rose from poverty to magnificent wealth as the iron-willed force behind a thriving international enterprise. As one of the richest women in the world Emma Harte has almost everything she fought so hard to achieve--save for the dream of love, and for the passion of the one man she could never have. Through two marriages, two devastating wars, and generations of secrets, Emma's unparalleled success has come with a price. As greed, envy, and revenge consume those closest to her, the brilliant matriarch now finds herself poised to outwit her enemies, and to face the betrayals of the past with the same ingenious resolve that forged her empire.",
 "\xa0\xa0\xa0\xa0\xa0\xa0\xa0In 1915, Laura Ingalls Wilder traveled by train from her home in Missouri to San Francisco. Laura's westward journey to visit her daughter, Rose Wilder Lane, coincided with a spectacular event taking place in that city-the Panama Pacific International Exposition. \xa0\xa0\xa0\xa0\xa0\xa0\xa0This was a great world's fair celebrating the completion of the Panama Canal, and Laura was amazed by the attractions that had been gathered there. \xa0\xa0\xa0\xa0\xa0\xa0\xa0Her husband, Almanzo, was unable to leave their Missouri farm, and it was Laura's letters that gave him the chance to see what she saw during her visit to California. \xa0\xa0\xa0\xa0\xa0\xa0\xa0These letters, gathered together here, allow the reader to experience Laura's adventures and her intimate thoughts as she shared with her husband the events of her exciting sojourn.\xa0",
 '\nCourage, Adventure, Steadfast Love\n From a little house set deep in the Big Woods of Wisconsin, across Indian territory and into the Dakotas, Laura\'s family moved westward right along the frontier.Their true-life saga, beloved by countless millions of TV viewers and readers of the bestselling Little House books, is one of spirit and devotion in the face of bitter-cold winters, wilderness trails, and heartbreaking personal tragedy.Here, for the first time, and drawing on her own unpublished memoirs is the endlessly fascinating full account of Laura\'s life \x97 from her earliest years through her enduring marriage to Almanzo Wilder, the "farmer boy" of her stories.Draws on documented records and Mrs. Wilder\'s unpublished memoirs to picture the people, places, and events that informed her ninety years and inspired her well-beloved Little House books',
 "The adventures of Laura Ingalls and her family continue as they move from their little house on the banks of Plum Creek to the wilderness of the unsettled Dakota Territory. Here Pa works on the new railroad until he finds a homestead claim that is perfect for their new little house. Laura takes her first train ride as she, her sisters, and their mother come out to live with Pa on the shores of Silver Lake. After a lonely winter in the surveyors' house, Pa puts up the first building in what will soon be a brand-new town on the beautiful shores of Silver Lake. The Ingallses' covered-wagon travels are finally over.",
 "Growing up on his family's farm in New York, Almanzo Wilder wishes for just one thing — his very own horse. But Father doesn't yet trust him with such a big responsibility. Almanzo needs to prove himself — but how?",
 'Laura is almost fifteen. The long winter is over. With spring comes socials, dances, and "Literaries." There is also work to be done. Laura spends many hours each day sewing shirts to help send Mary to a college for the blind. But, in the evenings, Laura makes time for a new caller, Almanzo Wilder.',
 'On the empty winter prairie, gray clouds to the northwest meant only one thing: a blizzard was seconds away. The first blizzard came in October. It snowed almost without stopping until April. The temperature dropped to forty below. Snow reached the roof-tops. And no trains could get through with food and coal. The townspeople began to starve. The Ingalls family barely lived through that winter. And Almanzo Wilder knew he would have to risk his life to save the town.',
 'Based on the real-life adventures of Laura Ingalls Wilder, Little House in the Big Woods is the first book in the award-winning Little House series, which has captivated generations of readers. This edition features the classic black-and-white artwork from Garth Williams.Little House in the Big Woods takes place in 1871 and introduces us to four-year-old Laura, who lives in a log cabin on the edge of the Big Woods of Wisconsin. She shares the cabin with her Pa, her Ma, her sisters Mary and Carrie, and their lovable dog, Jack.Pioneer life isn’t easy for the Ingalls family, since they must grow or catch all their own food as they get ready for the cold winter. But they make the best of every tough situation. They celebrate Christmas with homemade toys and treats, do their spring planting, bring in the harvest in the fall, and make their first trip into town. And every night, safe and warm in their little house, the sound of Pa’s fiddle lulls Laura and her sisters into sleep.The nine books in the timeless Little House series tell the story of Laura’s real childhood as an American pioneer, and are cherished by readers of all generations. They offer a unique glimpse into life on the American frontier, and tell the heartwarming, unforgettable story of a loving family.',
 'Through sloppy usage and low standards on the internet, in e-mail and now "txt msgs", we have made proper punctuation an endangered species. In "Eats, Shoots & Leaves", former editor Lynne Truss dares to say that it is time to look at our commas and semicolons and see them as the wonderful and necessary things they are. If there are only pedants left who care, then so be it. This is a book or people who love punctuation and get upset when it is mishandled. From George Orwell shunning the semicolon, to "New Yorker" editor Harold Ross\'s epic arguments with James Thurber over commas, this lively history makes a powerful case for the preservation of a system of printing conventions that is much too subtle to be mucked about with.',
 'Crow Lake is that rare find, a first novel so quietly assured, so emotionally pitch perfect, you know from the opening page that this is the real thing—a literary experience in which to lose yourself, by an author of immense talent.Here is a gorgeous, slow-burning story set in the rural “badlands” of northern Ontario, where heartbreak and hardship are mirrored in the landscape. For the farming Pye family, life is a Greek tragedy where the sins of the fathers are visited on the sons, and terrible events occur—offstage. Centerstage are the Morrisons, whose tragedy looks more immediate if less brutal, but is, in reality, insidious and divisive. Orphaned young, Kate Morrison was her older brother Matt’s protegee, her fascination for pond life fed by his passionate interest in the natural world. Now a zoologist, she can identify organisms under a microscope but seems blind to the state of her own emotional life. And she thinks she’s outgrown her siblings—Luke, Matt, and Bo—who were once her entire world. In this universal drama of family love and misunderstandings, of resentments harbored and driven underground, Lawson ratchets up the tension with heartbreaking humor and consummate control, continually overturning one’s expectations right to the very end. Tragic, funny, unforgettable, this deceptively simple masterpiece about the perils of hero worship leapt to the top of the bestseller lists only days after being released in Canada and earned glowing reviews in The New York Times and The Globe and Mail, to name a few.',
 "Bean, Ender Wiggins' former right-hand man, has shed his reputation as the smallest student at Battle School. He has completed his military service for the Hegemon, acting as strategist and general in the terrible wars that followed Ender's defeat of the alien empire that attacked Earth. Now he and his wife, Petra, yearn for a safe place to build a family - something he has never known. Yet no such place exists on Earth, a world riddled with Bean's enemies from the past. Once again he must follow in Ender's footsteps and look to the stars.",
 "The war for survival of the planet Lusitania will be fought in the heart of a child named Gloriously Bright.On Lusitania, Ender found a world where humans and pequininos and the Hive Queen could all live together; where three very different intelligent species could find common ground at last. Or so he thought.Lusitania also harbors the descolada, a virus that kills all humans it infects, but which the pequininos require in order to become adults. The Starways Congress so fears the effects of the descolada, should it escape from Lusitania, that they have ordered the destruction of the entire planet, and all who live there. The Fleet is on its way, a second xenocide seems inevitable.Xenocide is the third novel in Orson Scott Card's The Ender Saga.",
 'It is now six years since the secret disaster at Jurassic Park, six years since the extraordinary dream of science and imagination came to a crashing end—the dinosaurs destroyed, the park dismantled, the island indefinitely closed to the public. There are rumors that something has survived....',
 '“As clever and witty a novel as anyone has written in a long time . . . Robbins takes readers on a wild, delightful ride. . . . A delight from beginning to end.”— Buffalo NewsSwitters is a contradiction for all seasons: an anarchist who works for the government; a pacifist who carries a gun; a vegetarian who sops up ham gravy; a cyberwhiz who hates computers; a man who, though obsessed with the preservation of innocence, is aching to deflower his high-school-age stepsister (only to become equally enamored of a nun ten years his senior). Yet there is nothing remotely wishy-washy about Switters. He doesn’t merely pack a pistol. He is a pistol. And as we dog Switters’s strangely elevated heels across four continents, in and out of love and danger, discovering in the process the “true” Third Secret of Fatima, we experience Tom Robbins—that fearless storyteller, spiritual renegade, and verbal break dancer—at the top of his game. On one level this is a fast-paced CIA adventure story with comic overtones; on another it’s a serious novel of ideas that brings the Big Picture into unexpected focus; but perhaps more than anything else, Fierce Invalids is a sexy celebration of language and life.Praise for Fierce Invalids Home From Hot Climates“Superb.” — New York Post\xa0“Dangerous? Wicked? Forbidden? You bet. . . . Pour yourself a bowl of chips and dig in.” — Daily News , New York\xa0“Robbins is a great writer . . . and definitely a provocative rascal.” — The Tennessean“Whoever said truth is stranger than fiction never read a Tom Robbins novel. . . Clever, creative, and witty, Robbins tosses off impassioned observations like handfuls of flower petals.” — San Diego Union-Tribune',
 "Jitterbug Perfume is an epic, which is to say, it begins in the forests of ancient Bohemia and doesn't conclude until nine o'clock tonight [Paris time]. It is a saga, as well. A saga must have a hero, and the hero of this one is a janitor with a missing bottle. The bottle is blue, very, very old, and embossed with the image of a goat-horned god. If the liquid in the bottle is actually is the secret essence of the universe, as some folks seem to think, it had better be discovered soon because it is leaking and there is only a drop or two left.",
 'Now celebrating the 42nd anniversary of\xa0 The Hitchhiker’s Guide to the Galaxy, \xa0soon to be a Hulu original series!“Wild satire . . . The feckless protagonist, Arthur Dent, is reminiscent of Vonnegut heroes.”— Chicago TribuneThe unhappy inhabitants of planet Krikkit are sick of looking at the night sky above their heads—so they plan to destroy it. The universe, that is. Now only five individuals stand between the killer robots of Krikkit and their goal of total annihilation.They are Arthur Dent, a mild-mannered space and time traveler who tries to learn how to fly by throwing himself at the ground and missing; Ford Prefect, his best friend, who decides to go insane to see if he likes it; Slartibartfast, the indomitable vice president of the Campaign for Real Time, who travels in a ship powered by irrational behavior; Zaphod Beeblebrox, the two-headed, three-armed ex-president of the galaxy; and Trillian, the sexy space cadet who is torn between a persistent Thunder God and a very depressed Beeblebrox.How will it all end? Will it end? Only this stalwart crew knows as they try to avert “universal” Armageddon and save life as we know it—and don’t know it!“Adams is one of those rare an author who, one senses, has as much fun writing as one has reading.”— Arizona Daily Star',
 "alternate edition for ISBN 0345418921/9780345418920Facing annihilation at the hands of the warlike Vogons is a curious time to have a cosmically displaced Arthur Dent and his curious comrades in arms as they hurtle through space powered by pure improbability - and desperately in search of a place to eat. Among Arthur's motley shipmates are Ford Prefect, a long-time friend and contributor to the The Hitch Hiker's Guide to the Galaxy; Zaphod Beeblebrox, the three-armed, two-headed ex-president of the galaxy; Tricia McMilan, a fellow Earth refuge who's gone native (her name is Trillian now); and Marvin, who suffers nothing and no one gladly.Source: douglasadams.com",
 'Join author Douglas Adams and zoologist Mark Carwardine as they take off around the world in search of exotic, endangered creatures.',
 "An Inconvenient Truth—Gore's groundbreaking, battle cry of a follow-up to the bestselling Earth in the Balance—is being published to tie in with a documentary film of the same name. Both the book and film were inspired by a series of multimedia presentations on global warming that Gore created and delivers to groups around the world. With this book, Gore, who is one of our environmental heroes—and a leading expert—brings together leading-edge research from top scientists around the world; photographs, charts, and other illustrations; and personal anecdotes and observations to document the fast pace and wide scope of global warming. He presents, with alarming clarity and conclusiveness—and with humor, too—that the fact of global warming is not in question and that its consequences for the world we live in will be disastrous if left unchecked. This riveting new book—written in an accessible, entertaining style—will open the eyes of even the most skeptical.",
 "Gore Vidal's Narratives of Empire series spans the history of the United States from the Revolution to the post-World War II years. With their broad canvas and large cast of fictional and historical characters, the novels in this series present a panorama of the American political and imperial experience as interpreted by one of its most worldly, knowing, and ironic observers.To most Americans, Abraham Lincoln is a monolithic figure, the Great Emancipator and Savior of the Union, beloved by all. In Gore Vidal's Lincoln we meet Lincoln the man and Lincoln the political animal, the president who entered a besieged capital where most of the population supported the South and where even those favoring the Union had serious doubts that the man from Illinois could save it. Far from steadfast in his abhorrence of slavery, Lincoln agonizes over the best course of action and comes to his great decision only when all else seems to fail. As the Civil War ravages his nation, Lincoln must face deep personal turmoil, the loss of his dearest son, and the harangues of a wife seen as a traitor for her Southern connections. Brilliantly conceived, masterfully executed, Gore Vidal's Lincoln allows the man to breathe again.",
 'Once again the incomparable Gore Vidal interprets and animates history -- this time in a panoramic tour of the 5th century B.C. -- and embellishes it with his own ironic humor, brilliant insights, and piercing observations. We meet a vast array of historical figures in a staggering novel of love, war, philosophy, and adventure . . . "There isn\'t a page of CREATION that doesn\'t inform and very few pages that do not delight."-- John Leonard, The New York Times',
 'This is an alternate cover ed. for ISBN 037572706X.The remarkable bestseller about the fourth-century Roman emperor who famously tried to halt the spread of Christianity, Julian is widely regarded as one of Gore Vidal’s finest historical novels.Julian the Apostate, nephew of Constantine the Great, was one of the brightest yet briefest lights in the history of the Roman Empire. A military genius on the level of Julius Caesar and Alexander the Great, a graceful and persuasive essayist, and a philosopher devoted to worshiping the gods of Hellenism, he became embroiled in a fierce intellectual war with Christianity that provoked his murder at the age of thirty-two, only four years into his brilliantly humane and compassionate reign. A marvelously imaginative and insightful novel of classical antiquity, Julian captures the religious and political ferment of a desperate age and restores with blazing wit and vigor the legacy of an impassioned ruler.',
 "Gore Vidal's Narratives of Empire series spans the history of the United States from the Revolution to the post-World War II years. With their broad canvas and large cast of fictional and historical characters, the novels in this series present a panorama of the American political and imperial experience as interpreted by one of its most worldly, knowing, and ironic observers. Burr is a portrait of perhaps the most complex and misunderstood of the Founding Fathers. In 1804, while serving as vice president, Aaron Burr fought a duel with his political nemesis, Alexander Hamilton, and killed him. In 1807, he was arrested, tried, and acquitted of treason. In 1833, Burr is newly married, an aging statesman considered a monster by many. Burr retains much of his political influence if not the respect of all. And he is determined to tell his own story. As his amanuensis, he chooses Charles Schermerhorn Schuyler, a young New York City journalist, and together they explore both Burr's past and the continuing political intrigues of the still young United States.",
 "In this delightful sequel to her bestseller Tender at the Bone, Ruth Reichl returns with more tales of love, life, and marvelous meals. Comfort Me with Apples picks up Reichl's story in 1978, when she puts down her chef's toque and embarks on a career as a restaurant critic. Her pursuit of good food and good company leads her to New York and China, France and Los Angeles, and her stories of cooking and dining with world-famous chefs range from the madcap to the sublime. Throughout it all, Reichl makes each and every course a hilarious and instructive occasion for novices and experts alike. She shares some of her favorite recipes, while also sharing the intimacies of her personal life in a style so honest and warm that readers will feel they are enjoying a conversation over a meal with a friend.",
 "Young Jody Tiflin lives on his father's California ranch. He is thrilled when his father gives him a red pony, and later promises him the colt of a bay mare. Both these gifts bring joy to Jody's life--but tragedy soon follows. As Jody begins to learn the harsh lessons of life and death, he starts to understand what growing up and becoming an adult really means.",
 'The internationally renowned novel about the life and death of Jesus Christ.Hailed as a masterpiece by critics worldwide, The Last Temptation of Christ is a monumental reinterpretation of the Gospels that brilliantly fleshes out Christ’s Passion. This literary rendering of the life of Jesus Christ has courted controversy since its publication by depicting a Christ far more human than the one seen in the Bible. He is a figure who is gloriously divine but earthy and human, a man like any other—subject to fear, doubt, and pain.In elegant, thoughtful prose Nikos Kazantzakis, one of the greats of modern literature, follows this Jesus as he struggles to live out God’s will for him, powerfully suggesting that it was Christ’s ultimate triumph over his flawed humanity, when he gave up the temptation to run from the cross and willingly laid down his life for mankind, that truly made him the venerable redeemer of men.“Spiritual dynamite.” — San Francisco Chronicle“A searing, soaring, shocking novel.” — Time',
 'Waris Dirie ran away from her oppressive life in the African desert when she was barely in her teens, illiterate and impoverished, with nothing to her name but a tattered shawl. She traveled alone across the dangerous Somali desert to Mogadishu — the first leg of a remarkable journey that would take her to London, where she worked as a house servant; then to nearly every corner of the globe as an internationally renowned fashion model; and ultimately to New York City, where she became a human rights ambassador for the U.N. Desert Flower is her extraordinary story.',
 'With her disarming, intimate, completely accessible voice, and dry sense of humor, Nora Ephron shares with us her ups and downs in "I Feel Bad About My Neck," a candid, hilarious look at women who are getting older and dealing with the tribulations of maintenance, menopause, empty nests, and life itself.The woman who brought us "When Harry Met Sally"..., "Sleepless in Seattle", "You\'ve Got Mail", and "Bewitched," and the author of best sellers "Heartburn," "Scribble Scribble," and "Crazy Salad," discusses everything -from how much she hates her purse to how much time she spends attempting to stop the clock: the hair dye, the treadmill, the lotions and creams that promise to slow the aging process but never do. Oh, and she can\'t stand the way her neck looks. But her dermatologist tells her there\'s no quick fix for that.Ephron chronicles her life as an obsessed cook, passionate city dweller, and hapless parent. She recounts her anything-but-glamorous days as a White House intern during the JFK years ("I am probably the only young woman who ever worked in the Kennedy White House that the President did not make a pass at") and shares how she fell in and out of love with Bill Clinton - from a distance, of course. But mostly she speaks frankly and uproariously about life as a woman of a certain age.Utterly courageous, wickedly funny, and unexpectedly moving in its truth telling, "I Feel Bad About My Neck" is a book of wisdom, advice, and laugh-out-loud moments, a scrumptious, irresistible treat.',
 "The four-million-copy international bestseller of the incredible love story between a European woman and an African warrior.The White Masai combines adventure and the pursuit of passion in a page-turning story of two star-crossed lovers from vastly different backgrounds. Corinne, a European entrepreneur, meets Lketinga, a Samburu warrior, while on vacation in Mombasa on Kenya's glamorous coast. Despite language and cultural barriers, they embark on an impossible love affair. Corinne uproots her life to move to Africa—not the romantic Africa of popular culture, but the Africa of the Masai, in the middle of the isolated bush, where five-foot-tall huts made from cow dung serve as homes. Undaunted by wild animals, hunger, and bouts with tropical diseases, she tries to forge a life with Lketinga. But slowly the dream starts to crumble when she can no longer ignore the chasm between their two vastly different cultures.A story that taps into our universal belief in the power of love, The White Masai is at once a hopelessly romantic love story, a gripping adventure yarn, and a compulsively good read.",
 "A cat. A seagull. An impossible task.A worldwide bestseller and the subject of a feature film, THE STORY OF A SEAGULL... is finally out in paperback!Her wings burdened by an oil slick, a seagull struggles to the nearest port to lay her final egg. Exhausted, she lands on a balcony where Zorba the cat is sunning himself. She extracts three extraordinary promises from that he will watch over the egg, that he will not EAT the egg, and that, when it's time, he will teach the baby gull to fly. The first two promises are hard enough, but the third one is surely impossible. Isn't it?",
 'Set in the near future,\xa0 The Wanting Seed \xa0is a Malthusian comedy about the strange world overpopulation will produce. Tristram Foxe and his wife, Beatrice-Joanna, live in their skyscraper world where official family limitation glorifies homosexuality. Eventually, their world is transformed into a chaos of cannibalistic dining-clubs, fantastic fertility rituals, and wars without anger. It is a novel both extravagantly funny and grimly serious.',
 'Dr. Edwin Spindrift, a very ordinary lecturer in linguistics, has been sent home from Burma with a brain tumor. Closer to words than people, his sense of reality is further altered by his condition. The night before he is to be operated on, Spindrift decides―shaven-headed, shirtless, and penniless―to postpone the surgery by escaping from the hospital. Things and people he hardly knew existed outside of his dictionaries swoop down on him as he careens through adventures in nighttime London."Fine, sly, rich comedy." ― New York Times Book Review',
 'Anthony Burgess, author of A Clockwork Orange, is regarded as one of the most original and daring writers in the English language. His work is illuminated by a dazzling imagination, by a gift for character and plot, by a talent for surprise. In Earthly Powers Burgess created his masterpiece. At its center are two twentieth-century men who represent different kinds of power—Kenneth Toomey, eminent novelist, a man who has outlived his contemporaries to survive into honored, bitter, luxurious old age as a celebrity of dubious notoriety; and Don Carlo Campanati, a man of God, eventually beloved Pope, who rises through the Vatican as a shrewd manipulator to become the architect of church revolution and a candidate for sainthood. Through the lives of these two modern men Burgess explores the very essence of power. As each pursues his career—one to sainthood, one to wealthy exile—their relationship becomes the heart of a narrative that incorporates almost everyone of fame and distinction in the social, literary, and political life of America and Europe. This astonishing company is joined together by the art of a great novelist into an explosive and entertaining tour de force that will captivate fans of sweeping historic fiction.',
 'Recipient of the Grand Prix of the Académie Française, Wind, Sand and Stars captures the grandeur, danger, and isolation of flight. Its exciting account of air adventure, combined with lyrical prose and the spirit of a philosopher, makes it one of the most popular works ever written about flying. Translated by Lewis Galantière.',
 'In this gripping novel, Saint-Exupéry tells about the brave men who piloted night mail planes from Patagonia, Chile, and Paraguay to Argentina in the early days of commercial aviation. Preface by André Gide. Translated by Stuart Gilbert.',
 'One night on the heath, the brave and respected general Macbeth encounters three witches who foretell that he will become king of Scotland. At first sceptical, he’s urged on by the ruthless, single-minded ambitions of Lady Macbeth, who suffers none of her husband’s doubt. But seeing the prophecy through to the bloody end leads them both spiralling into paranoia, tyranny, madness, and murder.This shocking tragedy - a violent caution to those seeking power for its own sake - is, to this day, one of Shakespeare’s most popular and influential masterpieces.',
 ' 1599 was an epochal year for Shakespeare and England  Shakespeare wrote four of his most famous plays: Henry the Fifth, Julius Caesar, As You Like It, and, most remarkably, Hamlet; Elizabethans sent off an army to crush an Irish rebellion, weathered an Armada threat from Spain, gambled on a fledgling East India Company, and waited to see who would succeed their aging and childless queen.  James Shapiro illuminates both Shakespeare’s staggering achievement and what Elizabethans experienced in the course of 1599, bringing together the news and the intrigue of the times with a wonderful evocation of how Shakespeare worked as an actor, businessman, and playwright. The result is an exceptionally immediate and gripping account of an inspiring moment in history.',
 'The Zombie War came unthinkably close to eradicating humanity. Max Brooks, driven by the urgency of preserving the acid-etched first-hand experiences of the survivors from those apocalyptic years, traveled across the United States of America and throughout the world, from decimated cities that once teemed with upwards of thirty million souls to the most remote and inhospitable areas of the planet. He recorded the testimony of men, women, and sometimes children who came face-to-face with the living, or at least the undead, hell of that dreadful time. World War Z is the result. Never before have we had access to a document that so powerfully conveys the depth of fear and horror, and also the ineradicable spirit of resistance, that gripped human society through the plague years.Ranging from the now infamous village of New Dachang in the United Federation of China, where the epidemiological trail began with the twelve-year-old Patient Zero, to the unnamed northern forests where untold numbers sought a terrible and temporary refuge in the cold, to the United States of Southern Africa, where the Redeker Plan provided hope for humanity at an unspeakable price, to the west-of-the-Rockies redoubt where the North American tide finally started to turn, this invaluable chronicle reflects the full scope and duration of the Zombie War.Most of all, the book captures with haunting immediacy the human dimension of this epochal event. Facing the often raw and vivid nature of these personal accounts requires a degree of courage on the part of the reader, but the effort is invaluable because, as Mr. Brooks says in his introduction, "By excluding the human factor, aren\'t we risking the kind of personal detachment from history that may, heaven forbid, lead us one day to repeat it? And in the end, isn\'t the human factor the only true difference between us and the enemy we now refer to as \'the living dead\'?"Note: Some of the numerical and factual material contained in this edition was previously published under the auspices of the United Nations Postwar Commission.',
 "In this, one of the most famous of Doyle's mysteries, the tale of an ancient curse and a savage ghostly hound comes frighteningly to life. The gray towers of Baskerville Hall and the wild open country of Dartmoor will haunt the reader as Holmes and Watson seek to unravel the many secrets of the misty English bogs.",
 'The stunning finale to the "New York Times" bestselling series brings Darren face-to-face with his archenemy, Steve Leopard. One of them will die. The other will become the Lord of the Shadows and destroy the world. Is the future written, or can Darren trick destiny?',
 "Book 11 of The Saga Of Darren Shan. Darren's going home. Back to where everything started. The town's changed a lot in the years that he's been away -- but then, so has Darren.Plagued by nightmares of what the future seems to hold, Darren feels uneasy revisiting the place where he was re-born as a child of the night, as though the universe (as though destiny) is plotting to throw something very nasty at him on the streets of his old home.",
 '"If you step through after Harkat, you might never come back. Is your friend worth such an enormous risk?"Darren and Harkat face monstrous obstacles on their desperate quest to the Lake of Souls. Will they survive the savage journey? And what awaits them in the murky waters of the dead? Be careful what you fish for...',
 'With their enemies clamoring for blood, the vampires prepare for a deadly battle--and Darren Shan is framed as public enemy number one in this ninth installment of the "New York Times" bestselling series, now in mass-market paperback.',
 'Two boys – a slow learner stuck in the body of a teenage giant and a tiny Einstein in leg braces – forge a unique friendship when they pair up to create one formidable human force. A wonderful story of triumph over imperfection, shame, and loss.',
 'SCRABBLE may be truly called America\'s game. But for every group of "living-room players" there is someone who is "at one with the board." In Word Freak, Stefan Fatsis introduces readers to those few, exploring the underground world of colorful characters for which the Scrabble game is life — playing competitively in tournaments across the country. It is also the story of how the Scrabble game was invented by an unemployed architect during the Great Depression and how it has grown into the hugely successful, challenging, and beloved game it is today. Along the way, Fatsis chronicles his own obsession with the game and his development as a player from novice to expert. More than a book about hardcore Scrabble players, Word Freak is also an examination of notions of brilliance, memory, language, competition, and the mind that celebrates the uncanny creative powers in us all.',
 "Darren, the vampire's assistant, gets a taste of the city when he leaves the Cirque Du Freak with Evra the snake-boy and Mr. Crepsley. When corpses are discovered--corpses drained of blood-- Darren and Evra are compelled to hunt down whatever foul creature is committing such horrendous acts. Meanwhile, beneath the streets, evil stalks Darren and Evra, and all clues point to Mr. Crepsley. Can they escape, or are they doomed to perish in the tunnels of blood?",
 "In the fourth book of the bestselling Cirque Du Freak series, Darren Shan and Mr. Crepsley embark on a dangerous trek to the very heart of the vampire world. But they face more than the cold on Vampire Mountain-the vampaneze have been there before them.Will a meeting with the Vampire Princes restore Darren's human side, or turn him further toward the darkness? Only one thing is certain-Darren's initiation into the vampire clan is more deadly than he can ever have imagined.",
 'Cirque du Freak is the saga of a young boy whose visit to a mysterious freak show leads him on a journey into a dark world of vampires. Filled with grotesque creatures, murderous vampires, and a petrifying ending, Cirque du Freak will chill, thrill, and leave readers begging for more.',
 'The pursuit begins...Darren Shan, the Vampire Prince, leaves Vampire Mountain on a life or death mission.As part of an elite force, Darren searches the world for the Vampaneze Lord. But the road ahead is long and dangerous - and lined with the bodies of the damned.',
 'Jesus Freaks by dc Talk and The Voice of the Martyrs, is a companion volume to dc Talk\'s album of the same name. It is a book for teenagers about martyrdom, containing dozens of profiles of figures ranging from Stephen, whose martyrdom is described in the Book of Acts, to "Anila and Perveen," two teenage Pakistani girls and Christian believers. In 1997, Perveen was killed for running away in order to avoid marrying a Muslim man; Anila was imprisoned for helping her friend escape. In an introduction to the book, Michael Tait explains its purpose: "In a world built on free will instead of God\'s will, we must be the Freaks. While we may not be called to martyr our lives, we must martyr our way of life. We must put our selfish ways to death and march to a different beat. Then the world will see Jesus." The book\'s design is hip and easy to read, and its summary of Christian persecutions that continue today is useful--and frightening.',
 "Darren Shan was just an ordinary schoolboy - until his visit to the Cirque Du Freak. Now, as he struggles with his new life as a Vampire's Assistant, he tries desperately to resist the one temptation that sickens him, the one thing that can keep him alive. But destiny is calling... the Wolf Man is waiting.",
 'Vampire prince and "vampaneze" killer Darren Shan faces his worst nightmare yet--school--but homework is the least of Darren\'s problems. Bodies are piling up. Time is running out, and the past is catching up with the hunters fast.',
 'The trials: seventeen ways to die unless the luck of the vampire is with you. Darren Shan must pass five fearsome Trials to prove himself to the vampires clan - or face the stakes of the Hall of Death. But Vampire Mountain holds hidden threats. Sinister, potent forces are gathering in the darkness. In this nightmarish world of bloodshed and betrayal, death may be a blessing...',
 "Betrayed by Kurda and reeling from the brutal slaying of Gavner, the vampire's assistant, Darren Shan, finds himself branded a traitor and hunted by the vampire clan. Reissue.",
 '\nThe Book That Inspired The Movie\n My name is Tucker Max, and I am an asshole. I get excessively drunk at inappropriate times, disregard social norms, indulge every whim, ignore the consequences of my actions, mock idiots and posers, sleep with more women than is safe or reasonable, and just generally act like a raging dickhead. But, I do contribute to humanity in one very important way: I share my adventures with the world. \x97from the IntroductionActual reader feedback:  "I find it truly appalling that there are people in the world like you. You are a disgusting, vile, repulsive, repugnant, foul creature. Because of you, I don\'t believe in God anymore. No just God would allow someone like you to exist." "I\'ll stay with God as my lord, but you are my savior. I just finished reading your brilliant stories, and I laughed so hard I almost vomited. I want to bring that kind of joy to people. You\'re an artist of the highest order and a true humanitarian to boot. I\'m in both shock and awe at how much I want to be you." \nNow with 16 Pages of Photos and a New Introduction\n',
 "\nMORE THAN HALF A MILLION COPIES SOLD!\n\xa0\nThe classic adventure story that inspired the new major motion picture\xa0The Way Back, directed by Peter Weir\n\xa0***\xa0“I hope The Long Walk will remain as a memorial to all those who live and die for freedom, and for all those who for many reasons could not speak for themselves.”—Slavomir Rawicz\xa0“A poet with steel in his soul.” —New York Times \xa0“One of the most amazing, heroic stories of this or any other time.” —Chicago Tribune \xa0“A book filled with the spirit of human dignity and the courage of men seeking freedom.” —Los Angeles Times \xa0“The Long Walk is a book that I absolutely could not put down and one that I will never forget.” —Stephen Ambrose, historian and presidential biographer\xa0\xa0***\xa0In 1941, the author and six fellow prisoners of war escaped a Soviet labor camp in Yakutsk—a camp where enduring hunger, cold, untended wounds, and untreated illnesses, and avoiding daily executions were everyday feats. Their march—over thousands of miles by foot—out of Siberia, through China, the Gobi Desert, Tibet, and over the Himalayas to British India is a remarkable statement about man’s desire to be free. \xa0\xa0Written in a hauntingly detailed, no-holds-barred way, the book inspired the Peter Wier film The Way Back, due for release in late 2010. Previous editions have sold hundreds of thousands of copies; this edition includes an afterword written by the author shortly before his death, as well as the author's introduction to the book's Polish edition. \xa0Guaranteed to forever stay in the reader's mind, The Long Walk will remain a testament to the strength of the human spirit, and the universal desire for freedom and dignity. \xa0***\nSix-time Academy Award–nominee Peter Weir (Master and Commander, The Truman Show, and The Dead Poets Society) recently directed The Way Back, a much-anticipated film based on The Long Walk. Starring Colin Farrell, Jim Sturgess, and Ed Harris, it is due for release in late 2010.\n\xa0",
 'Against the wishes of his mother, sixteen-year-old Ray Garraty is about to compete in the annual grueling match of stamina and wits known as The Long Walk. One hundred boys must keep a steady pace of four miles per hour without ever stopping... with the winner being awarded "The Prize"—anything he wants for the rest of his life. But, as part of this national tournament that sweeps through a dystopian America year after year, there are some harsh rules that Garraty and ninety-nine others must adhere to in order to beat out the rest. There is no finish line—the winner is the last man standing. Contestants cannot receive any outside aid whatsoever. Slow down under the speed limit and you\'re given a warning. Three warnings and you\'re out of the game—permanently...',
 'In a searing novel of love and loyalty, guilt and honor, the acclaimed author of the #1 New York Times bestseller The Horse Whisperer gives his millions of readers another hero…His name is Connor Ford and he falls like an angel of mercy from the sky, braving the flames to save the woman he loves but knows he cannot have. For Julia Bishop is the partner of his best friend and fellow “smoke jumper,” Ed Tully. Julia loves them both–until a fiery tragedy on Montana’s Snake Mountain forces her to choose between them, and burns a brand on all their hearts.In the wake of the fire, Connor embarks on a harrowing journey to the edge of human experience, traveling the world’s worst wars and disasters to take photographs that find him fame but never happiness. Reckless of a life he no longer wants, again and again he dares death to take him, until another fateful day on another continent, he must walk through fire once more…',
 'Meet Rachel Walsh. She has a pair of size 8 feet and such a fondness for recreational drugs that her family has forked out the cash for a spell in Cloisters – Dublin’s answer to the Betty Ford Clinic. She’s only agreed to her incarceration because she’s heard that rehab is wall-to-wall jacuzzis, gymnasiums and rock stars going tepid turkey – and it’s about time she had a holiday.But what Rachel doesn’t count on are the toe-curling embarrassments heaped on her by family and group therapy, the dearth of sex, drugs and rock’n’roll – and missing Luke, her ex. What kind of a new start in life is this?',
 "Jojo Harvey is a dead ringer for Jessica Rabbit and the most ferocious literary agent in town. A former NYPD cop, she now lives in London making million-dollar book deals while trying to make partner at her firm . . . all the while sleeping with the boss man. Lily Wright is an author who believes in karma, and is waiting for the sky to fall after stealing her former best friend's man. Though her first book failed to sell, her life turns upside down when her most recent book becomes a huge bestseller. Gemma Hogan is an event designer extraordinaire, but her personal life is nonexistent after losing the love of her life and her best friend in one fell swoop. To make matters worse, her father has just left her mother. While taking care of her mother, she e-mails a close colleague about her frustrations, who in turn forwards the hilarious e-mails to a famous literary agent named Jojo Harvey, who just happens to represent her former friend, now enemy, Lily Wright. . . . Written in the charming and chatty voice that has become Marian Keyes's signature style, this hilarious and heartwarming novel proves there are three sides to every story . . . especially in the world of publishing!",
 'Ed, Alphonse and their mechanic Winry go south in search of Izumi Curtis, the master alchemist who taught the brothers how to use alchemy. But in the boomtown of Rush Valley, an encounter with a pickpocket turns them down a different path in search of an auto-mail blacksmith whose handiwork is the best that Winry has ever seen. Then the action flashes back to the past to show how Ed and Alphonse first learned alchemy...',
 'In one of the most important and beloved Latin American works of the twentieth century, Isabel Allende weaves a luminous tapestry of three generations of the Trueba family, revealing both triumphs and tragedies. Here is patriarch Esteban, whose wild desires and political machinations are tempered only by his love for his ethereal wife, Clara, a woman touched by an otherworldly hand. Their daughter, Blanca, whose forbidden love for a man Esteban has deemed unworthy infuriates her father, yet will produce his greatest joy: his granddaughter Alba, a beautiful, ambitious girl who will lead the family and their country into a revolutionary future.The House of the Spirits is an enthralling saga that spans decades and lives, twining the personal and the political into an epic novel of love, magic, and fate.',
 "Every major character in Until I Find You has been marked for life – not only William Burns, a church organist who is addicted to being tattooed, but also William's son, Jack, an actor who is shaped as a child by his relationships with older women. And Jack's mother, Alice – a Toronto tattoo artist – has been permanently damaged by William's rejection of her. This is a novel about the loss of innocence, on many levels.",
 "An Arab and a Jew open a restaurant together across the street from the United Nations... It sounds like the beginning of an ethnic joke, but it's the axis around which spins this gutsy, fun-loving and alarmingly provocative novel, widely acclaimed as among Robbins's very best. As a dessert spoon mystifies, a waitress takes",
 'Folksy and fresh, endearing and affecting, Fried Green Tomatoes at the Whistle Stop Cafe is a now-classic novel about two women: Evelyn, who is in the sad slump of middle age, and gray-headed Mrs. Threadgoode, who is telling her life story. Her tale includes two more women, the irrepressibly daredevilish tomboy Idgie and her friend Ruth who back in the thirties ran a little place in Whistle Stop, Alabama, offering good coffee, southern barbecue, and all kinds of love and laughter, even an occasional murder. And as the past unfolds, the present will never be quite the same again.',
 "Becky has a fabulous flat in London's trendiest neighborhood, a troupe of glamorous socialite friends, and a closet brimming with the season's must-haves. The only trouble is that she can't actually afford it–not any of it.Her job writing at Successful Savings not only bores her to tears, it doesn't pay much at all. And lately Becky's been chased by dismal letters from the bank –letters with large red sums she can't bear to read–and they're getting ever harder to ignore.She tries cutting back. But none of her efforts succeeds. Becky's only consolation is to buy herself something ... just a little something....Finally a story arises that Becky actually cares about, and her front-page article catalyzes a chain of events that will transform her life–and the lives of those around her–forever.",
 "Becky thought being married to Luke Brandon would be one big Tiffany box of happiness. But to be honest, it's not quite as dreamy as she'd hoped.The trouble started on honeymoon, when she told Luke the tiniest little fib, about the teeniest little purchase. Now she's on a strict budget, she doesn't have a job - and worst of all her beloved Suze has a new best friend. Then she receives some incredible news. She has a long-lost sister!Becky has never been more excited. Finally, a real sister! They'll have so much in common! They can go shopping together... choose shoes together... have manicures together...Until she meets her - and gets the shock of her life. It can't be true. Surely Becky Bloomwood's long-lost sister can't... hate shopping?",
 'The irresistible heroine of Confessions of a Shopaholic and Shopaholic Ties the Knot is back! And this time Becky Bloomwood and her credit cards are headed across the Atlantic.... With her shopping excesses (somewhat) in check and her career as a TV financial guru thriving, Becky\'s biggest problem seems to be tearing her entrepreneur boyfriend, Luke, away from work for a romantic country weekend. And worse, figuring out how to pack light. But packing takes on a whole new meaning when Luke announces he\'s moving to New York for business--and he asks Becky to go with him! Before you can say "Prada sample sale," Becky has landed in the Big Apple, home of Park Avenue penthouses and luxury boutiques. Surely it\'s only a matter of time until she becomes an American TV celebrity, and she and Luke are the toast of Gotham society. Nothing can stand in their way, especially with Becky\'s bills miles away in London. But then an unexpected disaster threatens her career prospects, her relationship with Luke, and her available credit line! Shopaholic Takes Manhattan--but will she have to return it?',
 "For once in Becky Bloomwood's life, things are going smoothly. She's got the dream job as a personal shopper (spending other people's money - and getting paid for it). She's got a fabulous Manhattan apartment with her boyfriend Luke. They've even opened a joint bank account (although they can't quite agree on whether a Miu Miu skirt counts as a household expense).Then Luke proposes - and all of a sudden life gets hectic. Becky's mum in rural Surrey wants one thing, Luke's mother in New York wants the complete opposite. Becky knows she has to sit down and decide - but to be honest, it's a lot more fun testing cake, trying on dresses and registering wedding presents. But time's ticking by, plans are being made both sides of the Atlantic and soon she realizes she's in trouble...",
 "Becky Brandon's life is blooming. She's working at London's newest big store, The Look, house-hunting with husband Luke (her secret wish is a Shoe Room)... and she's pregnant. She couldn't be more overjoyed--especially after discovering that shopping cures morning sickness. Everything has to be perfect for her baby: from the designer nursery and the latest stroller to top-of-the-line medical care.But when the must-have celebrity obstetrician Becky's been so desperate to see turns out to be Luke's glamorous, intellectual ex-girlfriend, Becky's perfect world starts to crumble. She's shopping for two... but are there three in her marriage?",
 'Perhaps one of the most revolutionary works of philosophy ever presented, The Phenomenology of Spirit is Hegel\'s 1807 work that is in numerous ways extraordinary. It begins with a Preface, created after the rest of the manuscript was completed, that explains the core of his method and what sets it apart from any preceding philosophy. The Introduction, written before the rest of the work, summarizes and completes Kant\'s ideas on skepticism by rendering it moot and encouraging idealism and self-realization. The body of the work is divided into six sections of varying length, entitled "Consciousness," "Self-Consciousness," "Reason," "Spirit," "Religion," and "Absolute Knowledge." A myriad of topics are discussed, and explained in such a harmoniously complex way that the method has been termed Hegelian dialectic. Ultimately, the work as a whole is a remarkable study of the mind\'s growth from its direct awareness to scientific philosophy, proving to be a difficult yet highly influential and enduring work.',
 "Outstanding translations by leading contemporary scholars--many commissioned especially for this volume--are presented here in the first single edition to include the entire surviving corpus of works attributed to Plato in antiquity. In his introductory essay, John Cooper explains the presentation of these works, discusses questions concerning the chronology of their composition, comments on the dialogue form in which Plato wrote, and offers guidance on approaching the reading and study of Plato's works. Also included are concise introductions by Cooper and Hutchinson to each translation, meticulous annotation designed to serve both scholar and general reader, and a comprehensive index. This handsome volume offers fine paper and a high-quality Smyth-sewn cloth binding in a sturdy, elegant edition.",
 "A magical fantasy that is fast-paced and easy-to-read. Charlie Bone has a special gift- he can hear people in photographs talking!The fabulous powers of the Red King were passed down through his descendants, after turning up quite unexpectedly, in someone who had no idea where they came from. This is what happened to Charlie Bone, and to some of the children he met behind the grim, gray walls of Bloor's Academy.His scheming aunts decide to send him to Bloor Academy, a school for geniuses where he uses his gifts to discover the truth despite all the dangers that lie ahead.",
 "Dear Reader:Welcome to my very first historical romance, Devil's Embrace, titled by my husband, and first published in 1982. I've updated it stylistically, edited it, trimmed it just a bit, and the art department designed a splendid new cover that magically includes some of the original art work.Cassie Brougham and Anthony Welles, Earl of Clare, are my favorite characters of all time. Cassie has known the Earl of Clare all her life, but she's in love with a soldier she's been secretly writing to since she was fifteen. Now he's home and they're going to be married. But the day before her wedding, Anthony Welles kidnaps her aboard his yacht and sails away with her to Genoa, Italy; his stated intention to make her his wife.Cassie is not happy about this.This is an unusual love story, to say the least, that will make you weep and laugh and root for what you know is best for both of them. There is pain, doubt, captivation, and escape. But regardless of what happens, this is a love that is of the forever sort, something that is true and very real, and will stay close to your heart, I hope, for a very long time.If you missed Devil's Embrace the first time around, do read it now.Enjoy,Catherine Coulter (The Author)",
 'San Francisco art patron Bibi Chen has planned a journey of the senses along the famed Burma Road for eleven lucky friends. But after her mysterious death, Bibi watches aghast from her ghostly perch as the travelers veer off her itinerary and embark on a trail paved with cultural gaffes and tribal curses, Buddhist illusions and romantic desires. On Christmas morning, the tourists cruise across a misty lake and disappear.With picaresque characters and mesmerizing imagery, Saving Fish from Drowning gives us a voice as idiosyncratic, sharp, and affectionate as the mothers of The Joy Luck Club. Bibi is the observant eye of human nature–the witness of good intentions and bad outcomes, of desperate souls and those who wish to save them. In the end, Tan takes her readers to that place in their own heart where hope is found.',
 'In powerful black-and-white comic strip images, Satrapi tells the story of her life in Tehran from ages six to fourteen, years that saw the overthrow of the Shah’s regime, the triumph of the Islamic Revolution, and the devastating effects of war with Iraq. The intelligent and outspoken only child of committed Marxists and the great-granddaughter of one of Iran’s last emperors, Marjane bears witness to a childhood uniquely entwined with the history of her country.Persepolis paints an unforgettable portrait of daily life in Iran and of the bewildering contradictions between home life and public life. Marjane’s child’s-eye view of dethroned emperors, state-sanctioned whippings, and heroes of the revolution allows us to learn as she does the history of this fascinating country and of her own extraordinary family. Intensely personal, profoundly political, and wholly original, Persepolis is at once a story of growing up and a reminder of the human cost of war and political repression. It shows how we carry on, with laughter and tears, in the face of absurdity. And, finally, it introduces us to an irresistible little girl with whom we cannot help but fall in love.',
 'In Persepolis, heralded by the Los Angeles Times as "one of the freshest and most original memoirs of our day," Marjane Satrapi dazzled us with her heartrending memoir-in-comic-strips about growing up in Iran during the Islamic Revolution. Here is the continuation of her fascinating story. In 1984, Marjane flees fundamentalism and the war with Iraq to begin a new life in Vienna. Once there, she faces the trials of adolescence far from her friends and family, and while she soon carves out a place for herself among a group of fellow outsiders, she continues to struggle for a sense of belonging.Finding that she misses her home more than she can stand, Marjane returns to Iran after graduation. Her difficult homecoming forces her to confront the changes both she and her country have undergone in her absence and her shame at what she perceives as her failure in Austria. Marjane allows her past to weigh heavily on her until she finds some like-minded friends, falls in love, and begins studying art at a university. However, the repression and state-sanctioned chauvinism eventually lead her to question whether she can have a future in Iran.As funny and poignant as its predecessor, Persepolis 2 is another clear-eyed and searing condemnation of the human cost of fundamentalism. In its depiction of the struggles of growing up--here compounded by Marjane\'s status as an outsider both abroad and at home--it is raw, honest, and incredibly illuminating.',
 'In the tradition of Jon Krakauer’s Into Thin Air and Sebastian Junger’s The Perfect Storm comes a true tale of riveting adventure in which two weekend scuba divers risk everything to solve a great historical mystery–and make history themselves.For John Chatterton and Richie Kohler, deep wreck diving was more than a sport. Testing themselves against treacherous currents, braving depths that induced hallucinatory effects, navigating through wreckage as perilous as a minefield, they pushed themselves to their limits and beyond, brushing against death more than once in the rusting hulks of sunken ships.But in the fall of 1991, not even these courageous divers were prepared for what they found 230 feet below the surface, in the frigid Atlantic waters sixty miles off the coast of New Jersey: a World War II German U-boat, its ruined interior a macabre wasteland of twisted metal, tangled wires, and human bones–all buried under decades of accumulated sediment.No identifying marks were visible on the submarine or the few artifacts brought to the surface. No historian, expert, or government had a clue as to which U-boat the men had found. In fact, the official records all agreed that there simply could not be a sunken U-boat and crew at that location.Over the next six years, an elite team of divers embarked on a quest to solve the mystery. Some of them would not live to see its end. Chatterton and Kohler, at first bitter rivals, would be drawn into a friendship that deepened to an almost mystical sense of brotherhood with each other and with the drowned U-boat sailors–former enemies of their country. As the men’s marriages frayed under the pressure of a shared obsession, their dives grew more daring, and each realized that he was hunting more than the identities of a lost U-boat and its nameless crew.Author Robert Kurson’s account of this quest is at once thrilling and emotionally complex, and it is written with a vivid sense of what divers actually experience when they meet the dangers of the ocean’s underworld. The story of Shadow Divers often seems too amazing to be true, but it all happened, two hundred thirty feet down, in the deep blue sea.',
 "In this riveting and adventure-packed follow-up to the award-winning New York Times bestseller Peter and the Starcatchers, Peter leaves the relative safety of Mollusk Island - along with his trusted companion, Tinker Bell - for the dark and dangerous streets of London. On a difficult journey across the sea, he and Tink discover the mysterious and deadly Lord Ombra, who is intent on recovering the missing starstuff - celestial dust that contains unimagined powers. In London, Peter attempts to track down the indomitable Molly, hoping that together they can combat Ombra's determined forces. But London is not Mollusk Island; Peter is not the boy he used to be; and Lord Ombra - the Shadow Master - is unlike anything Peter, or the world, has ever seen.Dave Barry and Ridley Pearson have done it again - written a compulsively readable, magical, impossible-to-put-down tale that will delight readers of all ages.",
 "Welcome to Battleschool.Growing up is never easy. But try living on the mean streets as a child begging for food and fighting like a dog with ruthless gangs of starving kids who wouldn't hesitate to pound your skull into pulp for a scrap of apple. If Bean has learned anything on the streets, it's how to survive. And not with fists. He is way too small for that. But with brains.Bean is a genius with a magician's ability to zero in on his enemy and exploit his weakness.What better quality for a future general to lead the Earth in a final climactic battle against a hostile alien race, known as Buggers. At Battleschool Bean meets and befriends another future commander - Ender Wiggins - perhaps his only true rival.Only one problem: for Bean and Ender, the future is now.Ender's Shadow is the book that launched The Shadow Series, and the parallel novel to Orson Scott Card's science fiction classic, Ender's Game.",
 'Through the eyes of a Baltimore lawyer named Quentin Clark, Pearl opens a new window on the truth behind Poe’s demise, literary history’s most persistent enigma.“I present to you . . . the truth about this man’s death and my life.”Baltimore, 1849. The body of Edgar Allan Poe has been buried in an unmarked grave. The public, the press, and even Poe’s own family and friends accept the conclusion that Poe was a second-rate writer who met a disgraceful end as a drunkard. Everyone, in fact, seems to believe this except a young Baltimore lawyer named Quentin Clark, an ardent admirer who puts his own career and reputation at risk in a passionate crusade to salvage Poe’s.As Quentin explores the puzzling circumstances of Poe’s demise, he discovers that the writer’s last days are riddled with unanswered questions the police are possibly willfully ignoring. Just when Poe’s death seems destined to remain a mystery, and forever sealing his ignominy, inspiration strikes Quentin–in the form of Poe’s own stories. The young attorney realizes that he must find the one person who can solve the strange case of Poe’s death: the real-life model for Poe’s brilliant fictional detective character, C. Auguste Dupin, the hero of ingenious tales of crime and detection.In short order, Quentin finds himself enmeshed in sinister machinations involving political agents, a female assassin, the corrupt Baltimore slave trade, and the lost secrets of Poe’s final hours. With his own future hanging in the balance, Quentin Clark must turn master investigator himself to unchain his now imperiled fate from that of Poe’s.Following his phenomenal debut novel, The Dante Club, Matthew Pearl has once again crossed pitch-perfect literary history with innovative mystery to create a beautifully detailed, ingeniously plotted tale of suspense. Pearl’s groundbreaking research–featuring documented material never published before–opens a new window on the truth behind Poe’s demise, literary history’s most persistent enigma. The resulting novel is a publishing event that, through sublime craftsmanship, subtle wit, and devious twists, does honor to Poe himself.',
 "The War is over, won by Ender Wiggin and his team of brilliant child-warriors. The enemy is destroyed, the human race is saved. Ender himself refuses to return to the planet, but his crew has gone home to their families, scattered across the globe. The battle school is no more.But with the external threat gone, the Earth has become a battlefield once more. The children of the Battle School are more than heroes; they are potential weapons that can bring power to the countries that control them. One by one, all of Ender's Dragon Army are kidnapped. Only Bean escapes; and he turns for help to Ender's brother Peter.Peter Wiggin, Ender's older brother, has already been manipulating the politics of Earth from behind the scenes. With Bean's help, he will eventually rule the world.",
 'The seals of Shayol Ghul are weak now, and the Dark One reaches out. The Shadow is rising to cover humankind.In Tar Valon, Min sees portents of hideous doom. Will the White Tower itself be broken?In the Two Rivers, the Whitecloaks ride in pursuit of a man with golden eyes, and in pursuit of the Dragon Reborn.In Cantorin, among the Sea Folk, High Lady Suroth plans the return of the Seanchan armies to the mainland.In the Stone of Tear, the Lord Dragon considers his next move. It will be something no one expects, not the Black Ajah, not Tairen nobles, not Aes Sedai, not Egwene or Elayne or Nynaeve.Against the Shadow rising stands the Dragon Reborn.....',
 "Seven years ago Kaylin fled the crime-riddled streets of Nightshade, knowing that something was after her. Children were being murdered — and all had the same odd markings that mysteriously appeared on her own skin...Since then, she's learned to read, she's learned to fight and she's become one of the vaunted Hawks who patrol and police the City of Elantra. Alongside the winged Aerians and immortal Barrani, she's made a place for herself, far from the mean streets of her birth.But children are once again dying, and a dark and familiar pattern is emerging, Kaylin is ordered back into Nightshade with a partner she knows she can't trust, a Dragon lord for a companion and a device to contain her powers — powers that no other human has. Her task is simple — find the killer, stop the murders... and survive the attentions of those who claim to be her allies!",
 'Here is the untold story of the events that took place between the movies The Empire Strikes Back and Return of the Jedi: a novel in which Darth Vader still lives--and battles a villain as powerful and evil as himself.SHADOWS OF THE EMPIREIt is a time of crisis. Han Solo, frozen in carbonite, is being taken to the vile gangster Jabba the Hutt. As Princess Leia mounts a rescue mission including Luke Skywalker, Lando Calrissian, and a brilliant young pilot, Darth Vader pits himself against a cunning and ruthless rival. Xizor is the leader of a powerful crime syndicate who seeks to supplant Vader for the favor of their mutual master, the dreaded Emperor. Their target: Luke Skywalker. Suddenly Luke finds himself the potential prize of the two most evil entities in the galaxy--one who wants him alive...and one who wants him dead.',
 "Alternate cover edition of ISBN 9780679750536With the same deadpan mania and genius for dislocation that he brought to his internationally acclaimed novels A Wild Sheep Chase and Hard-Boiled Wonderland and the End of the World, Haruki Murakami makes this collection of stories a determined assault on the normal. A man sees his favorite elephant vanish into thin air; a newlywed couple suffers attacks of hunger that drive them to hold up a McDonald's in the middle of the night; and a young woman discovers that she has become irresistible to a little green monster who burrows up through her backyard.By turns haunting and hilarious, The Elephant Vanishes is further proof of Murakami's ability to cross the border between separate realities -- and to come back bearing treasure.",
 'alternate cover can be found hereSumire is in love with a woman seventeen years her senior. But whereas Miu is glamorous and successful, Sumire is an aspiring writer who dresses in an oversized second-hand coat and heavy boots like a character in a Kerouac novel.Sumire spends hours on the phone talking to her best friend K about the big questions in life: what is sexual desire, and should she ever tell Miu how she feels for her? Meanwhile K wonders whether he should confess his own unrequited love for Sumire.Then, a desperate Miu calls from a small Greek island: Sumire has mysteriously vanished...',
 'Still Life with Woodpecker is a sort of a love story that takes place inside a pack of Camel cigarettes. It reveals the purpose of the moon, explains the difference between criminals andoutlaws, examines the conflict between social activism and romantic individualism, and paints a portrait of contemporary society that includes powerful Arabs, exiled royalty, and pregnant cheerleaders. It also deals withthe problem of redheads. "From the Trade Paperback edition."',
 'A paperback original, which describes a bizarre weekend through the eyes of a young broker who has just experienced a stockmarket crash. From the author of EVEN COWGIRLS GET THE BLUES.',
 'Imagine there are American MIAs who chose to remain missing after the Vietnam War. Imagine a family in which four generations of strong, alluring women share a mysterious connection to an outlandish figure from Japanese folklore. Imagine them part of a novel that only Tom Robbins could create? A magically crafted work as timeless as myth yet as topical as the latest international threat. But no matter how hard you try, you\'ll never imagine what you\'ll find inside the Villa Incognito: a tilt-a-whirl of identity, masquerade, and disguise that dares to pull off "the false mustache of the world" and reveal the even greater mystery underneath. For neither the mists of Laos nor the Bangkok smog, neither the overcast of Seattle nor the fog of San Francisco, neither the murk of the intelligence community nor the mummery of the circus can obscure the pure linguistic phosphor that illuminates every page of one of America\'s most consistently surprising and inventive writers.',
 'What if the Second Coming didn\'t quite come off as advertised? What if "the corpse" on display in that funky roadside zoo is really who they say it is - what does that portend for the future of western civilization? And what if a young clairvoyant named Amanda reestablishes the flea circus as popular entertainment, and fertility worship as the principal religious form of our high-tech age? Another Roadside Attraction answers those questions and a lot more. It tell us, for example, what the sixties were truly all about, not by reporting on the psychedelic decade but by recreating it, from the inside out. In the process, this stunningly original seriocomic thriller is fully capable of simultaneously eating a literary hot dog and eroding the borders of the mind.',
 'Librarian note: Alternate cover edition for this ISBN can be found here.Mother Night is a daring challenge to our moral sense. American Howard W. Campbell, Jr., a spy during World War II, is now on trial in Israel as a Nazi war criminal. But is he really guilty? In this brilliant book rife with true gallows humor, Vonnegut turns black and white into a chilling shade of gray with a verdict that will haunt us all.',
 'Galápagos takes the reader back one million years, to A.D. 1986. A simple vacation cruise suddenly becomes an evolutionary journey. Thanks to an apocalypse, a small group of survivors stranded on the Galápagos Islands are about to become the progenitors of a brave, new, and totally different human race. In this inimitable novel, America’s master satirist looks at our world and shows us all that is sadly, madly awry—and all that is worth saving.',
 'According to science-fiction writer Kilgore Trout, a global timequake will occur in New York City on 13th February 2001. It is the moment when the universe suffers a crisis of conscience. Should it expand or make a great big bang? It decides to wind the clock back a decade to 1991, making everyone in the world endure ten years of deja-vu and a total loss of free will – not to mention the torture of reliving every nanosecond of one of the tawdiest and most hollow decades.With his trademark wicked wit, Vonnegut addresses memory, suicide, the Great Depression, the loss of American eloquence, and the obsolescent thrill of reading books.',
 '\nSlapstick\n presents an apocalyptic vision as seen through the eyes of the current King of Manhattan (and last President of the United States), a wickedly irreverent look at the all-too-possible results of today’s follies. But even the end of life-as-we-know-it is transformed by Kurt Vonnegut’s pen into hilarious farce—a final slapstick that may be the Almighty’s joke on us all.',
 'Kurt Vonnegut’s first novel spins the chilling tale of engineer Paul Proteus, who must find a way to live in a world dominated by a supercomputer and run completely by machines. Paul’s rebellion is vintage Vonnegut—wildly funny, deadly serious, and terrifyingly close to reality.Alternate cover edition here',
 'Broad humor and bitter irony collide in this fictional autobiography of Rabo Karabekian, who, at age seventy-one, wants to be left alone on his Long Island estate with the secret he has locked inside his potato barn. But then a voluptuous young widow badgers Rabo into telling his life story—and Vonnegut in turn tells us the plain, heart-hammering truth about man’s careless fancy to create or destroy what he loves.',
 "Ray Bradbury, America's most beloved storyteller, has spent a lifetime carrying readers to exhilarating and dangerous places, from dark street comers in unfamiliar cities and towns to the edge of the universe. Now, in an extraordinary flight of the imagination a half-century in the making, he takes us to a most wondrous destination: into the heart of an Eternal Family.They have lived for centuries in a house of legend and mystery in upper Illinois -- and they are not like other midwesterners. Rarely encountered in daylight hours, their children are curious and wild; their old ones have survived since before the Sphinx first sank its paws deep in Egyptian sands. And some sleep in beds with lids.Now the house is being readied in anticipation of the gala homecoming that will gather together the farflung branches of this odd and remarkable family. In the past-midnight stillness can be detected the soft fluttering of Uncle Einars wings. From her realm of sleep, Cecy, the fairest and most special daughter, can feel the approach of many a welcome being -- shapeshifter, telepath, somnambulist, vampire -- as she flies high in the consciousness of bird and bat.But in the midst of eager anticipation, a sense of doom pervades. For the world is changing. And death, no stranger, will always shadow this most singular family: Father, arisen from the Earth; Mother, who never sleeps but dreams; A Thousand Times Great Grandmére; Grandfather, who keeps the wildness of youth between his ears.And the boy who, more than anyone, carries the burden of time on his shoulders: Timothy, the sad and different foundling son who must share it all, remember, and tell...and who, alone out of all of them, must one day age and wither and die.By turns lyrical, wistful, poignant, and chilling, From the Dust Returned is the long-awaited new novel by the peerless Ray Bradbury -- a book that will surely be numbered among his most enduring masterworks.",
 'In 1936 George Orwell travelled to Spain to report on the Civil War and instead joined the fight against the Fascists. This famous account describes the war and Orwell’s own experiences. Introduction by Lionel Trilling.',
 'London, 1936. Gordon Comstock has declared war on the money god; and Gordon is losing the war. Nearly 30 and "rather moth-eaten already," a poet whose one small book of verse has fallen "flatter than any pancake," Gordon has given up a "good" job and gone to work in a bookshop at half his former salary. Always broke, but too proud to accept charity, he rarely sees his few friends and cannot get the virginal Rosemary to bed because (or so he believes), "If you have no money ... women won\'t love you." On the windowsill of Gordon\'s shabby rooming-house room is a sickly but unkillable aspidistra--a plant he abhors as the banner of the sort of "mingy, lower-middle-class decency" he is fleeing in his downward flight.In Keep the Aspidistra Flying, George Orwell has created a darkly compassionate satire to which anyone who has ever been oppressed by the lack of brass, or by the need to make it, will all too easily relate. He etches the ugly insanity of what Gordon calls "the money-world" in unflinching detail, but the satire has a second edge, too, and Gordon himself is scarcely heroic. In the course of his misadventures, we become grindingly aware that his radical solution to the problem of the money-world is no solution at all--that in his desperate reaction against a monstrous system, he has become something of a monster himself. Orwell keeps both of his edges sharp to the very end--a "happy" ending that poses tough questions about just how happy it really is. That the book itself is not sour, but constantly fresh and frequently funny, is the result of Orwell\'s steady, unsentimental attention to the telling detail; his dry, quiet humor; his fascination with both the follies and the excellences of his characters; and his courageous refusal to embrace the comforts of any easy answer.',
 "Set in the days of the Empire, with the British ruling in Burma, Orwell's book describes corruption and imperial bigotry. Flory, a white timber merchant, befriends Dr Veraswami, a black enthusiast for the Empire, whose downfall can only be prevented by membership at an all-white club.",
 "The groundbreaking #1 New York Times Bestseller—updated for the 50th Anniversary with a New Foreword by Molly Jong-Fast and a New Introduction by Taffy Brodesser-Akner!“The boundary-breaking novel that redefined sexuality.”—O MagazineIsadora Wing is tired. Tired of being psychoanalyzed. Tired of grad school. Tired of fighting with her husband. Tired of having unfulfilled desires. She thinks she knows what she's searching for and how to achieve it. But her quest to engage in no-strings-attached sex quickly shifts into a journey of self-discovery that will leave her questioning her own mind, her ideals, and what she truly wants in life....Originally published in 1973, the ground-breaking, uninhibited story of Isadora Wing and her desire to fly free caused a national sensation. It fueled fantasies, ignited debates, and introduced a notorious new phrase to the English language. Now, after fifty years, this revolutionary novel still stands as a timeless tale of self-discovery, liberation, and womanhood.“Smart, bold, bracing and, importantly, extremely funny.”—Meg Wolitzer",
 'In their youth, Florentino Ariza and Fermina Daza fall passionately in love. When Fermina eventually chooses to marry a wealthy, well-born doctor, Florentino is heartbroken, but he is a romantic. As he rises in his business career he whiles away the years in 622 affairs—yet he reserves his heart for Fermina. Her husband dies at last, and Florentino purposefully attends the funeral. Fifty years, nine months, and four days after he first declared his love for Fermina, he will do so again.',
 'In The Unbearable Lightness of Being, Milan Kundera tells the story of a young woman in love with a man torn between his love for her and his incorrigible womanizing and one of his mistresses and her humbly faithful lover. This magnificent novel juxtaposes geographically distant places, brilliant and playful reflections, and a variety of styles, to take its place as perhaps the major achievement of one of the world’s truly great writers.',
 "The Audacity of Hope is Barack Obama's call for a new kind of politics—a politics that builds upon those shared understandings that pull us together as Americans. Lucid in his vision of America's place in the world, refreshingly candid about his family life and his time in the Senate, Obama here sets out his political convictions and inspires us to trust in the dogged optimism that has long defined us and that is our best hope going forward.",
 "The most authoritative life of the Chinese leader ever written, Mao: The Unknown Story is based on a decade of research, and on interviews with many of Mao's close circle in China who have never talked before -- and with virtually everyone outside China who had significant dealings with him. It is full of startling revelations, exploding the myth of the Long March, and showing a completely unknown Mao: he was not driven by idealism or ideology; his intimate and intricate relationship with Stalin went back to the 1920s, ultimately bringing him to power; he welcomed Japanese occupation of much of China; and he schemed, poisoned, and blackmailed to get his way. After Mao conquered China in 1949, his secret goal was to dominate the world. In chasing this dream he caused the deaths of 38 million people in the greatest famine in history. In all, well over 70 million Chinese perished under Mao's rule -- in peacetime.",
 " From the acclaimed author of River Town comes a rare portrait, both intimate and epic, of twenty-first-century China as it opens its doors to the outside world.   A century ago, outsiders saw China as a place where nothing ever changes. Today the country has become one of the most dynamic regions on earth. That sense of time—the contrast between past and present, and the rhythms that emerge in a vast, ever-evolving country—is brilliantly illuminated by Peter Hessler in Oracle Bones, a book that explores the human side of China's transformation.   Hessler tells the story of modern-day China and its growing links to the Western world as seen through the lives of a handful of ordinary people. In addition to the author, an American writer living in Beijing, the narrative follows Polat, a member of a forgotten ethnic minority, who moves to the United States in search of freedom; William Jefferson Foster, who grew up in an illiterate family and becomes a teacher; Emily, a migrant factory worker in a city without a past; and Chen Mengjia, a scholar of oracle-bone inscriptions, the earliest known writing in East Asia, and a man whose tragic story has been lost since the Cultural Revolution. All are migrants, emigrants, or wanderers who find themselves far from home, their lives dramatically changed by historical forces they are struggling to understand.   Peter Hessler excavates the past and puts a remarkable human face on the history he uncovers. In a narrative that gracefully moves between the ancient and the present, the East and the West, Hessler captures the soul of a country that is undergoing a momentous change before our eyes. ",
 'The year is 1969. In the state of Kerala, on the southernmost tip of India, a skyblue Plymouth with chrome tailfins is stranded on the highway amid a Marxist workers\' demonstration. Inside the car sit two-egg twins Rahel and Esthappen, and so begins their tale. . . .Armed only with the invincible innocence of children, they fashion a childhood for themselves in the shade of the wreck that is their family—their lonely, lovely mother, Ammu (who loves by night the man her children love by day), their blind grandmother, Mammachi (who plays Handel on her violin), their beloved uncle Chacko (Rhodes scholar, pickle baron, radical Marxist, bottom-pincher), their enemy, Baby Kochamma (ex-nun and incumbent grandaunt), and the ghost of an imperial entomologist\'s moth (with unusually dense dorsal tufts).When their English cousin, Sophie Mol, and her mother, Margaret Kochamma, arrive on a Christmas visit, Esthappen and Rahel learn that Things Can Change in a Day. That lives can twist into new, ugly shapes, even cease forever, beside their river "graygreen." With fish in it. With the sky and trees in it. And at night, the broken yellow moon in it.The brilliantly plotted story uncoils with an agonizing sense of foreboding and inevitability. Yet nothing prepares you for what lies at the heart of it.The God of Small Things takes on the Big Themes—Love. Madness. Hope. Infinite Joy. Here is a writer who dares to break the rules. To dislocate received rhythms and create the language she requires, a language that is at once classical and unprecedented. Arundhati Roy has given us a book that is anchored to anguish, but fueled by wit and magic.',
 "Widely regarded as D. H. Lawrence's greatest novel, Women in Love is both a lucid account of English society before the First World War, and a brilliant evocation of the inexorable power of human desire. Women in Love continues where The Rainbow left off, with the third generation of Brangwens: Ursula Brangwen, now a teacher at Beldover, a mining town in the Midlands, and her sister Gudrun, who has returned from art school in London. The focus of the novel is primarily on their relationships, Ursula's with Rupert Birkin, a school inspector, and Gudrun's with industrialist Gerald Crich, and later with a sculptor, Loerke. Quintessentially modernist, Women in Love is one of Lawrence's most extraordinary, innovative and unsettling works.",
 'The Appalachian Trail stretches from Georgia to Maine and covers some of the most breathtaking terrain in America—majestic mountains, silent forests, sparking lakes. If you’re going to take a hike, it’s probably the place to go. And Bill Bryson is surely the most entertaining guide you’ll find. He introduces us to the history and ecology of the trail and to some of the other hardy (or just foolhardy) folks he meets along the way—and a couple of bears. Already a classic, A Walk in the Woods  will make you long for the great outdoors (or at least a comfortable chair to sit and read in).',
 'From the prize-winning author of Motherless Brooklyn, a daring, riotous, sweeping novel that spins the tale of two friends and their adventures in late 20th-century America. This is the story of two boys, Dylan Ebdus and Mingus Rude. They live in Brooklyn and are friends and neighbours; but since Dylan is white and Mingus is black, their friendship is not simple. This is the story of 1970s America, a time when the simplest decisions—what music you listen to, whether to speak to the kid in the seat next to you, whether to give up your lunch money—are laden with potential political, social and racial disaster. This is also the story of 1990s America, when nobody cared anymore. This is the story of what would happen if two teenaged boys obsessed with comic book heroes actually had superpowers: they would screw up their lives.',
 'A landmark new translation of a Calvino classic, a whimsical, spirited novel that imagines a life lived entirely on its own termsCosimo di Rondó, a young Italian nobleman of the eighteenth century, rebels against his parents by climbing into the trees and remaining there for the rest of his life. He adapts efficiently to an existence in the forest canopy—he hunts, sows crops, plays games with earth-bound friends, fights forest fires, solves engineering problems, and even manages to have love affairs. From his perch in the trees, Cosimo sees the Age of Enlightenment pass by, and a new century dawn. The Baron in the Trees exemplifies Calvino’s peerless ability to weave tales that sparkle with enchantment. This new English rendering by acclaimed translator Ann Goldstein breathes new life into one of Calvino’s most beloved works.',
 'One of the\xa0 New York Times ’s Ten Best Books of the These traditional stories of Italy, retold by a literary master, are “a treasure” ( Los Angeles Times ).\xa0Filled with kings and peasants, saints and ogres—as well as some quite extraordinary plants and animals—these two hundred tales bring to life Italy’s folklore, sometimes with earthy humor, sometimes with noble mystery, and sometimes with the playfulness of sheer nonsense.\xa0Selected and retold by one of the country’s greatest literary icons, “this collection stands with the finest folktale collections anywhere” ( The New York Times Book Review ).\xa0“For readers of any age\xa0.\xa0.\xa0. A masterwork.” — The Wall Street Journal\xa0“A magic book, and a classic to boot.” — Time\xa0',
 '"Kublai Khan does not necessarily believe everything Marco Polo says when he describes the cities visited on his expeditions, but the emperor of the Tartars does continue listening to the young Venetian with greater attention and curiosity than he shows any other messenger or explorer of his." So begins Italo Calvino\'s compilation of fragmentary urban images. As Marco tells the khan about Armilla, which "has nothing that makes it seem a city, except the water pipes that rise vertically where the houses should be and spread out horizontally where the floors should be," the spider-web city of Octavia, and other marvelous burgs, it may be that he is creating them all out of his imagination, or perhaps he is recreating fine details of his native Venice over and over again, or perhaps he is simply recounting some of the myriad possible forms a city might take.',
 'A series of lectures which Italo Calvino wrote in the final year of his life. Drawing on the works of Lucretius, Ovid, Boccaccio, Flaubert, Kundera, Perec and many more, he pinpoints the universal laws and literary lightness, quickness, exactitude, visibility and multiplicity.',
 "Two novellas: the first, a parody of medieval knighthood told by a nun; the second, a fantasy about a nobleman bisected into his good and evil halves. “Bravura pieces... executed with brilliance and brio”(Chicago Tribune). Translated by Archibald Colquhoun. A Helen and Kurt Wolff BookOriginally published as two distinct volumes: 'Il visconte dimezzato' (1952) and 'Il cavaliere inesistente' (1959). Also published in a single volume with 'The baron in the trees' (Il barone rampante, 1957) as 'Our Ancestors' (I nostri antenati, 1960).",
 'It is the morning after the Academy Awards. Max, an award-winning writer and his lover, Elena, are hosts to a house full of guests including their daughter, a movie star, a healer and an agent. Over the course of the next ten life-changing days, they share stories of Hollywood, watch movies and become entangled by the pool. Sparks fly and tension mounts as this unputdownable tale of love, war, sex, politics, friendship and betrayal moves towards its redemptive end.',
 'Crossing to Safety has, since its publication in 1987, established itself as one of the greatest and most cherished American novels of the twentieth century. Tracing the lives, loves, and aspirations of two couples who move between Vermont and Wisconsin, it is a work of quiet majesty, deep compassion, and powerful insight into the alchemy of friendship and marriage.',
 'Mrs. Frisby, a widowed mouse with four small children, must move her family to their summer quarters immediately, or face almost certain death. But her youngest son, Timothy, lies ill with pneumonia and must not be moved. Fortunately, she encounters the rats of NIMH, an extraordinary breed of highly intelligent creatures, who come up with a brilliant solution to her dilemma.',
 'The time is World War II. The place is a brutal prison camp deep in Japanese-occupied territory. Here, within the seething mass of humanity, one man, an American corporal, seeks dominance over both captives and captors alike. His weapons are human courage, unblinking understanding of human weaknesses, and total willingness to exploit every opportunity to enlarge his power and corrupt or destroy anyone who stands in his path.',
 'Collection of twenty-four stories that generously expresses Murakami’s mastery of the form. From the surreal to the mundane, these stories exhibit his ability to transform the full range of human experience in ways that are instructive, surprising, and relentlessly entertaining. Here are animated crows, a criminal monkey, and an iceman, as well as the dreams that shape us and the things we might wish for. Whether during a chance reunion in Italy, a romantic exile in Greece, a holiday in Hawaii, or in the grip of everyday life, Murakami’s characters confront grievous loss, or sexuality, or the glow of a firefly, or the impossible distances between those who ought to be closest of all.',
 "In spring 2002, following the fall of the Taliban, Åsne Seierstad spent four months living with a bookseller and his family in Kabul.For more than twenty years Sultan Khan defied the authorities—be they communist or Taliban—to supply books to the people of Kabul. He was arrested, interrogated and imprisoned by the communists, and watched illiterate Taliban soldiers burn piles of his books in the street. He even resorted to hiding most of his stock—almost ten thousand books—in attics all over Kabul.But while Khan is passionate in his love of books and his hatred of censorship, he also has strict views on family life and the role of women. As an outsider, Åsne Seierstad found herself in a unique position, able to move freely between the private, restricted sphere of the women—including Khan’s two wives—and the freer, more public lives of the men.It is an experience that Seierstad finds both fascinating and frustrating. As she steps back from the page and allows the Khans to speak for themselves, we learn of proposals and marriages, hope and fear, crime and punishment. The result is a genuinely gripping and moving portrait of a family, and a clear-eyed assessment of a country struggling to free itself from history.' to 'This mesmerizing portrait of a proud man who, through three decades and successive repressive regimes, heroically braved persecution to bring books to the people of Kabul has elicited extraordinary praise throughout the world and become a phenomenal international bestseller. The Bookseller of Kabul is startling in its intimacy and its details—a revelation of the plight of Afghan women and a window into the surprising realities of daily life in today’s Afghanistan.'",
 'Curtis Sittenfeld’s debut novel, Prep, is an insightful, achingly funny coming-of-age story as well as a brilliant dissection of class, race, and gender in a hothouse of adolescent angst and ambition.Lee Fiora is an intelligent, observant fourteen-year-old when her father drops her off in front of her dorm at the prestigious Ault School in Massachusetts. She leaves her animated, affectionate family in South Bend, Indiana, at least in part because of the boarding school’s glossy brochure, in which boys in sweaters chat in front of old brick buildings, girls in kilts hold lacrosse sticks on pristinely mown athletic fields, and everyone sings hymns in chapel. As Lee soon learns, Ault is a cloistered world of jaded, attractive teenagers who spend summers on Nantucket and speak in their own clever shorthand. Both intimidated and fascinated by her classmates, Lee becomes a shrewd observer of–and, ultimately, a participant in–their rituals and mores. As a scholarship student, she constantly feels like an outsider and is both drawn to and repelled by other loners. By the time she’s a senior, Lee has created a hard-won place for herself at Ault. But when her behavior takes a self-destructive and highly public turn, her carefully crafted identity within the community is shattered.Ultimately, Lee’s experiences–complicated relationships with teachers; intense friendships with other girls; an all-consuming preoccupation with a classmate who is less than a boyfriend and more than a crush; conflicts with her parents, from whom Lee feels increasingly distant, coalesce into a singular portrait of the painful and thrilling adolescence universal to us all.From the Hardcover edition.',
 "The landmark exploration of economic prosperity and how the world can escape from extreme poverty for the world's poorest citizens, from one \xa0of the world's most renowned economists Hailed by Time as one of the world's hundred most influential people, Jeffrey D. Sachs is renowned for his work around the globe advising economies in crisis. Now a classic of its genre, The End of Poverty distills more than thirty years of experience to offer a uniquely informed vision of the steps that can transform impoverished countries into prosperous ones. Marrying vivid storytelling with rigorous analysis, Sachs lays out a clear conceptual map of the world economy. Explaining his own work in Bolivia, Russia, India, China, and Africa, he offers an integrated set of solutions to the interwoven economic, political, environmental, and social problems that challenge the world's poorest countries. \xa0 Ten years after its initial publication, The End of Poverty remains an indispensible and influential work. In this 10th anniversary edition, Sachs presents an extensive new foreword assessing the progress of the past decade, the work that remains to be done, and how each of us can help. He also looks ahead across the next fifteen years to 2030, the United Nations' target date for ending extreme poverty, offering new insights and recommendations.",
 'Salman Rushdie\'s most ambitious and accomplished novel, sure to be hailed as his masterpiece.At the beginning of this stunning novel, Vina Apsara, a famous and much-loved singer, is caught up in a devastating earthquake and never seen again by human eyes. This is her story, and that of Ormus Cama, the lover who finds, loses, seeks, and again finds her, over and over, throughout his own extraordinary life in music. Their epic romance is narrated by Ormus\'s childhood friend and Vina\'s sometime lover, her "back-door man," the photographer Rai, whose astonishing voice, filled with stories, images, myths, anger, wisdom, humor, and love, is perhaps the book\'s true hero. Telling the story of Ormus and Vina, he finds that he is also revealing his own truths: his human failings, his immortal longings. He is a man caught up in the loves and quarrels of the age\'s goddesses and gods, but dares to have ambitions of his own. And lives to tell the tale.Around these three, the uncertain world itself is beginning to tremble and break. Cracks and tears have begun to appear in the fabric of the real. There are glimpses of abysses below the surfaces of things. The Ground Beneath Her Feet is Salman Rushdie\'s most gripping novel and his boldest imaginative act, a vision of our shaken, mutating times, an engagement with the whole of what is and what might be, an account of the intimate, flawed encounter between the East and the West, a brilliant remaking of the myth of Orpheus, a novel of high (and low) comedy, high (and low) passions, high (and low) culture. It is a tale of love, death, and rock \'n\' roll.',
 "Alternate cover for this ISBN can be found hereMoraes 'Moor' Zogoiby is a 'high-born crossbreed', the last surviving scion of a dynasty of Cochinise spice merchants and crime lords. He is also a compulsive storyteller and an exile. As he travels a route that takes him from India to Spain, he leaves behind a labyrinthine tale of mad passions and volcanic family hatreds, of titanic matriarchs and their mesmerised offspring, of premature deaths and curses that strike beyond the grave. The Moor's Last Sigh is a spectacularly ambitious, funny, satirical and compassionate novel. It is a love song to a vanishing world, but also its last hurrah.~from the back cover",
 'In these nine stories, Salman Rushdie looks at what happens when East meets West, at the forces that pull his characters first in one direction, then the other. Fantasy and realism collide as a rickshaw driver writes letters describing his film star career in Bombay; a mispronunciation leads to romance and an unusual courtship in sixties London; two childhood friends turned diplomats live out in a violent world fantasies hatched by "Star Trek"; and Christopher Columbus dreams of consummating his relationship with Queen Isabella. The stories in "East, West" show the extraordinary range and power of Salman Rushdie\'s writing.',
 '‘A dazzling and savage first novel’ \nNew York Times\nAngels tells the story of two born losers. Jamie has ditched her husband and is running away with her two baby girls. Bill is dreaming of making it big in a life of crime. They meet on a Greyhound bus and decide to team up.So begins a stunning, tragic odyssey through the dark underbelly of America – the bars, bus stations, mental wards, and prisons that play host to Jamie and Bill as they find themselves trapped in a downward spiral though rape, alcohol, drugs and crime, to madness and death.From the author of \nTree of Smoke\n, winner of the National Book Award for Fiction',
 "A contemporary noir, Already Dead is the tangled story of Nelson Fairchild Jr., disenfranchised scion to a northern California land fortune. A relentless failure, Nelson has botched nearly every scheme he's attempted to pull off. Now his future lies in a potentially profitable marijuana patch hidden in the lush old-growth redwoods on the family land.Nelson has some serious problems. His marriage has fallen apart, and he may lose his land, cash and crop in the divorce. What's more, in need of some quick cash, he had foolishly agreed to smuggle $90,000 worth of cocaine through customs for Harry Lally, a major player in a drug syndicate. Chickening out just before bringing the drugs through, he flushed the powder. Now Lally wants him dead, and two goons are hot on his trail. Desperate, terrified and alone, for Nelson, there may be only one way out.This is Denis Johnson's biggest and most complex book to date, and it perfectly showcases his signature themes of fate, redemption and the unraveling of the fabric of today's society. Already Dead, with its masterful narrative of overlapping and entwined stories, will further fuel the acclaim that surrounds one of today's most fascinating writers.",
 'From the bestselling author of American Psycho comes this satirical black comedy about the death of romance.Set at an affluent liberal arts college during the height of the Reagan eighties, The Rules of Attraction follows a handful of rowdy, spoiled, sexually promiscuous students with no plans for the future—or even the present. Three of them—Sean, Paul, and Lauren—become involved in a love triangle of sorts within a sequence of drug runs, "Dressed to Get Screwed" parties, and "End of the World" parties.As Bret Easton Ellis trains his incisive gaze on the kids at the self-consciously bohemian Camden College, treating their sexual posturing and agonies with a mixture of acrid hilarity and compassion, he exposes the moral vacuum at the center of their lives.',
 'The author of American Psycho and Less Than Zero continues to shock and haunt us with his incisive and brilliant dissection of the modern world.In his most ambitious and gripping book yet, Bret Easton Ellis takes our celebrity obsessed culture and increases the volume exponentially. Set in 90s Manhattan, Victor Ward, a model with perfect abs and all the right friends, is seen and photographed everywhere, even in places he hasn\'t been and with people he doesn\'t know. He\'s living with one beautiful model and having an affair with another onthe eve of opening the trendiest nightclub in New York City history.And now it\'s time to move to the next stage. But the future he gets is not the one he had in mind. With the same deft satire and savage wit he has brought to his other fiction, Bret Ellis gets beyond the facade and introduces us, unsparingly, to what we always feared was behind it. Glamorama shows us a shadowy looking-glass reality, the juncture where fame and fashion and terror and mayhem meet and then begin to resemble the familiar surface of our lives."',
 'Set in Los Angeles, in the recent past. The birthplace and graveyard of American myths and dreams, the city harbours a group of people trapped between the beauty of their surroundings and their own moral impoverishment. This novel is a chronicle of their voices.',
 "Set in Los Angeles in the early 1980s, this coolly mesmerizing novel is a raw, powerful portrait of a lost generation that experienced sex, drugs, and disaffection at too early an age, growing up in a world shaped by casual nihilism, passivity, and too much money.Clay comes home for Christmas vacation from his Eastern college and re-enters a landscape of limitless privilege and absolute moral entropy, where everyone drives Porches, dines at Spago, and snorts mountains of cocaine. He tries to renew feelings for his girlfriend, Blair, and for his best friend from high school, Julian, who is careering into hustling and heroin. Clay's holiday turns into a dizzying spiral of desperation that takes him through the relentless parties in glitzy mansions, seedy bars, and underground rock clubs, and into the seamy world of L.A. after dark.",
 'Set on the outskirts of a small Southern town, The Grass Harp tells the story of three endearing misfits--an orphaned boy and two whimsical old ladies--who one day take up residence in a tree house. AS they pass sweet yet hazardous hours in a china tree, The Grass Harp manages to convey all the pleasures and responsibilities of freedom. But most of all it teaches us about the sacredness of love, "that love is a chain of love, as nature is a chain of life."This volume also includes Capote\'s A Tree of Night and Other Stories, which the Washington Post called "unobstrusively beautiful...a superlative book."',
 'In this tour de force of psychological unease - now a major motion picture starring Charlotte Gainsbourg and Sinead Cusack - McEwan excavates the ruins of childhood and uncovers things that most adults have spent a lifetime forgetting or denying. "Possesses the suspense and chilling impact of Lord of the Flies." Washington Post Book World.',
 'The Woman in the Dunes, by celebrated writer and thinker Kobo Abe, combines the essence of myth, suspense and the existential novel. After missing the last bus home following a day trip to the seashore, an amateur entomologist is offered lodging for the night at the bottom of a vast sand pit. But when he attempts to leave the next morning, he quickly discovers that the locals have other plans. Held captive with seemingly no chance of escape, he is tasked with shoveling back the ever-advancing sand dunes that threaten to destroy the village. His only companion is an odd young woman, and together their fates become intertwined as they work side by side through this Sisyphean of tasks.',
 'Kobo Abe, the internationally acclaimed author of Woman in the Dunes, combines wildly imaginative fantasies and naturalistic prose to create narratives reminiscent of the work of Kafka and Beckett.In this eerie and evocative masterpiece, the nameless protagonist gives up his identity and the trappings of a normal life to live in a large cardboard box he wears over his head. Wandering the streets of Tokyo and scribbling madly on the interior walls of his box, he describes the world outside as he sees or perhaps imagines it, a tenuous reality that seems to include a mysterious rifleman determined to shoot him, a seductive young nurse, and a doctor who wants to become a box man himself. The Box Man is a marvel of sheer originality and a bizarrely fascinating fable about the very nature of identity.Translated from the Japanese by E. Dale Saunders.',
 'Like an elegantly chilling postscript to The Metamorphosis, this classic of postwar Japanese literature describes a bizarre physical transformation that exposes the duplicities of an entire world. The narrator is a scientist hideously deformed in a laboratory accident–a man who has lost his face and, with it, his connection to other people. Even his wife is now repulsed by him. His only entry back into the world is to create a mask so perfect as to be undetectable. But soon he finds that such a mask is more than a disguise: it is an alternate self–a self that is capable of anything. A remorseless meditation on nature, identity and the social contract, The Face of Another is an intellectual horror story of the highest order.',
 "The discovery of a mysterious notebook turns a man's life upside-down in this compulsively readable novel by 'one of the great writers of our time' ( San Francisco Chronicle ).Several months into his recovery from a near-fatal illness, novelist Sidney Orr enters a stationery shop in Brooklyn and buys a blue notebook. It is September 18, 1982, and for the next nine days Orr will live under the spell of this blank book, trapped inside a world of eerie premonitions and bewildering events that threaten to destroy his marriage and undermine his faith in reality.Paul Auster's mesmerizing eleventh novel reads like an old-fashioned ghost story. But there are no ghosts in this book - only flesh-and-blood human beings, wandering through the haunted realms of everyday life. Oracle Night is a narrative tour de force that confirms Auster's reputation as one of the boldest, most original writers at work in America today.",
 'Walter Faber is an emotionally detached engineer forced by a string of coincidences to embark on a journey through his past.',
 "'The Wall', the lead story in this collection, introduces three political prisoners on the night prior to their execution. Through the gaze of an impartial doctor--seemingly there for the men's solace--their mental descent is charted in exquisite, often harrowing detail. And as the morning draws inexorably closer, the men cross the psychological wall between life and death, long before the first shot rings out.This brilliant snapshot of life in anguish is the perfect introduction to a collection of stories where the neurosis of the modern world is mirrored in the lives of the people that inhabit it.",
 "Being & Nothingness is without doubt one of the most significant philosophical books of the 20th century. The central work by one of the century's most influential thinkers, it altered the course of western philosophy. Its revolutionary approach challenged all previous assumptions about the individual's relationship with the world. Known as 'the Bible of existentialism', its impact on culture & literature was immediate & was felt worldwide, from the absurdist drama of Samuel Beckett to the soul-searching cries of the Beat poets.Being & Nothingness is one of those rare books whose influence has affected the mindset of subsequent generations. Seventy years after its 1st publication, its message remains as potent as ever--challenging readers to confront the fundamental dilemmas of human freedom, choice, responsibility & action.",
 "The Age of Reason is set in 1938 and tells of Mathieu, a French professor of philosophy who is obsessed with the idea of freedom. As the shadows of the Second World War draw closer -- even as his personal life is complicated by his mistress's pregnancy -- his search for a way to remain free becomes more and more intense.",
 'In these four plays, Jean-Paul Sartre, the great existentialist novelist and philosopher, displays his mastery of drama. NO EXIT is an unforgettable portrayal of hell. THE FLIES is a modern reworking of the Electra-Orestes story. DIRTY HANDS is about a young intellectual torn between theory and praxis. THE RESPECTFUL PROSTITUTE is an attack on American racism.',
 "Six months in the life of the world's most dangerous teenager.Youth in Revolt is the journals of Nick Twisp, California's most precocious diarist, whose ongoing struggles to make sense out of high school, deal with his divorced parents, and lose his virginity result in his transformation from an unassuming fourteen-year-old to a modern youth in open revolt. As his family splinters, worlds collide, and the police block all routes out of town, Nick must cope with economic deprivation, homelessness, the gulag of the public schools, a competitive Type-A father, murderous canines (in triplicate), and an inconvenient hair trigger on his erectile response—all while vying ardently for the affections of the beauteous Sheeni Saunders, teenage goddess and ultimate intellectual goad.",
 'In this unforgettable chronicle of perhaps the most famous moment in American military history, James Bradley has captured the glory, the triumph, the heartbreak, and the legacy of the six men who raised the flag at Iwo Jima. Here is the true story behind the immortal photograph that has come to symbolize the courage and indomitable will of America.In February 1945, American Marines plunged into the surf at Iwo Jima—and into history. Through a hail of machine-gun and mortar fire that left the beaches strewn with comrades, they battled to the island\'s highest peak. And after climbing through a landscape of hell itself, they raised a flag.Now the son of one of the flagraisers has written a powerful account of six very different young men who came together in a moment that will live forever.To his family, John Bradley never spoke of the photograph or the war. But after his death at age seventy, his family discovered closed boxes of letters and photos. In Flags of Our Fathers, James Bradley draws on those documents to retrace the lives of his father and the men of Easy Company. Following these men\'s paths to Iwo Jima, James Bradley has written a classic story of the heroic battle for the Pacific\'s most crucial island—an island riddled with Japanese tunnels and 22,000 fanatic defenders who would fight to the last man.But perhaps the most interesting part of the story is what happened after the victory. The men in the photo—three were killed during the battle—were proclaimed heroes and flown home, to become reluctant symbols. For two of them, the adulation was shattering. Only James Bradley\'s father truly survived, displaying no copy of the famous photograph in his home, telling his son only: "The real heroes of Iwo Jima were the guys who didn\'t come back."Few books ever have captured the complexity and furor of war and its aftermath as well as Flags of Our Fathers. A penetrating, epic look at a generation at war, this is history told with keen insight, enormous honesty, and the passion of a son paying homage to his father. It is the story of the difference between truth and myth, the meaning of being a hero, and the essence of the human experience of war.From the Hardcover edition.',
 "Louis the yard teacher starts off 30 tales of unusual students. Comic sketches precede every chapter. Todd brings a cute adorable plastic puppy who bites back when Joy steals it. Cafeteria lady Ms. Mush serves Mushroom Surprise that changes Ron. When Paul falls out the window, Leslie offers her pigtails to pull him back. On the 19th floor, invisible Allison finds Miss Zarves' class.",
 'In his eagerly awaited fourth novel, New York Times-bestselling author Nick Hornby mines the hearts and psyches of four lost souls who connect just when they\'ve reached the end of the line. Meet Martin, JJ, Jess, and Maureen. Four people who come together on New Year\'s Eve: a former TV talk show host, a musician, a teenage girl, and a mother. Three are British, one is American. They encounter one another on the roof of Topper\'s House, a London destination famous as the last stop for those ready to end their lives. In four distinct and riveting first-person voices, Nick Hornby tells a story of four individuals confronting the limits of choice, circumstance, and their own mortality. This is a tale of connections made and missed, punishing regrets, and the grace of second chances. Intense, hilarious, provocative, and moving, A Long Way Down is a novel about suicide that is, surprisingly, full of life. What\'s your jumping-off point? MaureenWhy is it the biggest sin of all? All your life you\'re told that you\'ll be going to this marvelous place when you pass on. And the one thing you can do to get you there a bit quicker is something that stops you getting there at all. Oh, I can see that it\'s a kind of queue-jumping. But if someone jumps the queue at the post office, people tut. Or sometimes they say "Excuse me, I was here first." They don\'t say "You will be consumed by hellfire for all eternity." That would be a bit strong. MartinI\'d spent the previous couple of months looking up suicides on the Internet, just out of curiosity. And nearly every single time, the coroner says the same thing: "He took his own life while the balance of his mind was disturbed." And then you read the story about the poor bastard: His wife was sleeping with his best friend, he\'d lost his job, his daughter had been killed in a road accident some months before . . . Hello, Mr. Coroner? I\'m sorry, but there\'s no disturbed mental balance here, my friend. I\'d say he got it just right. JessI was at a party downstairs. It was a shit party, full of all these ancient crusties sitting on the floor drinking cider and smoking huge spliffs and listening to weirdo space-out reggae. At midnight, one of them clapped sarcastically, and a couple of others laughed, and that was it-Happy New Year to you, too. You could have turned up to that party as the happiest person in London, and you\'d still have wanted to jump off the roof by five past twelve. And I wasn\'t the happiest person in London anyway. Obviously. JJNew Year\'s Eve was a night for sentimental losers. It was my own stupid fault. Of course there\'d be a low-rent crowd up there. I should have picked a classier date-like March 28, when Virginia Woolf took her walk into the river, or November 25 (Nick Drake). If anybody had been on the roof on either of those nights, the chances are they would have been like-minded souls, rather than hopeless f*ck-ups who had somehow persuaded themselves that the end of a calendar year is in any way significant.',
 '"The Grail Brotherhood has built the most powerful, sophisticated simulation network imaginable. At the same time, they have manipulated ad injured the minds of thousands of children."This proclamation from the mysterious Mr. Sellars confirmed what Renie Sulaweyo had feared to be true when she first broke into the Otherland network in a desperate search for the cause of her brother Stephen\'s deathlike coma. Now Renie, the Bushman !Xabbu, and their companions find themselves navigating a treacherous and ever-changing course―from a strangely unfinished land, ro a seemingly endless labyrinthine House―pursuing a sociopathic killer who has stolen one of their group. To Renie\'s despair she is no closer to uncovering the secrets which could help save Stephen\'s life, and now it appears that something may be very wrong with the Otherland network itself.As Paul Jonas, Orlando, Renie and the rest strive to reach Priam\'s Walls, in the heart of Troy, they know that their quest is running perilously short of time. For the Grail Brotherhood has finally set the date for the Ceremony when they will make their bid for the immortality, and thereby seal the fate of Earth\'s children forever.But before Renie and her allies can hope to stop the Brotherhood, they must first solve the mysteries of Otherland itself, and confront its darkest secret―an enitity known only at the Other.',
 "A long-overdue and dramatic reinterpretation of the life of Mary, Queen of Scots by one of the leading historians at work today.She was crowned Queen of Scotland at nine months of age, and Queen of France at sixteen years; at eighteen she ascended the throne that was her birthright and began ruling one of the most fractious courts in Europe, riven by religious conflict and personal lust for power. She rode out at the head of an army in both victory and defeat; saw her second husband assassinated, and married his murderer. At twenty-five she entered captivity at the hands of her rival queen, from which only death would release her.The life of Mary Stuart is one of unparalleled drama and conflict. From the labyrinthine plots laid by the Scottish lords to wrest power for themselves, to the efforts made by Elizabeth's ministers to invalidate Mary's legitimate claim to the English throne, John Guy returns to the archives to explode the myths and correct the inaccuracies that surround this most fascinating monarch. He also explains a central mystery: why Mary would have consented to marry – only three months after the death of her second husband, Lord Darnley – the man who was said to be his killer, the Earl of Bothwell. And, more astonishingly, he solves, through careful re-examination of the Casket Letters, the secret behind Darnley's spectacular assassination at Kirk o'Field. With great pathos, Guy illuminates how the imprisoned Mary's despair led to a reckless plot against Elizabeth – and thus to her own execution.The portrait that emerges is not of a political pawn or a manipulative siren, but of a shrewd and charismatic young ruler who relished power and, for a time, managed to hold together a fatally unstable country.",
 'The tempestuous, bloody, and splendid reign of Henry VIII of England (1509-1547) is one of the most fascinating in all history, not least for his marriage to six extraordinary women. In this accessible work of brilliant scholarship, Alison Weir draws on early biographies, letters, memoirs, account books, and diplomatic reports to bring these women to life. Catherine of Aragon emerges as a staunch though misguided woman of principle; Anne Boleyn, an ambitious adventuress with a penchant for vengeance; Jane Seymour, a strong-minded matriarch in the making; Anne of Cleves, a good-natured and innocent woman naively unaware of the court intrigues that determined her fate; Catherine Howard, an empty-headed wanton; and Catherine Parr, a warm-blooded bluestocking who survived King Henry to marry a fourth time.',
 "This is the story of England's most famous, and notorious, king.Henry was a charismatic, ardent - and brash - young lover who married six times; a scholar with a deep love of poetry and music; an energetic hunter who loved the outdoors; a monarch whose lack of a male heir haunted him incessantly; and a ruthless leader who would stop at nothing to achieve his desires. His monumental decision to split from Rome and the Catholic Church was one that would forever shape the religious and political landscape of Britain.Combining magnificent storytelling with an extraordinary grasp of the pleasures and perils of power, Margaret George delivers a vivid portrait of Henry VIII and Tudor England and the powerhouse of players on its stage: Thomas Cromwell, Cardinal Wolsey, Thomas More and Anne Boleyn. It is also a narrative told from an original perspective: Margaret George writes from the King's point of view, injecting irreverent comments from Will Somers - Henry's jester and confidant.",
 'Bestselling novelist Margaret George brings to life the glittering kingdom of Cleopatra, Queen of the Nile, in this lush, sweeping, and richly detailed saga. Told in Cleopatra\'s own voice, this is a mesmerizing tale of ambition, passion, and betrayal, which begins when the twenty-year-old queen seeks out the most powerful man in the world, Julius Caesar, and does not end until, having survived the assassination of Caesar and the defeat of the second man she loves, Marc Antony, she plots her own death rather than be paraded in triumph through the streets of Rome. Most of all, in its richness and authenticity, it is an irresistible story that reveals why Margaret George\'s work has been widely acclaimed as "the best kind of historical novel, one the reader can\'t wait to get lost in."',
 'David Sedaris plays in the snow with his sisters. He goes on vacation with his family. He gets a job selling drinks. He attends his brother’s wedding. He mops his sister’s floor. He gives directions to a lost traveler. He eats a hamburger. He has his blood sugar tested. It all sounds so normal, doesn’t it? In his newest collection of essays, David Sedaris lifts the corner of ordinary life, revealing the absurdity teeming below its surface. His world is alive with obscure desires and hidden motives — a world where forgiveness is automatic and an argument can be the highest form of love. Dress Your Family in Corduroy and Denim is another unforgettable collection from one of the wittiest and most original writers at work today.--davidsedarisbooks.com',
 "In these one-hundred poems Wisława Szymborska portrays a world of astonishing diversity and richness, in which nature is wise and prodigal and fate unpredictable, if not mischevious. With acute irony tempered by a generous curiousity, she documents life's improbability as well as its transient beauty.",
 "Alternate editions can be found here and here.A gothic masterpiece of tempestuous passions and dark secrets, Charlotte Brontë's Jane Eyre is edited with an introduction and notes by Stevie Davis in Penguin Classics.Charlotte Brontë tells the story of orphaned Jane Eyre, who grows up in the home of her heartless aunt, enduring loneliness and cruelty. This troubled childhood strengthens Jane's natural independence and spirit - which prove necessary when she finds employment as a governess to the young ward of Byronic, brooding Mr Rochester. As her feelings for Rochester develop, Jane gradually uncovers Thornfield Hall's terrible secret, forcing her to make a choice. Should she stay with Rochester and live with the consequences, or follow her convictions - even if it means leaving the man she loves? A novel of intense power and intrigue, Jane Eyre dazzled readers with its passionate depiction of a woman's search for equality and freedom.",
 "A magnificent romantic/historical/adventure novel set in India at the time of mutiny. The Far Pavilions is a story of 19th Century India, when the thin patina of English rule held down dangerously turbulent undercurrents. It is a story about and English man - Ashton Pelham-Martyn - brought up as a Hindu and his passionate, but dangerous love for an Indian princess. It's a story of divided loyalties, of tender camaraderie, of greedy imperialism and of the clash between east and west. To the burning plains and snow-capped mountains of this great, humming continent, M.M. Kaye brings her quite exceptional gift of immediacy and meticulous historical accuracy, plus her insight into the human heart.",
 'At the center of Mountains Beyond Mountains stands Paul Farmer. Doctor, Harvard professor, renowned infectious-disease specialist, anthropologist, the recipient of a MacArthur "genius" grant, world-class Robin Hood, Farmer was brought up in a bus and on a boat, and in medical school found his life’s calling: to diagnose and cure infectious diseases and to bring the lifesaving tools of modern medicine to those who need them most.Mountains Beyond Mountains takes us from Harvard to Haiti, Peru, Cuba, and Russia as Farmer changes minds and practices through his dedication to the philosophy that "the only real nation is humanity"—a philosophy that is embodied in the small public charity he founded, Partners in Health. He enlists the help of the Gates Foundation, George Soros, the U.N.’s World Health Organization, and others in his quest to cure the world. At the heart of this book is the example of a life based on hope, and on an understanding of the truth of the Haitian proverb "Beyond mountains there are mountains": as you solve one problem, another problem presents itself, and so you go on and try to solve that one too.',
 'The Pleasure of Finding Things Out is a magnificent treasury of the best short works of Richard P. Feynman,from interviews and speeches to lectures and printed articles. A sweeping, wide-ranging collection, it presents an intimate and fascinating view of a life in science-a life like no other. From his ruminations on science in our culture to his Nobel Prize acceptance speech, this book will fascinate anyone interested in the world of ideas.El placer de descubrir permite acceder al mundo personal, social y cientíco de Richard Feynman, por ejemplo, a sus aventuras mientras participó en el Proyecto Manhattan, cuando se divertía —y escandalizaba— descifrando las claves de cajas fuertes, o a cómo se inició, siendo un niño, en el estudio de la naturaleza (en el «placer de descubrir»), que terminaría ocupando toda su vida. Podemos, asimismo, conocer sus pioneras ideas sobre las computadoras del futuro, su opinión acerca del valor de la ciencia o la explicación, tan sencilla como profunda, que dio al desastre de la lanzadera espacial Challenger. Es este, sin duda, un libro tan fascinante como su autor.',
 "Twice a winner of the Pulitzer Prize, author Barbara Tuchman now tackles the pervasive presence of folly in governments thru the ages. Defining folly as the pursuit by governments of policies contrary to their own interests, despite the availability of feasible alternatives, Tuchman details four decisive turning points in history that illustrate the very heights of folly in government: the Trojan War, the breakup of the Holy See provoked by Renaissance Popes, the loss of the American colonies by Britain's George III & the USA's persistent folly in Vietnam. THE MARCH OF FOLLY brings the people, places & events of history alive for today's reader.",
 'The Great Depression and the New Deal. For generations, the collective American consciousness has believed that the former ruined the country and the latter saved it. Endless praise has been heaped upon President Franklin Delano Roosevelt for masterfully reining in the Depression’s destructive effects and propping up the country on his New Deal platform. In fact, FDR has achieved mythical status in American history and is considered to be, along with Washington, Jefferson, and Lincoln, one of the greatest presidents of all time. But would the Great Depression have been so catastrophic had the New Deal never been implemented?In FDR’s Folly, historian Jim Powell argues that it was in fact the New Deal itself, with its shortsighted programs, that deepened the Great Depression, swelled the federal government, and prevented the country from turning around quickly. You’ll discover in alarming detail how FDR’s federal programs hurt America more than helped it, with effects we still feel today, including:•\xa0How Social Security actually increased unemployment• How higher taxes undermined good businesses• How new labor laws threw people out of work• And much moreThis groundbreaking book pulls back the shroud of awe and the cloak of time enveloping FDR to prove convincingly how flawed his economic policies actually were, despite his good intentions and the astounding intellect of his circle of advisers. In today’s turbulent domestic and global environment, eerily similar to that of the 1930s, it’s more important than ever before to uncover and understand the truth of our history, lest we be doomed to repeat it.From the Hardcover edition.',
 'An acclaimed master of suspense creates a heroine you will never forget in this superbly chilling novel of a woman who begins a desperate undertaking that may transform her life--or end it.WHAT HAPPENS IF YOUR WORST FEARS AREN’T ALL IN YOUR MIND?Rae Newborn is a woman on the edge: on the edge of sanity, on the edge of tragedy, and now on the edge of the world. She has moved to an island at the far reaches of the continent to restore the house of an equally haunted figure, her mysterious great-uncle; but as her life begins to rebuild itself along with the house, his story starts to wrap around hers. Powerful forces are stirring, but Rae cannot see where her reality leaves off and his fate begins.Fifty-two years old, Rae must battle the feelings that have long tormented her--panic, melancholy, and a skin-crawling sense of watchers behind the trees. Before she came here, she believed that most of the things she feared existed only in her mind. And who can say, as disturbing incidents multiply, if any of the watchers on Folly Island might be real? Is Rae paranoid, as her family and the police believe, or is the threat real? Is the island alive with promise--or with dangers?With Folly, award-winning author Laurie R. King once again powerfully redefines psychological suspense on a sophisticated and harrowing new level, and proves why legions of readers and reviewers have named her a master of the genre.',
 'The Last of the Really Great Whangdoodles was the second children’s novel ever written by Julie Andrews, the beloved star of Mary Poppins and The Sound of Music . Perfect for young readers who love whimsical stories about magic! The Whangdoodle was once the wisest, the kindest, and the most extraordinary creature in the world. Then he disappeared and created a wonderful land for himself and all the other remarkable animals—the ten-legged Sidewinders, the little furry Flukes, the friendly Whiffle Bird, and the treacherous, "oily" Prock. It was an almost perfect place where the last of the really great Whangdoodles could rule his kingdom with "peace, love and a sense of fun"—apart from and forgotten by people. But not completely forgotten. Professor Savant believed in the Whangdoodle. And when he told the three Potter children of his search for the spectacular creature, Lindy, Tom, and Ben were eager to reach Whangdoodleland. With the Professor\'s help, they discovered the secret way. But waiting for them was the scheming Prock, who would use almost any means to keep them away from his beloved king. Only by skill and determination were the four travelers able to discover the last of the really great Whangdoodles and grant him his heart\'s desire. The novel was originally published in 1974. This edition includes a foreword by Julie Andrews.',
 "Billy, Old Dan, and Little Ann—a boy and his two dogs...A loving threesome, they ranged the dark hills and river bottoms of Cherokee County. Old Dan had the brawn, Little Ann had the brains—and Billy had the will to train them to be the finest hunting team in the valley. Glory and victory were coming to them, but sadness waited too. And close by was the strange and wonderful power that's only found...Where the Red Fern Grows—An exciting tale of love and adventure you'll never forget.(from the back cover)",
 'From the author of the beloved classic Where the Red Fern Grows comes a timeless adventure about a boy who discovers a tree full of monkeys.\xa0\xa0 The last thing fourteen-year-old Jay Berry Lee expects to find while trekking through the Ozark Mountains of Oklahoma is a tree full of monkeys. But then Jay learns from his grandpa that the monkeys have escaped from a traveling circus, and there’s a big reward for the person who finds and returns them.\xa0\xa0 His family could really use the money, so Jay sets off, determined to catch them. But by the end of the summer, Jay will have learned a lot more than he bargained for—and not just about monkeys.\xa0\xa0 From the beloved author of Where the Red Fern Grows comes another memorable adventure novel filled with heart, humor, and excitement.',
 "A narrative particle accelerator that zooms between Wild Turkey Whiskey and Bob Dylan, unicorn skulls and voracious librarians, John Coltrane and Lord Jim.Science fiction, detective story and post-modern manifesto all rolled into one rip-roaring novel, Hard-Boiled Wonderland and the End of the World is the tour de force that expanded Haruki Murakami's international following. Tracking one man's descent into the Kafkaesque underworld of contemporary Tokyo, Murakami unites East and West, tragedy and farce, compassion and detachment, slang and philosophy.",
 "Everyone can use a daily wake-up call.Now in bite-size mantras, the abridged empathetic wit and wisdom of the number one New York Times bestseller He's Just Not That Into You will recharge and inspire your dating outlook one wake-up call at a time. For ages women have come together over coffee, cocktails, or late-night phone chats to analyze the puzzling behavior of men. Greg Behrendt and Liz Tuccillo are here to say that \x97despite good intentions\x97 you're wasting your time. Men are not complicated, although they'd like you to think they are. And there are no mixed messages. He's Just Not That Into You \x97based on a popular episode of Sex and the City\x97 educates otherwise smart women on how to tell when a guy just doesn't like them enough, so they can stop wasting time making excuses for a dead-end relationship. This book knows you're a beautiful, smart, funny woman who deserves better.",
 "On a winter night in 1964, Dr. David Henry is forced by a blizzard to deliver his own twins. His son, born first, is perfectly healthy. Yet when his daughter is born, he sees immediately that she has Down's Syndrome. Rationalizing it as a need to protect Norah, his wife, he makes a split-second decision that will alter all of their lives forever. He asks his nurse to take the baby away to an institution and never to reveal the secret. But Caroline, the nurse, cannot leave the infant. Instead, she disappears into another city to raise the child herself. So begins this story that unfolds over a quarter of a century - in which these two families, ignorant of each other, are yet bound by the fateful decision made that long-ago winter night. Norah Henry, who knows only that her daughter died at birth, remains inconsolable; her grief weighs heavily on their marriage. And Paul, their son, raises himself as best he can, in a house grown cold with mourning. Meanwhile, Phoebe, the lost daughter, grows from a sunny child to a vibrant young woman whose mother loves her as fiercely as if she were her own.",
 "An alternate cover edition for this ISBN from 1993 can be found herePauline, Petrova and Posy are orphans determined to help out their family by attending the Children's Academy of Dancing and Stage Training. But when they vow to make a name for themselves, they have no idea it's going to be such hard work! They launch themselves into the world of show business, complete with working papers, the glare of the spotlight, and practice, practice, practice! Pauline is destined for the movies. Posy is a born dancer. But practical Petrova finds she'd rather pilot a plane than perform a pirouette. Each girl must find the courage to follow her dream.",
 'The classic autobiographical novel by Jack Kerouac featuring "one of the most true, comic, and grizzly journeys in American literature" ( Time )—now in a new editionOriginally published in 1965, this autobiographical novel covers a key year in Jack Kerouac\'s life—the period that led up to the publication of On the Road in September of 1957. After spending two months in the summer of 1956 as a fire lookout on Desolation Peak in the North Cascade Mountains of Washington, Kerouac\'s fictional self Jack Duluoz comes down from the isolated mountains to the wild excitement of the bars, jazz clubs, and parties of San Francisco, before traveling on to Mexico City, New York, Tangiers, Paris, and London. Duluoz attempts to extricate himself from the world but fails, for one must "live, travel, adventure, bless, and don\'t be sorry." Desolation Angels is quintessential Kerouac.',
 'International bestselling and award-winning author Umberto Eco\'s illustrated novel The Mysterious Flame of Queen Loana is "an insidiously witty and provocative story" (Los Angeles Times).Yambo, a sixtyish rare-book dealer who lives in Milan, has suffered a loss of memory — he can remember the plot of every book he has ever read, every line of poetry, but he no longer knows his own name, doesn\'t recognize his wife or his daughters, and remembers nothing about his parents or his childhood. In an effort to retrieve his past, he withdraws to the family home somewhere in the hills between Milan and Turin.There, in the sprawling attic, he searches through boxes of old newspapers, comics, records, photo albums, and adolescent diaries. And so Yambo relives the story of his Mussolini, Catholic education and guilt, Josephine Baker, Flash Gordon, Fred Astaire. His memories run wild, and the life racing before his eyes takes the form of a graphic novel. Yambo struggles through the frames to capture one simple, innocent that of his first love.A fascinating, abundant novel — wide-ranging, nostalgic, funny, full of heart — from the incomparable Eco.',
 'Umberto Eco’s groundbreaking and much-acclaimed first illustrated book has been a critical success since its first publication in 2004. What is beauty? Umberto Eco, among Italy’s finest and most important contemporary thinkers, explores the nature, the meaning, and the very history of the idea of beauty in Western culture. The profound and subtle text is lavishly illustrated with abundant examples of sublime painting and sculpture and lengthy quotations from writers and philosophers. This is the first paperback edition of History of Beauty, making this intellectual and philosophical journey with one of the world’s most acclaimed thinkers available in a more compact and affordable format.From the Trade Paperback edition',
 "After a violent storm in the South Pacific in the year 1643, Roberto della Griva finds himself shipwrecked-on a ship. Swept from the Amaryllis, he has managed to pull himself aboard the Daphne, anchored in the bay of a beautiful island. The ship is fully provisioned, he discovers, but the crew is missing.As Roberto explores the different cabinets in the hold, he remembers chapters from his Ferrante, his imaginary evil brother; the siege of Casale, that meaningless chess move in the Thirty Years' War in which he lost his father and his illusions; and the lessons given him on Reasons of State, fencing, the writing of love letters, and blasphemy.In this fascinating, lyrical tale, Umberto Eco tells of a young dreamer searching for love and meaning; and of a most amazing old Jesuit who, with his clocks and maps, has plumbed the secrets of longitudes, the four moons of Jupiter, and the Flood.",
 'It is April 1204, and Constantinople, the splendid capital of the Byzantine Empire, is being sacked and burned by the knights of the Fourth Crusade. Amid the carnage and confusion, one Baudolino saves a historian and high court official from certain death at the hands of the crusading warriors and proceeds to tell his own fantastical story.Born a simple peasant in northern Italy, Baudolino has two major gifts-a talent for learning languages and a skill in telling lies. When still a boy he meets a foreign commander in the woods, charming him with his quick wit and lively mind. The commander-who proves to be Emperor Frederick Barbarossa-adopts Baudolino and sends him to the university in Paris, where he makes a number of fearless, adventurous friends.Spurred on by myths and their own reveries, this merry band sets out in search of Prester John, a legendary priest-king said to rule over a vast kingdom in the East-a phantasmagorical land of strange creatures with eyes on their shoulders and mouths on their stomachs, of eunuchs, unicorns, and lovely maidens. With dazzling digressions, outrageous tricks, extraordinary feeling, and vicarious reflections on our postmodern age, this is Eco the storyteller at his brilliant best.',
 'Twenty-Five Hundred years ago, Sun Tzu wrote this classic book of military strategy based on Chinese warfare and military thought. Since that time, all levels of military have used the teaching on Sun Tzu to warfare and civilization have adapted these teachings for use in politics, business and everyday life. The Art of War is a book which should be used to gain advantage of opponents in the boardroom and battlefield alike.',
 'From one of the most beloved and bestselling authors in the English language, a vivid, nostalgic, and utterly hilarious memoir of growing up in the 1950sBill Bryson was born in the middle of the American century—1951—in the middle of the United States—Des Moines, Iowa—in the middle of the largest generation in American history—the baby boomers. As one of the best and funniest writers alive, he is perfectly positioned to mine his memories of a totally all-American childhood for 24-carat memoir gold. Like millions of his generational peers, Bill Bryson grew up with a rich fantasy life as a superhero. In his case, he ran around his house and neighborhood with an old football jersey with a thunderbolt on it and a towel about his neck that served as his cape, leaping tall buildings in a single bound and vanquishing awful evildoers (and morons)—in his head—as "The Thunderbolt Kid."Using this persona as a springboard, Bill Bryson re-creates the life of his family and his native city in the 1950s in all its transcendent normality—a life at once completely familiar to us all and as far away and unreachable as another galaxy. It was, he reminds us, a happy time, when automobiles and televisions and appliances (not to mention nuclear weapons) grew larger and more numerous with each passing year, and DDT, cigarettes, and the fallout from atmospheric testing were considered harmless or even good for you. He brings us into the life of his loving but eccentric family, including affectionate portraits of his father, a gifted sportswriter for the local paper and dedicated practitioner of isometric exercises, and OF his mother, whose job as the home furnishing editor for the same paper left her little time for practicing the domestic arts at home. The many readers of Bill Bryson’s earlier classic, A Walk in the Woods, will greet the reappearance in these pages of the immortal Stephen Katz, seen hijacking literally boxcar loads of beer. He is joined in the Bryson gallery of immortal characters by the demonically clever Willoughby brothers, who apply their scientific skills and can-do attitude to gleefully destructive ends.Warm and laugh-out-loud funny, and full of his inimitable, pitch-perfect observations, The Life and Times of the Thunderbolt Kid is as wondrous a book as Bill Bryson has ever written. It will enchant anyone who has ever been young.',
 'Twenty years after Appomattox, the Civil War’s greatest general fought his last campaign against death and time. Stricken by cancer as his family faced financial ruin, Ulysses S. Grant wrote his Personal Memoirs to secure their future, and in doing so won for himself a unique place in American letters. Acclaimed by readers as diverse as Mark Twain, Matthew Arnold, Gertrude Stein, and Edmund Wilson, the Personal Memoirs demonstrates the intelligence, intense determination, and laconic modesty that made Grant the Union’s foremost commander. This Library of America volume also includes 174 letters written by Grant from 1839 to 1865. Many of them are to his wife, Julia, and offer an intimate view of their affectionate and enduring marriage; others, addressed to fellow generals, government officials, and his congressional patron Elihu B. Washburne, provide a fascinating contemporary perspective on the events that would later figure in the Memoirs.Grant’s autobiography is devoted almost entirely to his life as a soldier: his years at West Point, his service in the peacetime army, and his education in war during conflicts foreign and domestic. Grant considered the Mexican War “one of the most unjust ever waged by a stronger against a weaker nation” and thought that the Civil War was our punishment for it; but his retrospective disapproval did not prevent him from becoming enchanted by Mexico or from learning about his own capacity for leadership amid the confusion and carnage of battle.His account of the Civil War combines a lucid treatment of its political causes and its military actions, along with the story of his own growing strength as a commander. At the end of an inconsequential advance in Missouri in 1861 he realized that his opponent “had been as much afraid of me as I had been of him.” Fort Donelson and Shiloh taught him to seize the initiative, while his success in living off the land during the Vicksburg campaign inspired William T. Sherman to undertake his marches through the interior of the South.By 1864 Grant knew that the rebellion could be suppressed only by maintaining relentless pressure against its armies and methodically destroying its resources. As the Union’s final general-in-chief, he acted with the resolve that had eluded his predecessors, directing battles whose drawn-out ferocity had no precedent in Western warfare. His narrative of the war’s final year culminates in his meeting with Lee at Appomattox, a scene of quiet pride, sadness, and humanity.Grant’s writing is spare, telling, and quick, superbly evocative of the imperatives of decision, motion, and action that govern those who try to shape the course of war. Grant wrote about the most destructive war in American history with a clarity and directness unequaled in our literature.',
 "Lisey Debusher Landon lost her husband, Scott, two years ago, after a twenty-five year marriage of the most profound and sometimes frightening intimacy. Scott was an award-winning, bestselling novelist and a very complicated man. Early in their relationship, before they married, Lisey had to learn from him about books and blood and bools. Later, she understood that there was a place Scott went--a place that both terrified and healed him, that could eat him alive or give him the ideas he needed in order to live. Now it's Lisey's turn to face Scott's demons, Lisey's turn to go to Boo'ya Moon. What begins as a widow's efforts to sort through the papers of her celebrated husband becomes a nearly fatal journey into the darkness he inhabited. Perhaps King's most personal and powerful novel, Lisey's Story is about the wellsprings of creativity, the temptations of madness, and the secret language of love. (front flap)",
 'Where were you on October 1st at 3:03 pm?Graphic artist Clay Riddell was in the heart of Boston on that brilliant autumn afternoon when hell was unleashed before his eyes. Without warning, carnage and chaos reigned. Ordinary people fell victim to the basest, most animalistic destruction.And the apocalypse began with the ring of a cell phone...',
 '"Long live the King" hailed Entertainment Weekly upon the publication of Stephen King\'s On Writing. Part memoir, part master class by one of the bestselling authors of all time, this superb volume is a revealing and practical view of the writer\'s craft, comprising the basic tools of the trade every writer must have. King\'s advice is grounded in his vivid memories from childhood through his emergence as a writer, from his struggling early career to his widely reported near-fatal accident in 1999 -- and how the inextricable link between writing and living spurred his recovery. Brilliantly structured, friendly and inspiring, On Writing will empower and entertain everyone who reads it -- fans, writers, and anyone who loves a great story well told.(back cover)',
 "In this coming-of-age, rock-and-roll, Da Vinci Code-style tale, high school loser Tom Henderson discovers his deceased father's copy of The Catcher in the Rye and finds himself in the middle of several interlocking conspiracies and at least half a dozen mysteries.",
 'A comet the color of blood and flame cuts across the sky. Two great leaders—Lord Eddard Stark and Robert Baratheon—who hold sway over an age of enforced peace are dead, victims of royal treachery. Now, from the ancient citadel of Dragonstone to the forbidding shores of Winterfell, chaos reigns. Six factions struggle for control of a divided land and the Iron Throne of the Seven Kingdoms, preparing to stake their claims through tempest, turmoil, and war. It is a tale in which brother plots against brother and the dead rise to walk in the night. Here a princess masquerades as an orphan boy; a knight of the mind prepares a poison for a treacherous sorceress; and wild men descend from the Mountains of the Moon to ravage the countryside. Against a backdrop of incest and fratricide, alchemy and murder, victory may go to the men and women possessed of the coldest steel...and the coldest hearts. For when kings clash, the whole land trembles.Here is the second volume in George R.R. Martin magnificent cycle of novels that includes A Game of Thrones and A Storm of Swords. As a whole, this series comprises a genuine masterpiece of modern fantasy, bringing together the best the genre has to offer. Magic, mystery, intrigue, romance, and adventure fill these pages and transport us to a world unlike any we have ever experienced. Already hailed as a classic, George R.R. Martin stunning series is destined to stand as one of the great achievements of imaginative fiction.',
 "On an island off the coast of Maine, a man is found dead. There's no identification on the body. Only the dogged work of a pair of local newspapermen and a graduate student in forensics turns up any clues.  But that's just the beginning of the mystery. Because the more they learn about the man and the baffling circumstances of his death, the less they understand. Was it an impossible crime? Or something stranger still...?  No one but Stephen King could tell this story about the darkness at the heart of the unknown and our compulsion to investigate the unexplained. With echoes of Dashiell Hammett's The Maltese Falcon and the work of Graham Greene, one of the world's great storytellers presents a surprising tale that explores the nature of mystery itself...",
 'Barton Dawes’ unremarkable but comfortable existence suddenly takes a turn for the worst. Highway construction puts him out of work and simultaneously forces him out of his home. Dawes isn’t the sort of man who will take an insult of this magnitude lying down. His single-minded determination to fight the inevitable course of progress drives his wife and friends away while he tries to face down the uncaring bureaucracy that has destroyed his once comfortable life.--stephenking.com',
 'In this eerie, enchanting compilation, Stephen King takes readers down a road less travelled (for good reason) in the blockbuster e-book "Riding the Bullet." Terror becomes deja vu all over again when you get "That Feeling, You Can Only Say What It Is in French." "LT\'s Theory of Pets" will make you stop and think before giving a dog to a loved one. And there are eleven more stories that will keep you awake until dawn.Nothing is quite as it seems. Expect the unexpected in this veritable treasure trove of enthralling, witty, dark tales that could only come from the imagination of the greatest storyteller of our time.',
 'The house looked right, felt right, to Dr Louis Creed. Rambling, old, unsmart and comfortable. A place where the family could settle; the children grow and play and explore. The rolling hills and meadows of Maine seemed a world away from the fume-choked dangers of Chicago.Only the occasional big truck out on the two-lane highway, grinding up through the gears, hammering down the long gradients, growled out an intrusive note of threat.But behind the house and away from the road: that was safe. Just a carefully clear path up into the woods where generations of local children have processed with the solemn innocence of the young, taking with them their dear departed pets for burial.A sad place maybe, but safe. Surely a safe place. Not a place to seep into your dreams, to wake you, sweating with fear and foreboding...',
 "Alternate Cover Edition ISBN 0451188462 (ISBN13: 9780451188465)There's a place along Interstate 50 that some call the loneliest place on Earth. It's known as Desperation, Nevada.It's not a very nice place to live. It's an even worse place to die.Let the battle against evil begin.Welcome to ... Desperation",
 'Ralph Roberts, a sus setenta años y tras la muerte de su mujer, siente que su vida se acaba. ¿Es acaso posible que su reciente viudez, unida a un persistente insomnio, sea la causa de esa nueva sensibilidad visual que, poco a poco, le permite ver el más allá de las personas? A Ralph le preocupa este hecho, pero no menos que el súbito e inexplicable comportamiento, irracional y violento, de algunos de sus vecinos...',
 "A solitary finger pokes out of a drain. Novelty teeth turn predatory. The Nevada desert swallows a Cadillac. Meanwhile, the legend of Castle Rock returns... and grows on you. What does it all mean? What else could it mean? Stephen King is back with a powerful new collection of stories - a vast, many-chambered cave of a volume.In story after story, the long reach of Stephen King's imagination and the no-holds-barred force of his storytelling will take you to places you've never been before. On a roller-coaster through the macabre and the monstrous, via cutting-edge explorations of good and evil - and onto a heartfelt piece on Little League baseball.You will lose a good deal of sleep. But Stephen King, writing to beat the devil, will do your dreaming for you...",
 "Four years after the sudden death of his wife, forty-year-old bestselling novelist Mike Noonan is still grieving. Unable to write, and plagued by vivid nightmares set at the western Maine summerhouse he calls Sara Laughs, Mike reluctantly returns to the lakeside getaway. There, he finds his beloved Yankee town held in the grip of a powerful millionaire, Max Devore, whose vindictive purpose is to take his three-year-old granddaughter, Kyra, away from her widowed young mother, Mattie. As Mike is drawn into Mattie and Kyra's struggle, as he falls in love with both of them, he is also drawn into the mystery of Sara Laughs, now the site of ghostly visitations and escalating terrors. What are the forces that have been unleashed here — and what do they want of Mike Noonan?",
 'A modern classic, Carrie introduced a distinctive new voice in American fiction -- Stephen King. The story of misunderstood high school girl Carrie White, her extraordinary telekinetic powers, and her violent rampage of revenge, remains one of the most barrier-breaking and shocking novels of all time.Make a date with terror and live the nightmare that is...Carrie--back cover',
 "There's a place in Wentworth, Ohio, where summer is in full swing. It's called Poplar Street. Up until now it's been a nice place to live. The idling red van around the corner is about to change all that. Let the battle against evil begin. Here come...The Regulators",
 'Durante toda su vida Cujo fue un buen perro, un San Bernardo grandote, pacífico, juguetón y amante de los niños. Realmente se trataba de un perro bueno y feliz. Feliz hasta que le sucedió algo, y el cerebro de perro de Cujo se cubrió de una de esas oscuridades que se alimentan de sangre. Ahora, se ha convertido en un perro asesino; doblemente cruel por cuanto la gente no conoce su mutación y aún le ve en su anterior bondad. Heraldo de un pequeño Apocalipsis, Cujo desencadenará sobre un pueblo modélico un huracán de pánico y de muerte.Uno de los grandes clásicos de Stephen King, el gran maestro actual de la literatura de terror.',
 'After an old gypsy woman is killed by his car, lawyer Billy Halleck is stricken with a flesh-wasting malady and must undertake a nightmarish journey to confront the forces of death. Movie tie-in. Book available.',
 "Abandoned by his friends as they cycle through the Wisconsin town of French Landing, ten-year-old Ty Marshall spots a crow hopping towards him down the sidewalk. Then it calls his name. Fascinated, Ty gets off his bike for a closer look - and is dragged into the shadows.Is Ty destined to become the fourth victim of the Fisherman, the serial killer who's stalking this sleepy town? If so, only ex-detective Jack Sawyer may be able to save him. Jack left his old life behind precisely to avoid such madness, but lately he's been visited by strange nightmares and visions. Could the doomed past he thought he'd escaped forever be reaching out for him... from the Black House?",
 'Once, in a kingdom called Delain, there was a king with two sons…\u200bThus begins one of the most unique tales that master storyteller Stephen King has ever written—a sprawling fantasy of dark magic and the struggle for absolute power that utterly transforms the destinies of two brothers born into royalty. Through this enthralling masterpiece of mythical adventure, intrigue, and terror, you will thrill to this unforgettable narrative filled with relentless, wicked enchantment, and the most terrible of secrets…',
 "Alternate cover editions here and here.Paul Sheldon. He's a bestselling novelist who has finally met his biggest fan. Her name is Annie Wilkes and she is more than a rabid reader - she is Paul's nurse, tending his shattered body after an automobile accident. But she is also his captor, keeping him prisoner in her isolated house.",
 'Four novels from the inimitable - and unmistakable - master of terror and suspense... RAGEA high school show-and-tell session explodes into a nightmare of evil. A story of stunning psychological horror about a group of nice, ordinary kids who learn savage secrets of lust and violence...THE LONG WALKOnly death can keep you from the finish line--in the ultimate competition of the all-too-near future. A chilling glimpse into a future America where a macabre marathon is a contest with death...ROADWORKWhat happens when one good-and-angry man fights back is murder--and then some. An eerie variation on the theme of "Home Sweet Home"...THE RUNNING MANIn the year 2025, the best men don\'t run for president, they run for their lives. A nightmare version of a ghoulish game show where you bet your life - literally',
 'Roused by a single drop of blood, Rosie Daniels wakes up to the chilling realisation that her husband is going to kill her. And she takes flight – with his credit card.Alone in a strange city, Rosie begins to build a new life: she meets Bill Steiner and she finds an old junk shop painting, "Rose Madder," which strangely seems to want her as much as she wants it.But it’s hard for Rosie not to keep looking over her shoulder. Rose-maddened and on the rampage, Norman is a corrupt cop with a dog’s instinct for tracking people. And he’s getting close. Rosie can feel just how close he is getting…A brilliant dark-hued fable of gender wars, a haunting love story, and a hold-your-breath triumph of suspense, "Rose Madder" is Stephen King at his electrifying best.',
 'A collection of tales to invade and paralyse the mind as the safe light of day is infiltrated by the shadows of the night. As you listen, the clutching fingers of terror brush lightly across the nape of the neck, reach round from behind to clutch and lock themselves, white-knuckled, around the throat.This is the horror of ordinary people and everyday objects that become strangely altered; a world where nothing is ever quite what it seems, where the familiar and the friendly lure and deceive. A world where madness and blind panic become the only reality.Listening Length: 10 hours and 33 minutes',
 "Christine est belle, racée, séduisante.Elle aime les sensations fortes, les virées nocturnes et le rock n'roll des années héroïques. Depuis qu'elle connaît Arnie, elle est amoureuse. Signe particulier : Christine est une Plymouth « Fury », sortie en 1958 des ateliers automobiles de Detroit.Une seule rivale en travers de sa route : Leigh, la petite amie d'Arnie…Ce roman légendaire de Stephen King, rythmé par la musique de Chuck Berry et de Janis Joplin, a déjà pris place parmi les classiques de l'épouvante.",
 '“A riveting account that reaches beyond the market landscape to say something universal about risk and triumph, about hubris and failure.”— The New York TimesNAMED ONE OF THE BEST BOOKS OF THE YEAR BY BUSINESSWEEKIn this business classic—now with a new Afterword in which the author draws parallels to the recent financial crisis—Roger Lowenstein captures the gripping roller-coaster ride of Long-Term Capital Management. Drawing on confidential internal memos and interviews with dozens of key players, Lowenstein explains not just how the fund made and lost its money but also how the personalities of Long-Term’s partners, the arrogance of their mathematical certainties, and the culture of Wall Street itself contributed to both their rise and their fall.When it was founded in 1993, Long-Term was hailed as the most impressive hedge fund in history. But after four years in which the firm dazzled Wall Street as a $100 billion moneymaking juggernaut, it suddenly suffered catastrophic losses that jeopardized not only the biggest banks on Wall Street but the stability of the financial system itself. The dramatic story of Long-Term’s fall is now a chilling harbinger of the crisis that would strike all of Wall Street, from Lehman Brothers to AIG, a decade later. In his new Afterword, Lowenstein shows that LTCM’s implosion should be seen not as a one-off drama but as a template for market meltdowns in an age of instability—and as a wake-up call that Wall Street and government alike tragically ignored.Praise for When Genius Failed“[Roger] Lowenstein has written a squalid and fascinating tale of world-class greed and, above all, hubris.” —BusinessWeek“Compelling . . . The fund was long cloaked in secrecy, making the story of its rise . . . and its ultimate destruction that much more fascinating.” — The Washington Post“Story-telling journalism at its best.” — The Economist',
 'For centuries, the story of Dracula has captured the imagination of readers and storytellers alike. Kostova\'s breathtaking first novel, ten years in the writing, is an accomplished retelling of this ancient tale. "The story that follows is one I never intended to commit to paper... As an historian, I have learned that, in fact, not everyone who reaches back into history can survive it." With these words, a nameless narrator unfolds a story that began 30 years earlier. Late one night in 1972, as a 16-year-old girl, she discovers a mysterious book and a sheaf of letters in her father\'s library—a discovery that will have dreadful and far-reaching consequences, and will send her on a journey of mind-boggling danger. While seeking clues to the secrets of her father\'s past and her mother\'s puzzling disappearance, she follows a trail from London to Istanbul to Budapest and beyond, and learns that the letters in her possession provide a link to one of the world\'s darkest and most intoxicating figures. Generation after generation, the legend of Dracula has enticed and eluded both historians and opportunists alike. Now a young girl undertakes the same search that ended in the death and defilement of so many others—in an attempt to save her father from an unspeakable fate.(Fall 2005 Selection)',
 "Joseph Heller's powerful, wonderfully funny, deeply moving novel is the story of David -- yes, King David -- but as you've never seen him before. You already know David as the legendary warrior king of Israel, husband of Bathsheba, and father of Solomon; now meet David as he really the cocky Jewish kid, the plagiarized poet, and the Jewish father. Listen as David tells his own story, a story both relentlessly ancient and surprisingly modern, about growing up and growing old, about men and women, and about man and God. It is quintessential Heller.",
 'This is Joseph Heller\'s first novel since Catch-22, which was published in 1961 and has become the most celebrated novel of its decade — speaking for and to an entire American generation. Something Happened is different from Catch-22 in both substance and tone, but it is certain to have a comparable effect.* * *As it opens, he "gets the willies." At the end, he has "taken command."What happens in Something Happened happens to Bob Slocum — in his forties, contending with his office (where just about everybody is scared of somebody), trying to come to grips with his wife ("You did it," she says. "You made me this way. ..."), with his daughter (she\'s "unhappy"), with his son (he\'s "having difficulties"), and with his other son, and with his own past and his own present.Like his own children, like all children, Slocum once was new, valuable, eagerly waiting to grow into the good life sure to come. Now he is what he is, and his life is what it is.What happened? (What happens?)Something.',
 'When "The Moviegoer" was first published in 1961, it won the National Book Award and established Walker Percy as one of the supplest and most deftly modulated new voices in Southern literature. In his portrait of a boyish New Orleans stockbroker wavering between ennui and the longing for redemption, Percy managed to combine Bourbon Street elegance with the spiritual urgency of a Russian novel.On the eve of his thirtieth birthday, Binx Bolling is adrift. He occupies himself dallying with his secretaries and going to movies, which provide him with the "treasurable moments" absent from his real life. But one fateful Mardi Gras, Binx embarks on a quest - a harebrained search for authenticity that outrages his family, endangers his fragile cousin Kate, and sends him reeling through the gaudy chaos of the French Quarter. Wry and wrenching, rich in irony and romance, "The Moviegoer" is a genuine American classic.',
 'The last uncompleted novel of Ernest Hemingway, published posthumously in 1986, charts the life of a young American writer and his glamorous wife who fall for the same woman.A sensational bestseller when it appeared in 1986, The Garden of Eden is the last uncompleted novel of Ernest Hemingway, which he worked on intermittently from 1946 until his death in 1961. Set on the Côte d\'Azur in the 1920s, it is the story of a young American writer, David Bourne, his glamorous wife, Catherine, and the dangerous, erotic game they play when they fall in love with the same woman. "A lean, sensuous narrative...taut, chic, and strangely contemporary," The Garden of Eden represents vintage Hemingway, the master "doing what nobody did better" (R. Z. Sheppard, Time).',
 'A Farewell to Arms is the unforgettable story of an American ambulance driver on the Italian front and his passion for a beautiful English nurse. Set against the looming horrors of the battlefield - the weary, demoralized men marching in the rain during the German attack on Caporetto; the profound struggle between loyalty and desertion—this gripping, semiautobiographical work captures the harsh realities of war and the pain of lovers caught in its inexorable sweep. Ernest Hemingway famously said that he rewrote his ending to A Farewell to Arms thirty-nine times to get the words right.',
 "The moving sequel to the bestselling Big Rock Candy Mountain.Bruce Mason returns to Salt Lake City not for his aunt's funeral, but to encounter after forty-five years the place he fled in bitterness. A successful statesman and diplomat, Mason had buried his awkward and lonely childhood, sealed himself off from the thrills and torments of adolescence to become a figure who commanded international respect.But the realities of the present recede in the face of the ghosts of his past. As he makes the perfunctory arrangements for the funeral, we enter with him on an intensely personal and painful inner pilgrimage: we meet the father who darkened his childhood, the mother whose support was both redeeming and embarrassing, the friend who drew him into the respectable world of which he so craved to be a part, and the woman he nearly married. In this profoundly moving book Stegner has drawn an intimate portrait of a man understanding how his life has been shaped by experiences seemingly remote and inconsequential.",
 'Perceptive, funny, and nostalgic, E.B. White\'s stroll around Manhattan remains the quintessential love letter to the city, written by one of America\'s foremost literary figures. The New York Times has named Here is New York one of the ten best books ever written about the metropolis, and The New Yorker calls it "the wittiest essay, and one of the most perceptive, ever done on the city.',
 'A Story of Violent FaithA multilayered, bone-chilling narrative of messianic delusion, savage violence, polygamy, and unyielding faith. This is vintage Krakauer, an utterly compelling work of nonfiction that illuminates an otherwise confounding realm of human behavior.Jon Krakauer’s literary reputation rests on insightful chronicles of lives conducted at the outer limits. In Under The Banner of Heaven: A Story of Violent Faith, he shifts his focus from extremes of physical adventure to extremes of religious belief within our own borders. At the core of his book is an appalling double murder committed by two Mormon Fundamentalist brothers, Ron and Dan Lafferty, who insist they received a revelation from God commanding them to kill their blameless victims. Beginning with a meticulously researched account of this "divinely inspired" crime, Krakauer constructs a multilayered, bone-chilling narrative of messianic delusion, savage violence, polygamy, and unyielding faith. Along the way, he uncovers a shadowy offshoot of America’s fastest-growing religion, and raises provocative questions about the nature of religious belief.Krakauer takes readers inside isolated communities in the American West, Canada, and Mexico, where some forty-thousand Mormon Fundamentalists believe the mainstream Mormon Church went unforgivably astray when it renounced polygamy. Defying both civil authorities and the Mormon establishment in Salt Lake City, the leaders of these outlaw sects are zealots who answer only to God. Marrying prodigiously and with virtual impunity (the leader of the largest fundamentalist church took seventy-five "plural wives," several of whom were wed to him when they were fourteen or fifteen and he was in his eighties), fundamentalist prophets exercise absolute control over the lives of their followers, and preach that any day now the world will be swept clean in a hurricane of fire, sparing only their most obedient adherents.Weaving the story of the Lafferty brothers and their fanatical brethren with a clear-eyed look at Mormonism’s violent past, Krakauer examines the underbelly of the most successful homegrown faith in the United States, and finds a distinctly American brand of religious extremism. The result is vintage Krakauer, an utterly compelling work of nonfiction that illuminates an otherwise confounding realm of human behavior.',
 'In 1996, Allan Weisbecker sold his home and his possessions, loaded his dog and surfboards into his truck, and set off in search of his long-time surfing companion, Patrick, who had vanished into the depths of Central America. In this rollicking memoir of his quest from Mexico to Costa Rica to unravel the circumstances of Patrick\'s disappearance, Weisbecker intimately describes the people he befriended, the bandits he evaded, the waves he caught and lost en route to finding his friend.In Search of Captain Zero is, according to Outside magazine, "A subtly affecting tale of friendship and duty. [It] deserves a spot on the microbus dashboard as a hell of a cautionary tale about finding paradise and smoking it away." In Search of Captain A Surfer\'s Road Trip Beyond the End of the Road is a Booksense 76 Top Ten selection for September/October.',
 "Lonely, depressed, Vermont transplant Mirabelle Buttersfield, who sells expensive evening gloves nobody ever buys at Neiman Marcus in Beverly Hills and spends her evenings watching television with her two cats. She attempts to forge a relationship with middle-aged, womanizing, Seattle millionaire Ray Porter while being pursued by socially inept and unambitious slacker Jeremy.With more than 340,000 copies in print, Steve Martin's Shopgirl has landed on bestseller lists nationwide including: New York Times, Publishers Weekly, USA Today, Wall Street Journal, San Francisco Chronicle, Washington Post, and Los Angeles Times.Filled with the kind of witty, discerning observations that have brought Steve Martin incredible critical success, this story of modern day love and romance is a work of disarming tenderness.",
 'Au début des années soixante, Thompson, alors journaliste à San Francisco, est fasciné par les Hell\'s Angels. Son article sur ces seigneurs de la route fait sensation, il se lance dans la version longue : un an passé à rouler et à écrire à leurs côtés. Mais l\'équipée se termine sauvagement : parce qu\'il refuse de partager ses royalties, les Angels abandonnent l\'homme de lettres sur une route, à moitié mort et le crâne défoncé à coups de pierres... " En France on n\'a pas ça et aux Etats-unis, pays pourtant pas avare en déjantés, ils n\'en ont qu\'un comme lui. Même s\'il n\'a rien écrit depuis plus de vingt ans, Hunter S. Thompson demeure là-bas une légende. ", Eric Neuhoff, Le Figaro littéraire.',
 'Benjamin Franklin is the Founding Father who winks at us. An ambitious urban entrepreneur who rose up the social ladder, from leather-aproned shopkeeper to dining with kings, he seems made of flesh rather than of marble. In bestselling author Walter Isaacson\'s vivid and witty full-scale biography, we discover why Franklin seems to turn to us from history\'s stage with eyes that twinkle from behind his new-fangled spectacles. By bringing Franklin to life, Isaacson shows how he helped to define both his own time and ours.He was, during his 84-year life, America\'s best scientist, inventor, diplomat, writer, and business strategist, and he was also one of its most practical—though not most profound—political thinkers. He proved by flying a kite that lightning was electricity, and he invented a rod to tame it. He sought practical ways to make stoves less smoky and commonwealths less corrupt. He organized neighborhood constabularies and international alliances, local lending libraries and national legislatures. He combined two types of lenses to create bifocals and two concepts of representation to foster the nation\'s federal compromise. He was the only man who shaped all the founding documents of America: the Albany Plan of Union, the Declaration of Independence, the treaty of alliance with France, the peace treaty with England, and the Constitution. And he helped invent America\'s unique style of homespun humor, democratic values, and philosophical pragmatism.But the most interesting thing that Franklin invented, and continually reinvented, was himself. America\'s first great publicist, he was, in his life and in his writings, consciously trying to create a new American archetype. In the process, he carefully crafted his own persona, portrayed it in public, and polished it for posterity.Through it all, he trusted the hearts and minds of his fellow "leather-aprons" more than he did those of any inbred elite. He saw middle-class values as a source of social strength, not as something to be derided. His guiding principle was a "dislike of everything that tended to debase the spirit of the common people." Few of his fellow founders felt this comfort with democracy so fully, and none so intuitively.In this colorful and intimate narrative, Isaacson provides the full sweep of Franklin\'s amazing life, from his days as a runaway printer to his triumphs as a statesman, scientist, and Founding Father. He chronicles Franklin\'s tumultuous relationship with his illegitimate son and grandson, his practical marriage, and his flirtations with the ladies of Paris. He also shows how Franklin helped to create the American character and why he has a particular resonance in the twenty-first century.',
 'Einstein was a rebel and nonconformist from boyhood days, and these character traits drove both his life and his science. In this narrative, Walter Isaacson explains how his mind worked and the mysteries of the universe that he discovered.',
 'Despite--or because of--her irreverence, faith is a natural subject for Anne Lamott. Since Operating Instructions and Bird by Bird, her fans have been waiting for her to write the book that explained how she came to the big-hearted, grateful, generous faith that she so often alluded to in her two earlier nonfiction books. The people in Anne Lamott\'s real life are like beloved characters in a favorite series for her readers: Her friend Pammy; her son, Sam; and the many funny and wise folks who attend her church are all familiar. And Traveling Mercies is a welcome return to those lives, as well as an introduction to new companions Lamott treats with the same candor, insight, and tenderness. Lamott\'s faith isn\'t about easy answers, which is part of what endears her to believers as well as nonbelievers. Against all odds, she came to believe in God, and then, even more miraculously, in herself. As she puts it, "My coming to faith did not start with a leap but rather a series of staggers." At once tough, personal, affectionate, wise, and very funny, Traveling Mercies tells in exuberant detail how Anne Lamott learned to shine the light of faith on the darkest part of ordinary life, exposing surprising pockets of meaning and hope.',
 "From the #1 New York Times Bestselling author of Leaving Time\xa0Paige has only a few vivid memories of her mother, who abandoned her at five years old. Now, having left her father behind in Chicago for dreams of art school and marriage to an ambitious young doctor, she finds herself with a child of her own. But her mother's absence and shameful memories of her past force her to doubt whether she could ever be capable of bringing joy and meaning into the life of her child, gifts her own mother never gave.Harvesting the Heart is written with astonishing clarity and evocative detail, convincing in its depiction of emotional pain, love, and vulnerability, and recalls the writing of Alice Hoffman and Kristin Hannah. Out of Paige's struggle to find wholeness, Jodi Picoult crafts an absorbing novel peopled by richly drawn characters, and explores motherhood with a power and depth only she is capable of.“A brilliant, moving examination of motherhood, brimming with detail and emotion.” —Richmond\xa0Times-Dispatch“Jodi Picoult explores the fragile ground of ambivalent motherhood in her lush second novel. This story belongs to… the lucky reader.” —The New York Times Book Review",
 "Fourteen-year-old Trixie Stone is in love for the first time. She's also the light of her father, Daniel's life -- a straight-A student; a pretty, popular freshman in high school; a girl who's always seen her father as a hero. That is, until her world is turned upside down with a single act of violence. Suddenly everything Trixie has believed about her family -- and herself -- seems to be a lie. Could the boyfriend who once made Trixie wild with happiness have been the one to end her childhood forever? She says that he is, and that is all it takes to make Daniel, a seemingly mild-mannered comic book artist with a secret tumultuous past he has hidden even from his family, venture to hell and back to protect his daughter.  With The Tenth Circle, Jodi Picoult offers her most powerful chronicle yet as she explores the unbreakable bond between parent and child, and questions whether you can reinvent yourself in the course of a lifetime -- or if your mistakes are carried forever.",
 'When odd, supernatural events plague the town of Comtosook, a ghost hunter is hired by the developer to help convince the residents that there\'s nothing spiritual about the property. An intricate tale of love, haunting memories, and renewal. (An interview about the book is included below the reading guide)."Sometimes I wonder....Can a ghost find you, if she wants to?" An intricate tale of love, haunting memories, and renewal, Second Glance begins in current-day Vermont, where an old man puts a piece of land up for sale and unintentionally raises protest from the local Abenaki Indian tribe, who insist it\'s a burial ground. When odd, supernatural events plague the town of Comtosook, a ghost hunter is hired by the developer to help convince the residents that there\'s nothing spiritual about the property. Enter Ross Wakeman, a suicidal drifter who has put himself in mortal danger time and again. He\'s driven his car off a bridge into a lake. He\'s been mugged in New York City and struck by lightning in a calm country field. Yet despite his best efforts, life clings to him and pulls him ever deeper into the empty existence he cannot bear since his fiancée\'s death in a car crash eight years ago. Ross now lives only for the moment he might once again encounter the woman he loves. But in Comtosook, the only discovery Ross can lay claim to is that of Lia Beaumont, a skittish, mysterious woman who, like Ross, is on a search for something beyond the boundary separating life and death. Thus begins Jodi Picoult\'s enthralling and ultimately astonishing story of love, fate, and a crime of passion. Hailed by critics as a "master" storyteller (Washington Post), Picoult once again "pushes herself, and consequently the reader, to think about the unthinkable" (Denver Post). Second Glance, her eeriest and most engrossing work yet, delves into a virtually unknown chapter of American history -- Vermont\'s eugenics project of the 1920s and 30s -- to provide a compelling study of the things that come back to haunt us -- literally and figuratively. Do we love across time, or in spite of it?',
 '“A triumph. This novel’s haunting strength will hold the reader until the very end and make Faith and her story impossible to forget.”— Richmond Times Dispatch “Extraordinary.”— Orlando Sentinel From the #1 New York Times bestselling author Jodi Picoult ( Nineteen Minutes, Change of Heart, Handle with Care ) comes Keeping Faith : an “addictively readable” ( Entertainment Weekly ) novel that “makes you wonder about God. And that is a rare moment, indeed, in modern fiction” ( USA Today ).',
 "Sometimes finding your own voice  is a matter of listening to the heart....  Jodi Picoult's powerful novel portrays an emotionally charged marriage that changes course in one explosive moment....For years, Jane Jones has lived in the shadow of her husband, renowned San Diego oceanographer Oliver Jones. But during an escalating argument, Jane turns on him with an alarming volatility. In anger and fear, Jane leaves with their teenage daughter, Rebecca, for a cross-country odyssey charted by letters from her brother Joley, guiding them to his Massachusetts apple farm, where surprising self-discoveries await. Now Oliver, an expert at tracking humpback whales across vast oceans, will search for his wife across a continent -- and find a new way to see the world, his family, and himself: through her eyes.",
 "Jack buries his past, content to become the mysterious stranger who has appeared out of the blue. Addie, desperate for answers, must look into her heart -- and into Jack's lies and shadowy secrets -- for evidence that will condemn or redeem the man she has come to love.When Jack St. Bride arrives by chance in the sleepy New England town of Salem Falls, he decides to reinvent himself. Tall, blond, and handsome, Jack was once a beloved teacher and soccer coach at a girls' prep school -- until a student's crush sparked a powder keg of accusation and robbed him of his reputation. Now, working for minimum wage washing dishes for Addie Peabody at the Do-Or-Diner, Jack buries his past, content to become the mysterious stranger who has appeared out of the blue. With ghosts of her own haunting her, Addie Peabody is as cautious around men as Jack St. Bride is around women. But as this unassuming stranger steps smoothly into the diner's daily routine, she finds him fitting just as comfortably inside her heart -- and slowly, a gentle, healing love takes hold between them. Yet planting roots in Salem Falls may prove fateful for Jack. Amid the white-painted centuries-old churches, a quartet of bored, privileged teenage girls have formed a coven that is crossing the line between amusement and malicious intent. Quick to notice the attractive new employee at Addie's diner, the girls turn Jack's world upside down with a shattering allegation that causes history to repeat itself -- and forces Jack to proclaim his innocence once again. Suddenly nothing in Salem Falls is as it seems: a safe haven turns dangerous, an innocent girl meets evil face-to-face, a dishwasher with a Ph.D. is revealed to be an ex-con. As Jack's hidden past catches up with him, the seams of this tiny town begin to tear, and the emerging truth becomes a slippery concept written in shades of gray. Now Addie, desperate for answers, must look into her heart -- and into Jack's lies and shadowy secrets -- for evidence that will condemn or redeem the man she has come to love.",
 "For eighteen years the Hartes and the Golds have lived next door to each other, sharing everything from Chinese food to chicken pox to carpool duty—they've grown so close it seems they have always been a part of each other's lives. Parents and children alike have been best friends, so it's no surprise that in high school Chris and Emily's friendship blossoms into something more. They've been soul mates since they were born.So when midnight calls from the hospital come in, no one is ready for the appalling truth: Emily is dead at seventeen from a gunshot wound to the head. There's a single unspent bullet in the gun that Chris took from his father's cabinet—a bullet that Chris tells police he intended for himself. But a local detective has doubts about the suicide pact that Chris has described.",
 "New York Times best-selling author Jodi Picoult is widely acclaimed for her keen insights into the hearts and minds of real people. Now she tells the emotionally riveting story of a family torn apart by conflicting needs and a passionate love that triumphs over human weakness. Anna is not sick, but she might as well be. By age 13 she has undergone countless surgeries, transfusions, and shots so that her older sister, Kate, can somehow fight the leukemia that has plagued her since childhood. The product of preimplantation genetic diagnosis, Anna was conceived as a bone marrow match for Kate—a life and a role that she has never challenged ... until now. Like most teenagers, Anna is beginning to question who she truly is. But unlike most teenagers, she has always been defined in terms of her sister—and so Anna makes a decision that for most would be unthinkable, a decision that will tear her family apart and have perhaps fatal consequences for the sister she loves. My Sister's Keeper examines what it means to be a good parent, a good sister, a good person. Is it morally correct to do whatever it takes to save a child's life, even if that means infringing upon the rights of another? Is it worth trying to discover who you really are if that quest makes you like yourself less? Should you follow your own heart or let others lead you? Once again, in My Sister's Keeper, Jodi Picoult tackles a controversial real-life subject with grace, wisdom, and sensitivity.",
 "Cold Mountain is a novel about a soldier’s perilous journey back to his beloved near the Civil War's end. At once a love story & a harrowing account of one man’s long walk home, Cold Mountain introduces a new talent in American literature.Based on local history & family stories passed down by Frazier’s great-great-grandfather, Cold Mountain is the tale of a wounded Confederate soldier, Inman, who walks away from the ravages of the war & back home to his prewar sweetheart, Ada. His odyssey thru the devastated landscape of the soon-to-be-defeated South interweaves with Ada’s struggle to revive her father’s farm, with the help of an intrepid young drifter named Ruby. As their long-separated lives begin to converge at the close of the war, Inman & Ada confront the vastly transformed world they’ve been delivered.Frazier reveals insight into human relations with the land & the dangers of solitude. He also shares with the great 19th century novelists a keen observation of a society undergoing change. Cold Mountain recreates a world gone by that speaks to our time.",
 '"Every family is a ghost story..."Mitch Albom mesmerized readers around the world with his number one \nNew York Times\n bestsellers, The Five People You Meet in Heaven and Tuesdays with Morrie. Now he returns with a beautiful, haunting novel about the family we love and the chances we miss.For One More Day is the story of a mother and a son, and a relationship that covers a lifetime and beyond. It explores the question: What would you do if you could spend one more day with a lost loved one? As a child, Charley "Chick" Benetto was told by his father, "You can be a mama\'s boy or a daddy\'s boy, but you can\'t be both." So he chooses his father, only to see the man disappear when Charley is on the verge of adolescence. Decades later, Charley is a broken man. His life has been crumbled by alcohol and regret. He loses his job. He leaves his family. He hits bottom after discovering his only daughter has shut him out of her wedding. And he decides to take his own life.He makes a midnight ride to his small hometown, with plans to do himself in. But upon failing even to do that, he staggers back to his old house, only to make an astonishing discovery. His mother, who died eight years earlier, is still living there, and welcomes him home as if nothing ever happened..What follows is the one "ordinary" day so many of us yearn for, a chance to make good with a lost parent, to explain the family secrets, and to seek forgiveness. Somewhere between this life and the next, Charley learns the astonishing things he never knew about his mother and her sacrifices. And he tries, with her tender guidance, to put the crumbled pieces of his life back together.Through Albom\'s inspiring characters and masterful storytelling, readers will newly appreciate those whom they love and may have thought they\'d lost in their own lives. For One More Day is a book for anyone in a family, and will be cherished by Albom\'s millions of fans worldwide.',
 "The shocking thing about the girls was how nearly normal they seemed when their mother let them out for the one and only date of their lives. Twenty years on, their enigmatic personalities are embalmed in the memories of the boys who worshipped them and who now recall their shared adolescence: the brassiere draped over a crucifix belonging to the promiscuous Lux; the sisters' breathtaking appearance on the night of the dance; and the sultry, sleepy street across which they watched a family disintegrate and fragile lives disappear.",
 'An alternative cover for this ISBN can be found hereOne day fourteen-year-old Sophie Amundsen comes home from school to find in her mailbox two notes, with one question on each: "Who are you?" and "Where does the world come from?" From that irresistible beginning, Sophie becomes obsessed with questions that take her far beyond what she knows of her Norwegian village. Through those letters, she enrolls in a kind of correspondence course, covering Socrates to Sartre, with a mysterious philosopher, while receiving letters addressed to another girl. Who is Hilde? And why does her mail keep turning up? To unravel this riddle, Sophie must use the philosophy she is learning—but the truth turns out to be far more complicated than she could have imagined.',
 'The year is 1945. Claire Randall, a former combat nurse, is just back from the war and reunited with her husband on a second honeymoon when she walks through a standing stone in one of the ancient circles that dot the British Isles. Suddenly she is a Sassenach—an “outlander”—in a Scotland torn by war and raiding border clans in the year of Our Lord...1743. Hurled back in time by forces she cannot understand, Claire is catapulted into the intrigues of lairds and spies that may threaten her life, and shatter her heart. For here James Fraser, a gallant young Scots warrior, shows her a love so absolute that Claire becomes a woman torn between fidelity and desire—and between two vastly different men in two irreconcilable lives.',
 'A Breath of Snow and Ashes continues the extraordinary story of 18th-century Scotsman Jamie Fraser and his 20th-century wife, Claire.The year is 1772, and on the eve of the American Revolution, the long fuse of rebellion has already been lit. Men lie dead in the streets of Boston, and in the backwoods of North Carolina, isolated cabins burn in the forest.With chaos brewing, the governor calls upon Jamie Fraser to unite the backcountry and safeguard the colony for King and Crown. But from his wife Jamie knows that three years hence the shot heard round the world will be fired, and the result will be independence — with those loyal to the King either dead or in exile. And there is also the matter of a tiny clipping from The Wilmington Gazette, dated 1776, which reports Jamie’s death, along with his kin. For once, he hopes, his time-traveling family may be wrong about the future.',
 'The year is 1771, and war is coming. Jamie Fraser’s wife tells him so. Little as he wishes to, he must believe it, for hers is a gift of dreadful prophecy—a time-traveler’s certain knowledge. Claire’s unique view of the future has brought him both danger and deliverance in the past; her knowledge of the oncoming revolution is a flickering torch that may light his way through the perilous years ahead—or ignite a conflagration that will leave their lives in ashes.',
 'The tragedy of the Compson family features some of the most memorable characters in literature: beautiful, rebellious Caddy; the manchild Benjy; haunted, neurotic Quentin; Jason, the brutal cynic; and Dilsey, their black servant. Their lives fragmented and harrowed by history and legacy, the character’s voices and actions mesh to create what is arguably Faulkner’s masterpiece and one of the greatest novels of the twentieth century.',
 'Light in August, a novel that contrasts stark tragedy with hopeful perseverance in the face of mortality, which features some of Faulkner’s most memorable characters: guileless, dauntless Lena Grove, in search of the father of her unborn child; Reverend Gail Hightower, a lonely outcast haunted by visions of Confederate glory; and Joe Christmas, a desperate, enigmatic drifter consumed by his mixed ancestry.',
 'From the Modern Library’s new set of beautifully repackaged hardcover classics by William Faulkner—also available are Snopes, As I Lay Dying, The Sound and the Fury, Light in August, and Absalom, Absalom!William Faulkner was a master of the short story. Most of the pieces in this collection are drawn from the greatest period in his writing life, the fifteen or so years beginning in 1929, when he published The Sound and the Fury . They explore many of the themes found in the novels and feature characters of small-town Mississippi life that are uniquely Faulkner’s. In “A Rose for Emily,” the first of his stories to appear in a national magazine, a straightforward, neighborly narrator relates a tale of love, betrayal, and murder. The vicious family of the Snopes trilogy turns up in “Barn Burning,” about a son’s response to the activities of his arsonist father. And Jason and Caddy Compson, two other inhabitants of Faulkner’s mythical Yoknapatawpha County, are witnesses to the terrorizing of a pregnant black laundress in “That Evening Sun.” These and the other stories gathered here attest to the fact that Faulkner is, as Ralph Ellison so aptly noted, “the greatest artist the South has produced.”Including these “Barn Burning”“Two Soldiers”“A Rose for Emily”“Dry September”“That Evening Sun”“Red Leaves”“Lo!”“Turnabout”“Honor”“There Was a Queen”“Mountain Victory”“Beyond”“Race at Morning”',
 "This is the second volume of Faulkner's trilogy about the Snopes family, his symbol for the grasping, destructive element in the post-bellum South.Like its predecessor The Hamlet and its successor The Mansion, The Town is completely self-contained, but it gains resonance from being read with the other two. The story of Flem Snopes' ruthless struggle to take over the town of Jefferson, Mississippi, the book is rich in typically Faulknerian episodes of humor and of profundity.",
 'From the author of the breathtaking bestsellers Outlander and Dragonfly in Amber, the extraordinary saga continues.Their passionate encounter happened long ago by whatever measurement Claire Randall took. Two decades before, she had traveled back in time and into the arms of a gallant eighteenth-century Scot named Jamie Fraser. Then she returned to her own century to bear his child, believing him dead in the tragic battle of Culloden. Yet his memory has never lessened its hold on her... and her body still cries out for him in her dreams.Then Claire discovers that Jamie survived. Torn between returning to him and staying with their daughter in her own era, Claire must choose her destiny. And as time and space come full circle, she must find the courage to face the passion and pain awaiting her...the deadly intrigues raging in a divided Scotland... and the daring voyage into the dark unknown that can reunite or forever doom her timeless love.',
 'Includes a sneak preview of the next Outlander novel, An Echo in the Bone .Adored bestselling author Diana Gabaldon brings us the first book in a new trilogy featuring many of the characters from her wildly popular Outlander series.In her New York Times bestselling Outlander novels, Diana Gabaldon introduced millions of readers to a dazzling world of history and adventure — a world of vibrant settings and utterly unforgettable characters. Now one of these characters, Major Lord John Grey, opens the door to his own part of this world — eighteenth-century London, a seething anthill of nobility and rabble peopled by soldiers and spies, whores and dukes. Great Britain is battling France for supremacy on three continents — and life is good for a soldier.The year is 1757. On a clear morning in mid-June, Lord John Grey emerges from London’s Beefsteak Club, his mind in turmoil. A nobleman and a high-ranking officer in His Majesty’s Army, Grey has just witnessed something shocking. But his efforts to avoid a scandal that might destroy his family are interrupted by something still more the Crown appoints him to investigate the brutal murder of a comrade in arms, who may have been a traitor.Obliged to pursue two inquiries at once, Major Grey finds himself ensnared in a web of treachery and betrayal that touches every stratum of English society — and threatens all he holds dear. From the bawdy houses of London’s night-world to the stately drawing rooms of the nobility, and from the blood of a murdered corpse to the thundering seas ruled by the majestic fleet of the East India Company, Lord John pursues the elusive trails of a vanishing footman and a woman in green velvet, who may hold the key to everything — or nothing.The early days of the Seven Years War come brilliantly to life in this historical mystery by an author whose unique and compelling storytelling has engrossed millions of readers worldwide.',
 "Stephanie Plum is thinking her career as a fugitive apprehension agent has run its course. She's been shot at, spat at, cussed at, fire-bombed, mooned, and attacked by dogs. Stephanie thinks it's time for a change. So she quits. She wants something safe and normal. But the kind of trouble she had at the bail bonds office can't compare to the kind of trouble she finds herself facing now...Stephanie is stalked by a maniac returned from the grave for the sole purpose of putting her into a burial plot of her own. He's killed before, and he'll kill again if given the chance. Caught between staying far away from the bounty hunter business and staying alive, Stephanie reexamines her life and the possibility that being a bounty hunter is the solution rather than the problem. After disturbingly brief careers at the button factory, Kan Klean Dry Cleaners, and Cluck-in-a-Bucket, Stephanie takes an office position in security, working for Ranger, the sexiest, baddest bounty hunter and businessman on two continents. Tempers and temperatures rise as competition ratchets up between the two men in her life -- her on-again, off-again boyfriend, tough Trenton cop Joe Morelli, and her boss, Ranger. Can Stephanie Plum take the heat? Can you?",
 'This work of art reflects life in Ireland at the turn of the last century, and by rejecting euphemism, reveals to the Irish their unromantic realities. Each of the 15 stories offers glimpses into the lives of ordinary Dubliners, and collectively they paint a portrait of a nation.',
 'A story with no real beginning or end (it ends in the middle of a sentence and begins in the middle of the same sentence), this "book of Doublends Jined" is as remarkable for its prose as for its circular structure. Written in a fantastic dream-language, forged from polyglot puns and portmanteau words, the Wake features some of Joyce\'s most hilarious characters: the Irish barkeep Humphrey Chimpden Earwicker, Shem the Penman, Shaun the Postman, and Anna Livia Plurabelle. Joyce\'s final work, Finnegan\'s Wake is his masterpiece of the night as Ulysses is of the day. Supreme linguistic virtuosity conjures up the dark underground worlds of sexuality and dream. Joyce undermines traditional storytelling and all official forms of English and confronts the different kinds of betrayal - cultural, political and sexual - that he saw at the heart of Irish history. Dazzlingly inventive, with passages of great lyrical beauty and humour, Finnegans Wake remains one of the most remarkable works of the twentieth century.',
 "While restoring a 15th-century painting which depicts a chess game between the Duke of Flanders and his knight, Julia, a young art expert, discovers a hidden inscription in the corner: Quis Necavit Equitem. Translation: Who killed the knight? Breaking the silence of five centuries, Julia's hunt for a Renaissance murderer leads her into a modern-day game of sin, betrayal, and death.",
 "Taken from the original, uncensored journals of Anaïs Nin, Henry and June spans a single year in Nin's life when she discovers love and torment in one insatiable couple. From late 1931 to the end of 1932, Nin falls in love with Henry Miller's writing and his wife June's striking beauty. When June leaves Paris for New York, Henry and Anaïs begin a fiery affair that liberates her sexually and morally, but also undermines her marriage and eventually leads her into psychoanalysis. As she grapples with her own conscience, a single question dominates her thoughts: What will happen when June returns to Paris? An intimate account of one woman's sexual awakening, Henry and June exposes the pain and pleasure felt by a single person trapped between two loves.",
 'Fifteen short stories by Anaïs Nin published posthumously in 1977 - though largely written in the 1940s as erotica for a private collector. In Delta of Venus Anaïs Nin penned a lush, magical world where the characters of her imagination possess the most universal of desires and exceptional of talents. Among these provocative stories, a Hungarian adventurer seduces wealthy women then vanishes with their money; a veiled woman selects strangers from a chic restaurant for private trysts; and a Parisian hatmaker named Mathilde leaves her husband for the opium dens of Peru. Delta of Venus is an extraordinarily rich and exotic collection from the master of erotic writing.Part of the Quality Paperback Book Club series with limited-edition art cover. Cover art painted by Monica Elias.',
 'At the age of twenty-six, Maarten Troost who had been pushing the snooze button on the alarm clock of life by racking up useless graduate degrees and muddling through a series of temp jobs decided to pack up his flip-flops and move to Tarawa, a remote South Pacific island in the Republic of Kiribati. He was restless and lacked direction, and the idea of dropping everything and moving to the ends of the Earth was irresistibly romantic. He should have known better. The Sex Lives of Cannibals tells the hilarious story of what happens when Troost discovers that Tarawa is not the island paradise he dreamed of. Falling into one amusing misadventure after another, Troost struggles through relentless, stifling heat, a variety of deadly bacteria, polluted seas, toxic fish, and worst of all, no television or coffee. And that\'s just the first day. Sunburned, emaciated, and stinging with sea lice, Troost spends the next two years battling incompetent government officials, alarmingly large critters, erratic electricity, and a paucity of food options. He contends with a cast of bizarre local characters, including "Half-Dead Fred" and the self-proclaimed Poet Laureate of Tarawa (a British drunkard who\'s never written a poem in his life), and eventually settles into the ebb and flow of island life, just before his return to the culture shock of civilization. With the rollicking wit of Bill Bryson, the brilliant travel exposition of Paul Theroux, and a hipster edge that is entirely Troost\'s own, The Sex Lives of Cannibals is the ultimate vicarious adventure. Readers may never long to set foot on Tarawa, but they\'ll want to travel with Troost time and time again.',
 "As David K. Shipler makes clear in this powerful, humane study, the invisible poor are engaged in the activity most respected in American ideology—hard, honest work. But their version of the American Dream is a nightmare: low-paying, dead-end jobs; the profound failure of government to improve upon decaying housing, health care, and education; the failure of families to break the patterns of child abuse and substance abuse. Shipler exposes the interlocking problems by taking us into the sorrowful, infuriating, courageous lives of the poor—white and black, Asian and Latino, citizens and immigrants. We encounter them every day, for they do jobs essential to the American economy.We meet drifting farmworkers in North Carolina, exploited garment workers in New Hampshire, illegal immigrants trapped in the steaming kitchens of Los Angeles restaurants, addicts who struggle into productive work from the cruel streets of the nation's capital—each life another aspect of a confounding, far-reaching urgent national crisis. And unlike mostworks on poverty, this one delves into the calculations of some employers as well—their razor-thin profits, their anxieties about competition from abroad, their frustrations in finding qualified workers.This impassioned book not only dissects the problems, but makes pointed, informed recommendations for change. It is a book that stands to make a difference.",
 "When the National Security Agency's invincible code-breaking machine encounters a mysterious code it cannot break, the agency calls its head cryptographer, Susan Fletcher, a brilliant and beautiful mathematician. What she uncovers sends shock waves through the corridors of power. The NSA is being held hostage... not by guns or bombs, but by a code so ingeniously complex that if released it would cripple U.S. intelligence.Caught in an accelerating tempest of secrecy and lies, Susan Fletcher battles to save the agency she believes in. Betrayed on all sides, she finds herself fighting not only for her country but for her life, and in the end, for the life of the man she loves.(back cover)",
 'Librarian note: An alternate cover for this edition can be found here: 2005.Journeys to the end of the world, fantastic creatures, and epic battles between good and evil—what more could any reader ask for in one book? The book that has it all is The Lion, the Witch and the Wardrobe, written in 1949 by Clive Staples Lewis. But Lewis did not stop there. Six more books followed, and together they became known as The Chronicles of Narnia.For the past fifty years, The Chronicles of Narnia have transcended the fantasy genre to become part of the canon of classic literature. Each of the seven books is a masterpiece, drawing the reader into a land where magic meets reality, and the result is a fictional world whose scope has fascinated generations.This edition presents all seven books—unabridged—in one impressive volume. The books are presented here in chronlogical order, each chapter graced with an illustration by the original artist, Pauline Baynes. Deceptively simple and direct, The Chronicles of Narnia continue to captivate fans with adventures, characters, and truths that speak to readers of all ages, even fifty years after they were first published.',
 'Set during the waning days of the Trujillo dictatorship in the Dominican Republic in 1960, this extraordinary novel tells the story of the Mirabal sisters, three young wives and mothers who are assassinated after visiting their jailed husbands. From the author of How the Garcia Girls Lost Their Accents comes this tale of courage and sisterhood set in the Dominican Republic during the rise of the Trujillo dictatorship. A skillful blend of fact and fiction, In the Time of the Butterflies is inspired by the true story of the three Mirabal sisters who, in 1960, were murdered for their part in an underground plot to overthrow the government. Alvarez breathes life into these historical figures--known as "las mariposas," or "the butterflies," in the underground--as she imagines their teenage years, their gradual involvement with the revolution, and their terror as their dissentience is uncovered.  Alvarez\'s controlled writing perfectly captures the mounting tension as "the butterflies" near their horrific end. The novel begins with the recollections of Dede, the fourth and surviving sister, who fears abandoning her routines and her husband to join the movement. Alvarez also offers the perspectives of the other sisters: brave and outspoken Minerva, the family\'s political ringleader; pious Patria, who forsakes her faith to join her sisters after witnessing the atrocities of the tyranny; and the baby sister, sensitive Maria Teresa, who, in a series of diaries, chronicles her allegiance to Minerva and the physical and spiritual anguish of prison life.  In the Time of the Butterflies is an American Library Association Notable Book and a 1995 National Book Critics Circle Award nominee.',
 'Uprooted from their family home in the Dominican Republic, the four Garcia sisters - Carla, Sandra, Yolanda, and Sofia - arrive in New York City in 1960 to find a life far different from the genteel existence of maids, manicures, and extended family they left behind. What they have lost - and what they find - is revealed in the fifteen interconnected stories that make up this exquisite novel from one of the premier novelists of our time.',
 'Charles Arrowby, leading light of England\'s theatrical set, retires from glittering London to an isolated home by the sea. He plans to write a memoir about his great love affair with Clement Makin, his mentor both professionally and personally, and to amuse himself with Lizzie, an actress he has strung along for many years. None of his plans work out, and his memoir evolves into a riveting chronicle of the strange events and unexpected visitors--some real, some spectral--that disrupt his world and shake his oversized ego to its very core.In exposing the jumble of motivations that drive Arrowby and the other characters, Iris Murdoch lays bare "the truth of untruth"--the human vanity, jealousy, and lack of compassion behind the disguises they present to the world. Played out against a vividly rendered landscape and filled with allusions to myth and magic, Charles\'s confrontation with the tidal rips of love and forgiveness is one of Murdoch\'s most moving and powerful novels.',
 'When Marian Taylor takes a post as governess at Gaze Castle, a remote house on a desolate coast, she finds herself confronted with a number of weird mysteries and involved in a drama she only partly understands.',
 "As macabre as a Jacobean tragedy, as frivolous as a Restoration comedy, Iris Murdoch's fifth novel takes sombre themes - adultery, incest, castration, violence and suicide - and yet succeeds in making of them a book that is brilliantly enjoyable.",
 "Japan's most highly regarded novelist now vaults into the first ranks of international fiction writers with this heroically imaginative novel, which is at once a detective story, an account of a disintegrating marriage, and an excavation of the buried secrets of World War II. In a Tokyo suburb a young man named Toru Okada searches for his wife's missing cat. Soon he finds himself looking for his wife as well in a netherworld that lies beneath the placid surface of Tokyo. As these searches intersect, Okada encounters a bizarre group of allies and antagonists: a psychic prostitute; a malevolent yet mediagenic politician; a cheerfully morbid sixteen-year-old-girl; and an aging war veteran who has been permanently changed by the hideous things he witnessed during Japan's forgotten campaign in Manchuria. Gripping, prophetic, suffused with comedy and menace, The Wind-Up Bird Chronicle is a tour de force equal in scope to the masterpieces of Mishima and Pynchon.",
 "Jeremy Bremen has a secret.\xa0\xa0All his life he's been cursed with the ability to read minds.\xa0\xa0He knows the secret thoughts, fears, and desires of others as if they were his own.\xa0\xa0For years, his wife, Gail, has served as a shield between Jeremy and the burden of this terrible knowledge.\xa0\xa0But Gail is dying, her mind ebbing slowly away, leaving him vulnerable to the chaotic flood of thought that threatens to sweep away his sanity.\xa0\xa0Now Jeremy is on the run--from his mind, from his past, from himself--hoping to find peace in isolation.\xa0\xa0Instead he witnesses an act of brutality that propels him on a treacherous trek across a dark and dangerous America.\xa0\xa0From a fantasy theme park to the lair of a killer to a sterile hospital room in St. Louis, he follows a voice that is calling him to witness the stunning mystery at the heart of mortality.",
 "It's the summer of 1960 in Elm Haven, Illinois, and five 12-year old boys are forming the bonds that a lifetime of changes will never erase. But then a dark cloud threatens the bright promise of summer vacation: on the last day of school, their classmate Tubby Cooke vanishes. Soon, the group discovers stories of other children who once disappeared from Elm Haven. And there are other strange things happening in town: unexplained holes in the ground, a stranger dressed as a World War I soldier, and a rendering-plant truck that seems to be following the five boys. The friends realize that there is a terrible evil lurking in Elm Haven...and they must be the ones to stop it.",
 "THE PAST... Caught behind the lines of Hitler’s Final Solution, Saul Laski is one of the multitudes destined to die in the notorious Chelmno extermination camp. Until he rises to meet his fate and finds himself face to face with an evil far older, and far greater, than the Nazi’s themselves...THE PRESENT... Compelled by the encounter to survive at all costs, so begins a journey that for Saul will span decades and cross continents, plunging into the darkest corners of 20th century history to reveal a secret society of beings who may often exist behind the world's most horrible and violent events. Killing from a distance, and by darkly manipulative proxy, they are people with the psychic ability to 'use' humans: read their minds, subjugate them to their wills, experience through their senses, feed off their emotions, force them to acts of unspeakable aggression. Each year, three of the most powerful of this hidden order meet to discuss their ongoing campaign of induced bloodshed and deliberate destruction. But this reunion, something will go terribly wrong. Saul’s quest is about to reach its elusive object, drawing hunter and hunted alike into a struggle that will plumb the depths of mankind’s attraction to violence, and determine the future of the world itself...",
 'The time of reckoning has arrived. As a final genocidal Crusade threatens to enslave humanity forever, a new messiah has come of age. She is Aenea and she has undergone a strange apprenticeship to those known as the Others. Now her protector, Raul Endymion, one-time shepherd and convicted murderer, must help her deliver her startling message to her growing army of disciples. But first they must embark on a final spectacular mission to discover the underlying meaning of the universe itself. They have been followed on their journey by the mysterious Shrike--monster, angel, killing machine--who is about to reveal the long-held secret of its origin and purpose. And on the planet of Hyperion, where the story first began, the final revelation will be delivered--an apocalyptic message that unlocks the secrets of existence and the fate of humankind in the galaxy.',
 ...]

3. genre column¶

In [27]:
print(unique_values('genre'))
["['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Childrens', 'Audiobook', 'Adventure']", "['Young Adult', 'Fiction', 'Magic', 'Childrens', 'Audiobook', 'Adventure', 'Middle Grade']", "['Fantasy', 'Fiction', 'Young Adult', 'Magic', 'Childrens', 'Middle Grade', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Childrens', 'Audiobook', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Adventure', 'Supernatural', 'Childrens']", "['Fantasy', 'Fiction', 'Young Adult', 'Magic', 'Childrens', 'Classics', 'Adventure']", "['Science Fiction', 'Fiction', 'Humor', 'Fantasy', 'Comedy', 'Audiobook', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Humor', 'Fantasy', 'Classics', 'Comedy', 'Science Fiction Fantasy']", "['Nonfiction', 'Science', 'History', 'Audiobook', 'Humor', 'Physics', 'Historical']", "['Travel', 'Nonfiction', 'Humor', 'Australia', 'Memoir', 'Audiobook', 'History']", "['Nonfiction', 'Travel', 'Humor', 'Memoir', 'Essays', 'Biography', 'Audiobook']", "['Travel', 'Nonfiction', 'Humor', 'Memoir', 'Audiobook', 'American', 'Biography']", "['Travel', 'Nonfiction', 'Humor', 'Memoir', 'Biography', 'Audiobook', 'Travelogue']", "['Travel', 'Nonfiction', 'Humor', 'Memoir', 'British Literature', 'Biography', 'Audiobook']", "['Nonfiction', 'History', 'Language', 'Linguistics', 'Humor', 'Audiobook', 'Writing']", "['Fantasy', 'Fiction', 'Classics', 'Adventure', 'Science Fiction Fantasy', 'Epic Fantasy', 'High Fantasy']", "['Fantasy', 'Classics', 'Fiction', 'Adventure', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy']", "['Fantasy', 'Classics', 'Fiction', 'Adventure', 'High Fantasy', 'Science Fiction Fantasy', 'Epic Fantasy']", "['Fiction', 'Young Adult', 'Classics', 'Adventure', 'Middle Grade', 'Survival', 'Childrens']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Fairies', 'Middle Grade', 'Childrens']", "['Fiction', 'Young Adult', 'Fantasy', 'Childrens', 'Middle Grade', 'Juvenile', 'Coming Of Age']", "['Fiction', 'Historical Fiction', 'African American', 'Historical', 'Literary Fiction', 'Literature', 'Novels']", "['Nonfiction', 'Travel', 'Nature', 'History', 'Science', 'Adventure', 'Environment']", "['Classics', 'Fiction', 'Childrens', 'Young Adult', 'Historical Fiction', 'Middle Grade', 'Historical']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Classics', 'Space Opera', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Africa', 'Classics', 'South Africa', 'Coming Of Age', 'Historical']", "['Science', 'Physics', 'Nonfiction', 'Astronomy', 'History', 'Biography', 'Space']", "['Fiction', 'Novels', 'Contemporary', 'Literary Fiction', 'College', 'Coming Of Age', 'Literature']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Banned Books', 'American', 'Erotica']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Erotica', 'The United States Of America']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Erotica', '20th Century']", "['Fiction', 'Travel', 'Literature', 'Essays', 'Classics', 'Novels', 'The United States Of America']", "['Fiction', 'Classics', 'Literature', '19th Century', 'Historical Fiction', 'Romance', 'Novels']", "['Fiction', 'Classics', 'France', 'Romance', 'French Literature', 'Historical Fiction', 'Literature']", "['Classics', 'Poetry', 'Fiction', 'Romance', 'Novels', 'Philosophy', 'Literature']", "['Classics', 'Fiction', 'Adventure', 'Historical Fiction', 'Young Adult', 'Childrens', 'Pirates']", "['Classics', 'Fiction', '19th Century', 'Victorian', 'Historical Fiction', 'Literature', 'British Literature']", "['Fiction', 'Magical Realism', 'Literature', 'Fantasy', 'Novels', 'Historical Fiction', 'Spanish Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'Horror', 'Thriller', 'Mystery', 'Crime']", "['Science Fiction', 'Fiction', 'Time Travel', 'Science Fiction Fantasy', 'Fantasy', 'Classics', 'Adventure']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Fantasy', 'Novels', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Young Adult', 'Audiobook', 'Science Fiction Fantasy', 'Adventure', 'Space Opera']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Time Travel', 'Fantasy', 'Classics', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Humor', 'Religion', 'Speculative Fiction']", "['Fiction', 'Fantasy', 'Science Fiction', 'Humor', 'Mystery', 'Comedy', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Humor', 'Fantasy', 'Comedy', 'Short Stories', 'Essays']", "['Science Fiction', 'Fiction', 'Fantasy', 'Humor', 'Mystery', 'Comedy', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Classics', 'Childrens', 'Young Adult', 'Middle Grade', 'Adventure']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'American', 'Literary Fiction', 'Politics']", "['Fiction', 'Novels', 'American', 'Literature', 'Contemporary', 'Literary Fiction', '20th Century']", "['Fiction', 'Novels', 'American', 'Literature', 'Greece', 'Mystery', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Literature', 'Novels', 'Steampunk', 'Science Fiction', 'American']", "['Fiction', 'Historical Fiction', 'Literature', 'Novels', 'American', 'Classics', 'Literary Fiction']", "['Fiction', 'Classics', 'Science Fiction', 'Literature', 'Historical Fiction', 'Novels', 'American']", "['Nonfiction', 'Essays', 'Memoir', 'Classics', 'History', 'Journalism', 'Biography']", "['Fiction', 'Literary Fiction', 'Novels', 'Contemporary', 'Politics', 'Literature', 'American']", "['Nonfiction', 'Essays', 'Memoir', 'Classics', 'History', 'Short Stories', 'Journalism']", "['Fiction', 'Politics', 'Historical Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary']", "['Fiction', 'Classics', 'Literary Fiction', 'Contemporary', 'Feminism', 'Novels', 'Literature']", "['Fiction', 'Mystery', 'American', 'Novels', 'Literature', 'Contemporary', 'New York']", "['Fiction', 'Contemporary', 'New York', 'American', 'Novels', 'Literature', 'The United States Of America']", "['Fiction', 'American', 'Contemporary', 'Novels', 'The United States Of America', 'Literature', 'Classics']", "['Fiction', 'Dogs', 'Animals', 'Novels', 'American', 'Contemporary', 'Literature']", "['Fiction', 'Novels', 'American', 'Mystery', 'Literature', 'Contemporary', 'Literary Fiction']", "['Fiction', 'Novels', 'American', 'Literature', 'The United States Of America', 'Contemporary', 'Literary Fiction']", "['History', 'Nonfiction', 'Science', 'Anthropology', 'Sociology', 'Politics', 'Environment']", "['Nonfiction', 'Sociology', 'Politics', 'History', 'Psychology', 'Social Science', 'Cultural']", "['Biography', 'Science', 'Nonfiction', 'History', 'Autobiography', 'Physics', 'Memoir']", "['Nonfiction', 'Music', 'Memoir', 'Humor', 'Pop Culture', 'Essays', 'Travel']", "['Nonfiction', 'Essays', 'Humor', 'Pop Culture', 'Music', 'Cultural', 'Memoir']", "['Philosophy', 'Fiction', 'Classics', 'Spirituality', 'Travel', 'Psychology', 'Self Help']", "['Nonfiction', 'Politics', 'Economics', 'Business', 'Sociology', 'History', 'Society']", "['Classics', 'Fiction', 'Historical Fiction', 'Russia', 'Russian Literature', 'Literature', 'War']", "['Philosophy', 'Nonfiction', 'Classics', 'Theology', 'Christianity', 'Russia', 'Spirituality']", "['Fiction', 'Classics', 'Philosophy', 'Politics', 'Literature', 'Science Fiction', 'Novels']", "['Philosophy', 'Nonfiction', 'Politics', 'Psychology', 'Classics', 'Essays', 'Economics']", "['Fiction', 'Classics', 'Dystopia', 'Philosophy', 'Science Fiction', 'School', 'Literature']", "['Fiction', 'Classics', 'Philosophy', 'Historical Fiction', 'Literature', 'Politics', 'Russia']", "['Poetry', 'Nonfiction', 'American', 'Adult', 'Contemporary', 'Literature', 'Humor']", "['Health', 'Nonfiction', 'Self Help', 'Reference', 'Food', 'Nutrition', 'Medical']", "['Health', 'Nonfiction', 'Medical', 'Self Help', 'Reference', 'Nutrition', 'Alternative Medicine']", "['Fiction', 'Sports', 'Baseball', 'Classics', 'Literature', 'Novels', 'Literary Fiction']", "['Fiction', 'Adoption', 'Contemporary', 'Family', 'Literary Fiction', 'Novels', 'Adult Fiction']", "['Fiction', 'Historical Fiction', 'Alternate History', 'Literature', 'Science Fiction', 'American', 'Novels']", "['Humor', 'Nonfiction', 'Politics', 'Comedy', 'History', 'Audiobook', 'American History']", "['Humor', 'Nonfiction', 'Comedy', 'Essays', 'Short Stories', 'Politics', 'History']", "['Short Stories', 'Fiction', 'Magical Realism', 'Classics', 'Literature', 'Latin American', 'Literary Fiction']", "['Classics', 'Literature', 'Romance', 'Magical Realism', 'Novels', 'Latin American', 'Spanish Literature']", "['Sports', 'Baseball', 'Nonfiction', 'Biography', 'History', 'Memoir', 'Journalism']", "['Fiction', 'Science Fiction', 'Historical Fiction', 'Cyberpunk', 'Thriller', 'Historical', 'War']", "['Fiction', 'Historical Fiction', 'Science Fiction', 'Fantasy', 'Historical', 'Adventure', 'Literature']", "['Fiction', 'Historical Fiction', 'Science Fiction', 'Fantasy', 'Historical', 'Science Fiction Fantasy', 'Alternate History']", "['Fiction', 'Science Fiction', 'Thriller', 'Mystery', 'Cyberpunk', 'Science Fiction Fantasy', 'Environment']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Steampunk', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Fantasy', 'Science Fiction Fantasy', 'Dystopia', 'Novels']", "['Design', 'Nonfiction', 'Business', 'Psychology', 'Science', 'Art', 'Engineering']", "['Fiction', 'Classics', 'Fantasy', 'Philosophy', 'Novels', 'Spirituality', 'Self Help']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Fiction', 'Science Fiction', 'Steampunk']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Fiction', 'Young Adult', 'Science Fiction']", "['Fiction', 'Classics', 'School', 'Historical Fiction', 'Literature', 'Read For School', 'Novels']", "['Mystery', 'Fiction', 'Young Adult', 'Middle Grade', 'Classics', 'Childrens', 'Mystery Thriller']", "['Fiction', 'Historical Fiction', 'Romance', 'Historical', 'Japan', 'Adult', 'Novels']", "['Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Suspense', 'Adventure', 'Crime']", "['Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Historical Fiction', 'Suspense', 'Adventure']", "['Fiction', 'Adventure', 'Science Fiction', 'Crime', 'Novels', 'Action', 'Contemporary']", "['Finance', 'Nonfiction', 'Business', 'Personal Finance', 'Money', 'Self Help', 'Economics']", "['Business', 'Nonfiction', 'Finance', 'Self Help', 'Money', 'Biography', 'Entrepreneurship']", "['Business', 'Biography', 'Nonfiction', 'Politics', 'Self Help', 'Finance', 'Autobiography']", "['Business', 'Nonfiction', 'Self Help', 'Finance', 'Biography', 'Money', 'Personal Development']", "['Business', 'Nonfiction', 'Self Help', 'Personal Development']", "['Finance', 'Business', 'Nonfiction', 'Self Help', 'Personal Finance', 'Money', 'Personal Development']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Japan', 'Mystery Thriller', 'Adventure']", "['Thriller', 'Fiction', 'Mystery', 'Espionage']", "['History', 'Nonfiction', 'American History', 'Historical', 'American Revolution', 'War', 'Audiobook']", "['Classics', 'Fiction', 'Historical Fiction', 'China', 'Literature', 'Historical', 'Asia']", "['Nonfiction', 'Food', 'Health', 'Sociology', 'Politics', 'History', 'Science']", "['Historical Fiction', 'Fiction', 'China', 'Historical', 'Book Club', 'Adult', 'Asian Literature']", "['Fiction', 'Thriller', 'Mystery', 'Legal Thriller', 'Crime', 'Suspense', 'Mystery Thriller']", "['History', 'Biography', 'Nonfiction', 'Politics', 'New York', 'Business', 'American History']", "['Nonfiction', 'Economics', 'Business', 'Science', 'Psychology', 'Sociology', 'Finance']", "['Fiction', 'Historical Fiction', 'Mystery', 'Fantasy', 'Books About Books', 'Historical', 'Spain']", "['Fiction', 'Contemporary', 'Psychology', 'Biography Memoir', 'Mental Health', 'Adult', 'Book Club']", "['Nonfiction', 'Self Help', 'Psychology', 'Relationships', 'Personal Development', 'Marriage', 'Philosophy']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Classics', 'Adventure', 'Prehistoric']", "['Nonfiction', 'Sports', 'Baseball', 'Business', 'Economics', 'Biography', 'History']", "['Nonfiction', 'Psychology', 'Self Help', 'Business', 'Philosophy', 'History', 'Personal Development']", "['Historical Fiction', 'Fiction', 'War', 'Military Fiction', 'Historical', 'Fantasy', 'Greece']", "['Nonfiction', 'Writing', 'Self Help', 'Art', 'Business', 'Personal Development', 'Psychology']", "['History', 'Nonfiction', 'Ancient History', 'Greece', 'Ancient', 'Classics', 'Philosophy']", "['Mythology', 'Literature', 'Historical Fiction', 'Greek Mythology', 'Epic', 'Historical', 'Ancient']", "['Classics', 'Fiction', 'Poetry', 'Mythology', 'Fantasy', 'Literature', 'Historical Fiction']", "['Classics', 'Fiction', 'Poetry', 'Mythology', 'Fantasy', 'School', 'Literature']", "['Classics', 'Plays', 'Fiction', 'School', 'Literature', 'Theatre', 'Read For School']", "['Plays', 'Classics', 'Humor', 'Drama', 'Fiction', 'Theatre', 'Comedy']", "['Fiction', 'Philosophy', 'Spirituality', 'Self Help', 'Inspirational', 'Novels', 'Literature']", "['Fiction', 'Novels', 'Philosophy', 'Contemporary', 'Romance', 'Spirituality', 'Literature']", "['Fiction', 'Romance', 'Philosophy', 'Novels', 'Spirituality', 'Contemporary', 'Literature']", "['Fiction', 'Historical Fiction', 'Philosophy', 'Novels', 'Spirituality', 'Religion', 'Inspirational']", "['Fiction', 'Romance', 'Novels', 'Contemporary', 'Philosophy', 'Literature', 'Adult']", "['Fiction', 'Contemporary', 'Philosophy', 'Novels', 'Psychology', 'Mental Health', 'Romance']", "['Plays', 'Classics', 'Drama', 'Mythology', 'Theatre', 'Fiction', 'Tragedy']", "['Plays', 'Fiction', 'Mythology', 'Poetry', 'Literature', 'Theatre', 'Classics']", "['Plays', 'Fiction', 'Mythology', 'School', 'Literature', 'Classics', 'Theatre']", "['Classics', 'Plays', 'Fiction', 'School', 'Mythology', 'Read For School', 'Theatre']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', 'Humor', 'Feminism']", "['Nonfiction', 'Classics', 'Memoir', 'Holocaust', 'Biography', 'School', 'Historical']", "['Fiction', 'Mystery', 'Young Adult', 'Classics', 'Autistic Spectrum Disorder', 'Novels', 'Contemporary']", "['Plays', 'Fiction', 'Fantasy', 'School', 'Romance', 'Poetry', 'Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Africa', 'Travel', 'History', 'Adventure']", "['Plays', 'Fiction', 'Classics', 'School', 'Romance', 'Theatre', 'Literature']", "['Fiction', 'Short Stories', 'LGBT', 'Romance', 'Queer', 'Gay', 'Westerns']", "['Nonfiction', 'Productivity', 'Business', 'Self Help', 'Personal Development', 'Management', 'Psychology']", "['Fiction', 'Classics', 'Spanish Literature', 'Latin American', 'Literature', 'Novels', 'Latin American Literature']", "['Classics', 'Poetry', 'Mythology', 'Fiction', 'Literature', 'Fantasy', 'Ancient']", "['History', 'Nonfiction', 'Science', 'Anthropology', 'Sociology', 'Politics', 'Economics']", "['Nonfiction', 'Biography', 'Adventure', 'Classics', 'Memoir', 'Nature', 'School']", "['Nonfiction', 'History', 'China', 'Biography', 'Memoir', 'Asia', 'Historical']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Crime', 'Audiobook']", "['Fiction', 'Classics', 'Adventure', 'Young Adult', 'Animals', 'Historical Fiction', 'Literature']", "['Nonfiction', 'Sociology', 'Politics', 'Economics', 'Memoir', 'Social Justice', 'Poverty']", "['Philosophy', 'Nonfiction', 'History', 'Theory', 'Sexuality', 'Sociology', 'Psychology']", "['Philosophy', 'Nonfiction', 'History', 'Sexuality', 'Theory', 'Sociology', 'Psychology']", "['Fiction', 'Historical Fiction', 'Historical', 'Literature', 'Audiobook', 'Novels', 'Historical Romance']", "['Nonfiction', 'Adventure', 'Memoir', 'Travel', 'Biography', 'History', 'Survival']", "['Nonfiction', 'History', 'Business', 'Economics', 'Politics', 'Technology', 'Sociology']", "['Fiction', 'Historical Fiction', 'Young Adult', 'Romance', 'Historical', 'Literature', 'Childrens']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Novels', 'School']", "['Classics', 'Fiction', 'Victorian', 'Literature', '19th Century', 'Historical Fiction', 'British Literature']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Space Opera', 'Audiobook']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Space Opera', 'Speculative Fiction', 'Audiobook']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'Detective', 'Classics', 'Hard Boiled']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'Classics', 'Detective', 'Mystery Thriller']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Noir', 'Detective', 'Mystery Thriller']", "['Philosophy', 'Nonfiction', 'Science', 'Atheism', 'Psychology', 'Evolution', 'Sociology']", "['Science', 'Philosophy', 'Nonfiction', 'Evolution', 'Biology', 'History', 'Psychology']", "['Philosophy', 'Nonfiction', 'Science', 'Evolution', 'Psychology', 'Biology', 'Neuroscience']", "['Philosophy', 'Nonfiction', 'Science', 'Psychology', 'Neuroscience', 'Essays', 'Artificial Intelligence']", "['Science', 'Nonfiction', 'Physics', 'History', 'Astronomy', 'Popular Science', 'Philosophy']", "['Science', 'Nonfiction', 'Physics', 'Astronomy', 'Popular Science', 'Space', 'Audiobook']", "['Fiction', 'Classics', 'Philosophy', 'Politics', 'Literature', 'Economics', 'Novels']", "['Fiction', 'Classics', 'Philosophy', 'Literature', 'Novels', 'Politics', 'Architecture']", "['Fiction', 'LGBT', 'Contemporary', 'Gay', 'Family', 'Literature', 'Literary Fiction']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Books About Books', 'Adult Fiction', 'Adult']", "['Fiction', 'Classics', 'Historical Fiction', 'Historical', 'Literature', 'Audiobook', '19th Century']", "['Nonfiction', 'Economics', 'Politics', 'History', 'Biography', 'Business', 'Memoir']", "['Classics', 'Fiction', 'Literature', 'Novels', 'School', 'American', 'Adventure']", "['Fiction', 'Classics', 'France', 'Literature', 'French Literature', 'Romance', '19th Century']", "['Classics', 'Fiction', 'France', 'French Literature', '19th Century', 'Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Contemporary', 'LGBT', 'Classics', 'Literary Fiction', 'Queer']", "['History', 'Nonfiction', 'Biography', 'Politics', 'American History', 'Civil War', 'Presidents']", "['History', 'Biography', 'Nonfiction', 'American History', 'Presidents', 'Politics', 'Historical']", "['Spirituality', 'Fiction', 'Philosophy', 'Self Help', 'Personal Development', 'Psychology', 'Inspirational']", "['Nonfiction', 'Sports', 'Memoir', 'Cycling', 'Autobiography', 'Biography', 'Biography Memoir']", "['History', 'Nonfiction', 'Presidents', 'Biography', 'American History', 'Politics', 'Biography Memoir']", "['Fiction', 'Classics', 'Southern Gothic', 'LGBT', 'Literature', 'Queer', 'Gothic']", "['Fiction', 'Historical Fiction', 'Africa', 'South Africa', 'Drama', 'Audiobook', 'Novels']", "['Fiction', 'Historical Fiction', 'Australia', 'Historical', 'Audiobook', 'Novels', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Australia', 'Historical', 'Drama', 'Romance', 'Adult']", "['Historical Fiction', 'Fiction', 'Australia', 'Historical', 'Audiobook', 'Drama', 'Adventure']", "['History', 'Nonfiction', 'American History', 'New York', 'Biography', 'Engineering', 'Historical']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'Detective']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Witches', 'Science Fiction Fantasy', 'Magic']", "['Science Fiction', 'Fiction', 'Classics', 'Time Travel', 'Fantasy', 'Dystopia', 'Literature']", "['Science Fiction', 'Fiction', 'Classics', 'Fantasy', 'Horror', 'Science Fiction Fantasy', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Mystery', 'Literature', 'Turkish', 'Novels', 'Turkish Literature']", "['Fiction', 'Dystopia', 'Science Fiction', 'Classics', 'Novels', 'Literature', 'Portugal']", "['Fiction', 'Portugal', 'Literature', 'Portuguese Literature', 'Novels', 'Nobel Prize', 'Magical Realism']", "['Fiction', 'Historical Fiction', 'Classics', 'Portugal', 'Portuguese Literature', 'Romance', 'Nobel Prize']", "['Fiction', 'Portugal', 'Literature', 'Novels', 'Portuguese Literature', 'Nobel Prize', 'Dystopia']", "['Fiction', 'Portugal', 'Magical Realism', 'Literature', 'Portuguese Literature', 'Nobel Prize', 'Novels']", "['Fiction', 'Portugal', 'Portuguese Literature', 'Classics', 'Historical Fiction', 'Literature', 'Nobel Prize']", "['Poetry', 'Philosophy', 'Fiction', 'Classics', 'Short Stories', 'Literature', 'Spirituality']", "['Poetry', 'Classics', 'Philosophy', 'Fiction', 'Spirituality', 'Religion', 'Literature']", "['Africa', 'Nonfiction', 'Nigeria', 'Memoir', 'African Literature', 'Nobel Prize', 'Autobiography']", "['Business', 'Nonfiction', 'Economics', 'Technology', 'Internet', 'Entrepreneurship', 'Management']", "['Nonfiction', 'Business', 'Psychology', 'Self Help', 'Sociology', 'Science', 'Economics']", "['Classics', 'Fiction', 'Literature', 'Historical Fiction', 'School', 'Novels', '19th Century']", "['Classics', 'Fiction', 'Historical Fiction', 'School', 'Literature', 'Young Adult', 'Historical']", "['Fiction', 'Classics', 'Literature', 'Novels', 'New York', 'Contemporary', 'Literary Fiction']", "['Classics', 'Fiction', 'Humor', 'Essays', 'Literature', 'Philosophy', '18th Century']", "['Classics', 'Fiction', 'Fantasy', 'Literature', 'Humor', 'Adventure', 'English Literature']", "['Classics', 'Fiction', 'Poetry', 'Literature', 'School', 'Short Stories', 'Historical Fiction']", "['Fiction', 'Historical Fiction', 'LGBT', 'Queer', 'France', 'Historical', 'Food']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Classics', 'Historical', 'Politics']", "['Fiction', 'Science Fiction', 'Alternate History', 'Historical Fiction', 'Fantasy', 'Historical', 'Speculative Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Psychology', 'Abuse', 'True Story']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Mythology', 'Audiobook', 'Science Fiction Fantasy', 'Humor']", "['Fiction', 'Humor', 'Contemporary', 'Canada', 'Novels', 'Literature', 'Technology']", "['Philosophy', 'Psychology', 'Nonfiction', 'Death', 'Self Help', 'Science', 'Sociology']", "['History', 'Nonfiction', 'Politics', 'American History', 'Historical', 'Social Justice', 'Classics']", "['Art', 'Nonfiction', 'Philosophy', 'Essays', 'Design', 'Art History', 'Photography']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Mystery', 'Literary Fiction']", "['Fiction', 'Young Adult', 'Classics', 'Fantasy', 'Childrens', 'Middle Grade', 'Realistic Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'Art', 'Romance', 'Adult']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Adult Fiction', 'Novels', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'France', 'Art', 'Mystery', 'Romance']", "['Manga', 'Fantasy', 'Graphic Novels', 'Fiction', 'Young Adult', 'Comics Manga', 'Action']", "['Fiction', 'Classics', 'German Literature', 'Novels', 'Short Stories', 'Germany', 'Literature']", "['Fiction', 'German Literature', 'Germany', 'Classics', 'Contemporary', 'Novels', 'Literature']", "['Nonfiction', 'Memoir', 'Adventure', 'Animals', 'Dogs', 'Sports', 'Biography']", "['Fiction', 'Classics', 'Adventure', 'Literature', 'Historical Fiction', 'Novels', '18th Century']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Young Adult', 'Adventure', 'School']", "['Classics', 'Fiction', 'Childrens', 'Young Adult', 'Historical Fiction', 'Middle Grade', 'Fantasy']", "['Economics', 'Nonfiction', 'Business', 'Politics', 'Finance', 'Philosophy', 'History']", "['Politics', 'Nonfiction', 'History', 'Economics', 'Sociology', 'Race', 'Philosophy']", "['Classics', 'Poetry', 'Fantasy', 'Fiction', 'Medieval', 'School', 'Mythology']", "['Fiction', 'Historical Fiction', 'Classics', 'Jewish', 'Russia', 'Literature', 'Novels']", "['Classics', 'Fiction', 'Italy', 'Historical Fiction', 'Romance', 'Audiobook', 'British Literature']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', 'Italy', 'Literature', 'British Literature']", "['Classics', 'Fiction', 'LGBT', 'Queer', 'Romance', 'Gay', 'Historical Fiction']", "['Nonfiction', 'Food', 'Science', 'Health', 'History', 'Nutrition', 'Environment']", "['Nonfiction', 'History', 'Humor', 'Travel', 'Essays', 'Audiobook', 'Memoir']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'Nobel Prize', 'Historical', 'Novels']", "['Historical Fiction', 'Fiction', 'Historical', 'Book Club', 'Adult', 'Adult Fiction', 'Audiobook']", "['Philosophy', 'Science', 'Nonfiction', 'Psychology', 'Neuroscience', 'Biology', 'College']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Spanish Literature', 'Magical Realism', 'Novels']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Magical Realism', 'Spanish Literature', 'Novels']", "['Fiction', 'Contemporary', 'Canada', 'Novels', 'Literature', 'Literary Fiction', 'Classics']", "['Fiction', 'Canada', 'Contemporary', 'Humor', 'Novels', 'Literary Fiction', 'Literature']", "['Fiction', 'Canada', 'Contemporary', 'Novels', 'Literary Fiction', 'Young Adult', 'Literature']", "['Fiction', 'Canada', 'Science Fiction', 'Contemporary', 'Novels', 'Dystopia', 'Fantasy']", "['Fiction', 'Historical Fiction', 'Romance', 'Classics', 'War', 'Greece', 'Historical']", "['Fiction', 'Magical Realism', 'Humor', 'Contemporary', 'Historical Fiction', 'Latin American', 'Literary Fiction']", "['Historical Fiction', 'Fiction', 'War', 'Historical', 'Literature', 'Novels', 'Contemporary']", "['Fiction', 'Magical Realism', 'Humor', 'Literature', 'Fantasy', 'Contemporary', 'Novels']", "['Fiction', 'Historical Fiction', 'Romance', 'Classics', 'Historical', 'Historical Romance', 'Novels']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Roman', 'Ancient History', 'Ancient']", "['Fiction', 'Contemporary', 'Inspirational', 'Fantasy', 'Classics', 'Spirituality', 'Adult']", "['Nonfiction', 'War', 'History', 'Memoir', 'Military Fiction', 'Biography', 'Biography Memoir']", "['Fiction', 'War', 'Historical Fiction', 'Classics', 'Literature', 'Novels', 'Historical']", "['Fiction', 'Mystery', 'Historical Fiction', 'War', 'Literature', 'Mystery Thriller', 'Novels']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Adult Fiction', 'Contemporary Romance']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Contemporary Romance', 'Mystery']", "['Nonfiction', 'Memoir', 'Biography', 'Travel', 'Romance', 'Biography Memoir', 'Autobiography']", "['Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Middle Grade', 'Post Apocalyptic']", "['Romance', 'Fiction', 'Contemporary', 'Young Adult', 'Chick Lit', 'Adult', 'Contemporary Romance']", "['Fiction', 'Historical Fiction', 'Adult Fiction', 'Coming Of Age', 'Contemporary', 'Novels', 'Chick Lit']", "['Fiction', 'Mystery', 'Contemporary', 'Literary Fiction', 'Novels', 'Young Adult', 'Coming Of Age']", "['Mystery', 'Fiction', 'Humor', 'Chick Lit', 'Romance', 'Crime', 'Comedy']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Middle Grade', 'Canada']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Romance', 'Historical', 'Canada']", "['Classics', 'Fiction', 'Young Adult', 'Childrens', 'Historical Fiction', 'Romance', 'Middle Grade']", "['Classics', 'Mystery', 'Fiction', 'Short Stories', 'Crime', 'Detective', 'Mystery Thriller']", "['Classics', 'Mystery', 'Fiction', 'Short Stories', 'Crime', 'Detective', 'Literature']", "['Mystery', 'Fiction', 'Short Stories', 'Crime', 'Classics', 'Detective', 'Mystery Thriller']", "['Young Adult', 'Fiction', 'Classics', 'Dystopia', 'Science Fiction', 'Fantasy', 'School']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'New York', 'Book Club', 'American']", "['Fiction', 'Ireland', 'Irish Literature', 'Literary Fiction', 'Literature', 'Contemporary', 'Novels']", "['Fiction', 'Ireland', 'Mystery', 'Irish Literature', 'Literature', 'Literary Fiction', 'Novels']", "['Classics', 'Fiction', 'Italy', 'British Literature', '20th Century', 'Historical Fiction', 'Novels']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Literature', 'British Literature', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Fiction', 'Historical', 'Paranormal', 'Romance']", "['Classics', 'Fiction', 'Childrens', 'Animals', 'Young Adult', 'Horses', 'Historical Fiction']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Audiobook', 'Writing', 'Autobiography']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Religion', 'Novels', 'British Literature']", "['Fiction', 'Classics', 'Africa', 'Literature', 'Novels', 'British Literature', 'Literary Fiction']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'Literature', 'Novels', 'Asia']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'Literature', 'Literary Fiction', 'Novels']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Literature', 'British Literature', 'Adult']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'British Literature', 'Literature', 'Historical Fiction']", "['Fiction', 'Childrens', 'Mystery', 'Young Adult', 'Middle Grade', 'Classics', 'Realistic Fiction']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Adventure', 'Classics', 'Audiobook']", "['Fiction', 'Thriller', 'Classics', 'Mystery', 'Espionage', 'Adventure', 'Crime']", "['Fiction', 'Thriller', 'Espionage', 'Adventure', 'Mystery', 'Classics', 'Crime']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Adventure', 'Classics', 'Crime']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Adventure', 'Classics', 'Mystery Thriller']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Literature', 'American', 'Family']", "['Mystery', 'Fiction', 'Crime', 'Detective', 'Mystery Thriller', 'British Literature', 'Thriller']", "['Mystery', 'Fiction', 'Crime', 'Detective', 'British Literature', 'Mystery Thriller', 'Audiobook']", "['Classics', 'Fiction', 'Literature', 'Spanish Literature', 'Adventure', 'Historical Fiction', 'Novels']", "['Fiction', 'India', 'Historical Fiction', 'Literary Fiction', 'Literature', 'Indian Literature', 'Historical']", "['Travel', 'Nonfiction', 'India', 'Memoir', 'Biography', 'Religion', 'Asia']", "['Fiction', 'Historical Fiction', 'Romance', 'Contemporary', 'Literary Fiction', 'Novels', 'Book Club']", "['Science', 'Nonfiction', 'Physics', 'History', 'Classics', 'Philosophy', 'Astronomy']", "['History', 'Nonfiction', 'Food', 'Audiobook', 'Historical', 'Food and Drink', 'School']", "['Religion', 'History', 'Nonfiction', 'Philosophy', 'Spirituality', 'Islam', 'Theology']", "['Classics', 'Fiction', 'Literature', 'Novels', 'Historical Fiction', 'American', 'Spain']", "['Science Fiction', 'Fiction', 'Fantasy', 'Mythology', 'Science Fiction Fantasy', 'Space Opera', 'Speculative Fiction']", "['Science Fiction', 'Fantasy', 'Fiction', 'Mythology', 'Science Fiction Fantasy', 'Space Opera', 'Historical Fiction']", "['Horror', 'Historical Fiction', 'Fiction', 'Fantasy', 'Thriller', 'Historical', 'Adventure']", "['Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Audiobook', 'Time Travel']", "['Horror', 'Fantasy', 'Fiction', 'Thriller', 'India', 'Mystery', 'Science Fiction']", "['Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Mystery', 'Classics', 'Realistic Fiction']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Historical', 'Literary Fiction', 'Contemporary']", "['Fiction', 'Philosophy', 'Spirituality', 'Travel', 'Novels', 'Inspirational', 'Religion']", "['Fiction', 'Philosophy', 'Novels', 'Fantasy', 'Spirituality', 'Magical Realism', 'Literature']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'American', '20th Century', 'Literary Fiction']", "['Fiction', 'Horror', 'Thriller', 'Mystery', 'Contemporary', 'Novels', 'American']", "['Spirituality', 'Nonfiction', 'Philosophy', 'Religion', 'Self Help', 'Psychology', 'Death']", "['Fiction', 'Mystery', 'Thriller', 'Legal Thriller', 'Crime', 'Mystery Thriller', 'Suspense']", "['Politics', 'Nonfiction', 'Humor', 'Cultural', 'Audiobook', 'Religion', 'Political Science']", "['Young Adult', 'Fiction', 'Religion', 'Realistic Fiction', 'Teen', 'Contemporary', 'Humor']", "['Nonfiction', 'Psychology', 'Philosophy', 'Self Help', 'Memoir', 'Biography', 'Classics']", "['Humor', 'Nonfiction', 'Cookbooks', 'Food', 'Cooking', 'Comedy', 'Memoir']", "['Humor', 'Nonfiction', 'Short Stories', 'Memoir', 'Essays', 'Christmas', 'Audiobook']", "['Nonfiction', 'Memoir', 'Essays', 'Short Stories', 'Comedy', 'Humor', 'Biography']", "['Humor', 'Nonfiction', 'Memoir', 'Essays', 'Short Stories', 'Comedy', 'Biography']", "['Humor', 'Nonfiction', 'Audiobook', 'Memoir', 'Comedy', 'Short Stories', 'Essays']", "['Humor', 'Nonfiction', 'Essays', 'Short Stories', 'Memoir', 'Comedy', 'Audiobook']", "['Fiction', 'Crime', 'Noir', 'Historical Fiction', 'Mystery', 'Thriller', 'Novels']", "['Fiction', 'Fantasy', 'Classics', 'Adventure', 'Magical Realism', 'Novels', 'Literature']", "['Fiction', 'Contemporary', 'Humor', 'Novels', 'British Literature', 'Literature', 'Comedy']", "['Fiction', 'Contemporary', 'Humor', 'Novels', 'British Literature', 'Comedy', 'Adult']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Chick Lit', 'Abuse']", "['Nonfiction', 'History', 'War', 'Memoir', 'Journalism', 'Military Fiction', 'Military History']", "['Nonfiction', 'Travel', 'History', 'Indian Literature', 'Asia', 'Cities', 'Memoir']", "['Nonfiction', 'History', 'Memoir', 'Biography', 'Asia', 'War', 'Biography Memoir']", "['Fiction', 'Science Fiction', 'Dystopia', 'Classics', 'School', 'Literature', 'Novels']", "['Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Literature', 'Spanish Literature', 'Latin American']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Novels', 'School', 'American']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'American', 'Literary Fiction']", "['Fantasy', 'Fiction', 'Mythology', 'Urban Fantasy', 'Audiobook', 'Science Fiction', 'Science Fiction Fantasy']", "['Fiction', 'Classics', 'Contemporary', 'Literature', 'Literary Fiction', 'Novels', 'Historical Fiction']", "['Fiction', 'Mystery', 'Fantasy', 'Young Adult', 'Horror', 'Gothic', 'Historical Fiction']", "['Chick Lit', 'Fiction', 'Romance', 'Humor', 'Mystery', 'Contemporary', 'British Literature']", "['Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Realistic Fiction', 'School', 'Juvenile']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Adult', 'Adult Fiction']", "['Science', 'Nonfiction', 'Biology', 'Genetics', 'Evolution', 'Popular Science', 'History']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Magic', 'Fantasy', 'Novels']", "['Fiction', 'Humor', 'Academia', 'Contemporary', 'Literary Fiction', 'Novels', 'Literature']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'American', 'Literary Fiction', '20th Century']", "['Fiction', 'Classics', 'Literature', 'American', 'Novels', '20th Century', 'Literary Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'France', 'Classics', 'Travel', 'Literature']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Adventure', 'Literary Fiction']", "['Classics', 'Fiction', 'Spain', 'Literature', 'Travel', 'Sports', 'American']", "['Fiction', 'Contemporary', 'Literature', 'Literary Fiction', 'Novels', 'American', 'Roman']", "['Fiction', 'Literature', 'Literary Fiction', 'Contemporary', 'American', 'Novels', 'The United States Of America']", "['Fiction', 'Contemporary', 'Literature', 'Novels', 'Literary Fiction', 'American', 'Adult']", "['Classics', 'Fiction', 'School', 'Historical Fiction', 'Romance', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Literary Fiction', 'Contemporary', 'Novels']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'Adventure', 'Medicine', 'Classics']", "['Fiction', 'Contemporary', 'Humor', 'British Literature', 'Literature', 'Novels', 'Family']", "['Classics', 'Fiction', 'Literature', 'American', 'Novels', 'Romance', '20th Century']", "['Fiction', 'Classics', 'Literature', 'American', 'Novels', 'Literary Fiction', '20th Century']", "['Fiction', 'Classics', 'Literature', 'Historical Fiction', 'American', 'Novels', 'Literary Fiction']", "['History', 'Nonfiction', 'Science', 'Biography', 'Historical', 'Geography', 'History Of Science']", "['History', 'Nonfiction', 'American History', 'Historical', 'Audiobook', 'American', 'War']", "['Fiction', 'India', 'Magical Realism', 'Historical Fiction', 'Literature', 'Contemporary', 'Literary Fiction']", "['Fiction', 'India', 'Magical Realism', 'Literature', 'Historical Fiction', 'Novels', 'Pakistan']", "['Fantasy', 'Fiction', 'Magical Realism', 'Young Adult', 'Childrens', 'India', 'Literature']", "['Fiction', 'Literature', 'India', 'Contemporary', 'Literary Fiction', 'Magical Realism', 'Novels']", "['Self Help', 'Nonfiction', 'Business', 'Psychology', 'Personal Development', 'Leadership', 'Communication']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Business', 'Philosophy', 'Audiobook']", "['Nonfiction', 'Self Help', 'Business', 'Psychology', 'Leadership', 'Personal Development', 'Management']", "['Business', 'Nonfiction', 'Entrepreneurship', 'Management', 'Buisness', 'Leadership', 'Economics']", "['Fiction', 'Classics', 'Literature', 'Historical Fiction', 'Africa', 'School', 'Novels']", "['Nonfiction', 'Memoir', 'Biography', 'Education', 'Autobiography', 'Teaching', 'Biography Memoir']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Ireland', 'Biography Memoir', 'Irish Literature']", "['Classics', 'Fiction', 'Humor', 'Travel', 'Comedy', 'British Literature', '19th Century']", "['Fiction', 'Magical Realism', 'Fantasy', 'Japanese Literature', 'Novels', 'Literature', 'Classics']", "['Fiction', 'Russia', 'Russian Literature', 'Classics', 'Literature', 'Philosophy', 'Novels']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Classics', 'Food', 'Counting']", "['Fiction', 'Historical Fiction', 'War', 'Sudan', 'Contemporary', 'Novels', 'Literature']", "['Fiction', 'Contemporary', 'Literature', 'Humor', 'Biography Memoir', 'Novels', 'American']", "['Fiction', 'Novels', 'Travel', 'Contemporary', 'Literature', 'Literary Fiction', 'American']", "['Short Stories', 'Fiction', 'Literature', 'Contemporary', 'American', 'Literary Fiction', 'Collections']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Book Club', 'Audiobook', 'Adult']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Westerns', 'Audiobook', 'Adventure']", "['Nonfiction', 'Essays', 'Memoir', 'Humor', 'Classics', 'Biography', 'Politics']", "['Fiction', 'Classics', 'Science Fiction', 'Humor', 'Literature', 'Novels', 'American']", "['Fiction', 'Science Fiction', 'Classics', 'Historical Fiction', 'War', 'Literature', 'Novels']", "['Fiction', 'Science Fiction', 'Classics', 'Humor', 'Fantasy', 'Literature', 'Novels']", "['Fiction', 'Short Stories', 'Science Fiction', 'Classics', 'Humor', 'Literature', 'American']", "['Fiction', 'Classics', 'Humor', 'Literature', 'Science Fiction', 'Novels', 'American']", "['Historical Fiction', 'Fiction', 'Historical', 'Book Club', 'Feminism', 'Adult', 'Womens']", "['Fiction']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'British Literature', 'Literature', 'Adult Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Magic', 'Epic']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Classics', 'Medieval', 'Audiobook']", "['Fiction', 'Thriller', 'Historical Fiction', 'Mystery', 'Suspense', 'Espionage', 'Mystery Thriller']", "['Fiction', 'Historical Fiction', 'Thriller', 'Mystery', 'Suspense', 'Historical', 'Espionage']", "['Historical Fiction', 'Fiction', 'Thriller', 'Historical', 'War', 'World War II', 'Espionage']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'Audiobook', 'British Literature', 'Novels']", "['Fiction', 'Literary Fiction', 'British Literature', 'Literature', 'Contemporary', 'Novels', '20th Century']", "['Nonfiction', 'Memoir', 'Food', 'Biography', 'France', 'Travel', 'Cooking']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Adventure', 'Westerns', 'Audiobook']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Epic Fantasy', 'Thriller', 'Westerns']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Adventure', 'Audiobook', 'Westerns']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Westerns', 'Adventure', 'Audiobook']", "['Classics', 'Fiction', 'Young Adult', 'Literature', 'School', 'Coming Of Age', 'Novels']", "['Fiction', 'Short Stories', 'Literature', 'Classics', 'American', 'Novels', 'Literary Fiction']", "['Fiction', 'Classics', 'Short Stories', 'Literature', 'American', 'Novels', 'Literary Fiction']", "['Philosophy', 'Nonfiction', 'Psychology', 'Classics', 'Essays', 'Spirituality', 'Science']", "['Classics', 'Fiction', 'Science Fiction', 'Dystopia', 'Literature', 'Novels', 'School']", "['Fiction', 'Classics', 'Science Fiction', 'Philosophy', 'Dystopia', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Literature', 'Philosophy', 'Novels', 'British Literature', '20th Century']", "['Chick Lit', 'Fiction', 'Contemporary', 'Romance', 'Adult', 'Humor', 'Adult Fiction']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'School', 'Coming Of Age', 'High School']", "['Fiction', 'Contemporary', 'Adult Fiction', 'Chick Lit', 'Abuse', 'Novels', 'Drama']", "['Fiction', 'Romance', 'Magical Realism', 'Contemporary', 'Chick Lit', 'Adult Fiction', 'Adult']", "['Fiction', 'Mystery', 'Contemporary', 'Chick Lit', 'Adult Fiction', 'Drama', 'Adult']", "['Fiction', 'Contemporary', 'Book Club', 'Adult Fiction', 'Mystery', 'Adult', 'Historical Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'African American', 'Southern', 'Book Club', 'Adult']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult Fiction', 'Adult', 'Drama']", "['Fiction', 'Historical Fiction', 'Mystery', 'Contemporary', 'Adult Fiction', 'Adult', 'Historical']", "['Fiction', 'Historical Fiction', 'Canada', 'Historical', 'Literary Fiction', 'Novels', 'Canadian Literature']", "['Fiction', 'Chick Lit', 'Contemporary', 'Mystery', 'Novels', 'Adult Fiction', 'Book Club']", "['Fiction', 'Religion', 'Historical Fiction', 'Contemporary', 'Adult Fiction', 'Coming Of Age', 'Novels']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Contemporary', 'Novels', 'African American', 'Literature']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Adult Fiction', 'Literary Fiction', 'Novels', 'Adult']", "['Fiction', 'Chick Lit', 'Contemporary', 'Romance', 'Adult Fiction', 'Adult', 'Womens Fiction']", "['Fiction', 'Chick Lit', 'Mystery', 'Contemporary', 'Romance', 'Adult Fiction', 'Adult']", "['Fiction', 'Chick Lit', 'Romance', 'Ireland', 'Contemporary', 'Irish Literature', 'Adult Fiction']", "['Fiction', 'Historical Fiction', 'Classics', 'African American', 'School', 'Literature', 'Historical']", "['Fiction', 'Classics', 'Historical Fiction', 'African American', 'Literary Fiction', 'Literature', 'Novels']", "['Fiction', 'Contemporary', 'Chick Lit', 'Coming Of Age', 'Adult Fiction', 'Novels', 'Adult']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Classics', 'Novels', 'Family', 'Adult Fiction']", "['Fiction', 'Historical Fiction', 'India', 'Indian Literature', 'Literary Fiction', 'Historical', 'Canada']", "['Biography', 'History', 'Politics', 'Nonfiction', 'Presidents', 'American History', 'Biography Memoir']", "['Classics', 'Fiction', 'Romance', 'Literature', 'School', 'Historical Fiction', 'American']", "['Classics', 'Fiction', 'Poetry', 'Plays', 'Short Stories', 'Literature', 'Drama']", "['Classics', 'Plays', 'Fiction', 'Drama', 'Humor', 'Theatre', '19th Century']", "['Classics', 'Fiction', 'Horror', 'Fantasy', 'Gothic', 'Literature', 'Novels']", "['Nonfiction', 'Travel', 'Classics', 'Memoir', 'Biography', 'Literature', 'Biography Memoir']", "['Classics', 'Fiction', 'Literature', 'School', 'Historical Fiction', 'American', 'Novels']", "['Comics', 'Graphic Novels', 'Fiction', 'Adventure', 'Graphic Novels Comics', 'Comic Book', 'Humor']", "['Fiction', 'Christmas', 'Classics', 'Fantasy', 'Audiobook', 'Literature', 'Historical Fiction']", "['Classics', 'Fiction', 'Literature', '19th Century', 'Victorian', 'Novels', 'Historical Fiction']", "['Nonfiction', 'True Crime', 'Crime', 'Mystery', 'Thriller', 'History', 'Law']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Legal Thriller', 'Suspense', 'Mystery Thriller']", "['Fiction', 'Sports', 'Football', 'Mystery', 'Thriller', 'Contemporary', 'Novels']", "['Fiction', 'Thriller', 'Mystery', 'Legal Thriller', 'Suspense', 'Crime', 'Mystery Thriller']", "['Fiction', 'Mystery', 'Thriller', 'Legal Thriller', 'Suspense', 'Crime', 'Mystery Thriller']", "['Fiction', 'Christmas', 'Humor', 'Holiday', 'Contemporary', 'Audiobook', 'Adult']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Suspense', 'Legal Thriller', 'Mystery Thriller']", "['Fiction', 'Mystery', 'Historical Fiction', 'Thriller', 'Suspense', 'Novels', 'Historical']", "['Historical Fiction', 'Romance', 'Fantasy', 'Fiction', 'Time Travel', 'Historical', 'Historical Romance']", "['Fantasy', 'Fiction', 'Science Fiction', 'Science Fiction Fantasy', 'Epic Fantasy', 'High Fantasy', 'Classics']", "['Historical Fiction', 'Fiction', 'Romance', 'Classics', 'Historical', 'Historical Romance', 'British Literature']", "['Thriller', 'Fiction', 'Mystery', 'Historical Fiction', 'Adventure', 'Mystery Thriller', 'Suspense']", "['History', 'Nonfiction', 'Military Fiction', 'World War II', 'War', 'Military History', 'Naval History']", "['Horror', 'Fiction', 'Vampires', 'Fantasy', 'Thriller', 'Paranormal', 'Supernatural']", "['Short Stories', 'Fiction', 'India', 'Contemporary', 'Literary Fiction', 'Literature', 'Indian Literature']", "['Young Adult', 'Fiction', 'Chick Lit', 'Contemporary', 'Romance', 'Teen', 'Realistic Fiction']", "['Classics', 'Fiction', 'Science Fiction', 'Dystopia', 'Literature', 'Politics', 'Novels']", "['Classics', 'Fiction', 'Dystopia', 'Literature', 'Science Fiction', 'Politics', 'Fantasy']", "['Fiction', 'Science Fiction', 'Dystopia', 'Classics', 'Literature', 'Novels', 'Fantasy']", "['Biography', 'History', 'Business', 'Nonfiction', 'American History', 'Biography Memoir', 'Economics']", "['Fiction', 'Historical Fiction', 'Classics', 'Egypt', 'Africa', 'Literature', 'Novels']", "['Nonfiction', 'History', 'Biography', 'Holocaust', 'Classics', 'World War II', 'Historical']", "['Plays', 'Classics', 'Fiction', 'School', 'Drama', 'Read For School', 'Historical Fiction']", "['Plays', 'Classics', 'Drama', 'Theatre', 'School', 'Fiction', 'American']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Young Adult', 'Contemporary Romance']", "['Fiction', 'Classics', 'Historical Fiction', 'Politics', 'Literature', 'Novels', 'Literary Fiction']", "['Science', 'Physics', 'Nonfiction', 'Textbooks', 'Reference', 'Mathematics', 'Technical']", "['Physics', 'Nonfiction', 'Popular Science', 'Science', 'Quantum Mechanics', 'Mathematics', 'Philosophy']", "['Science', 'Physics', 'Nonfiction', 'Popular Science', 'Essays', 'Mathematics', 'Education']", "['History', 'American History', 'American Revolution', 'Nonfiction', 'Politics', 'American', 'Law']", "['Classics', 'Fiction', 'Childrens', 'Fantasy', 'Animals', 'Young Adult', 'Middle Grade']", "['Short Stories', 'Classics', 'Fiction', 'Russia', 'Russian Literature', 'Literature', '19th Century']", "['Fiction', 'Russia', 'Russian Literature', 'Literature', 'Philosophy', 'Classics', 'Novels']", "['Fiction', 'Classics', 'Russia', 'Short Stories', 'Russian Literature', 'Literature', 'Novels']", "['Historical Fiction', 'Fiction', 'China', 'Historical', 'Asia', 'Asian Literature', 'Classics']", "['Fiction', 'Thriller', 'Military Fiction', 'Action', 'Espionage', 'Adventure', 'Suspense']", "['Psychology', 'Science', 'Nonfiction', 'Philosophy', 'Sociology', 'Biology', 'Politics']", "['Nonfiction', 'Science', 'Psychology', 'Linguistics', 'Language', 'Philosophy', 'Neuroscience']", "['Fiction', 'Classics', 'Thriller', 'Novels', 'Mystery', 'Literature', 'Adult']", "['Short Stories', 'Fiction', 'Classics', 'Fantasy', 'Magical Realism', 'Literature', 'Spanish Literature']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', '19th Century', 'Romance', 'British Literature']", "['Graphic Novels', 'Comics', 'Fiction', 'Dystopia', 'Science Fiction', 'Graphic Novels Comics', 'Classics']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Contemporary', 'Literary Fiction']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Book Club', 'Historical Fiction', 'Music', 'Novels']", "['Fiction', 'Africa', 'Classics', 'Literature', 'Historical Fiction', 'Novels', 'Nobel Prize']", "['Fiction', 'Classics', 'Literature', 'India', 'Nobel Prize', 'Novels', 'Literary Fiction']", "['Fiction', 'India', 'Literature', 'Historical Fiction', 'Africa', 'Nobel Prize', 'Contemporary']", "['Historical Fiction', 'Fiction', 'War', 'Historical', 'World War I', 'British Literature', 'Literary Fiction']", "['Historical Fiction', 'Fiction', 'War', 'Historical', 'World War I', 'Literature', 'Novels']", "['Classics', 'Mystery', 'Gothic', 'Horror', '19th Century', 'Victorian', 'Historical Fiction']", "['Fantasy', 'Classics', 'Fiction', 'Adventure', 'Young Adult', 'High Fantasy', 'Science Fiction Fantasy']", "['Poetry', 'Classics', 'Romance', 'Spanish Literature', 'Fiction', 'Literature', 'Latin American']", "['Poetry', 'Classics', 'Romance', 'Fiction', 'Literature', 'Spanish Literature', 'Nobel Prize']", "['Fiction', 'Historical Fiction', 'Canada', 'Literary Fiction', 'Asia', 'Literature', 'Contemporary']", "['Fiction', 'Canada', 'Historical Fiction', 'Literary Fiction', 'Canadian Literature', 'Historical', 'Literature']", "['Fiction', 'Classics', 'Philosophy', 'German Literature', 'Literature', 'Novels', 'Germany']", "['Fiction', 'Classics', 'War', 'Historical Fiction', 'German Literature', 'Germany', 'World War I']", "['History', 'Nonfiction', 'Ancient History', 'Medieval', 'Medieval History', 'European History', 'Classics']", "['History', 'Nonfiction', 'Medieval', 'Medieval History', 'European History', 'Greece', 'Ancient History']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Victorian', '19th Century', 'Historical Fiction']", "['Fiction', 'Classics', 'Historical Fiction', 'Magical Realism', 'Literature', 'Historical', 'School']", "['Fiction', 'Classics', 'Historical Fiction', 'South Africa', 'Literature', 'School', 'Novels']", "['Fiction', 'Magical Realism', 'Music', 'Novels', 'Literature', 'Contemporary', 'Literary Fiction']", "['Fiction', 'Westerns', 'Literature', 'Classics', 'Novels', 'Historical Fiction', 'American']", "['Nonfiction', 'History', 'Holocaust', 'Memoir', 'Biography', 'World War II', 'War']", "['History', 'Nonfiction', 'Holocaust', 'Memoir', 'Philosophy', 'War', 'Biography']", "['Nonfiction', 'History', 'Holocaust', 'Biography', 'Memoir', 'Classics', 'War']", "['Classics', 'Fiction', 'Romance', 'Gothic', 'Historical Fiction', 'Literature', 'Historical']", "['Fiction', 'Africa', 'South Africa', 'Classics', 'Literature', 'Novels', 'Contemporary']", "['Fiction', 'Africa', 'Classics', 'Literature', 'Novels', 'South Africa', 'Historical Fiction']", "['Fiction', 'Africa', 'South Africa', 'Nobel Prize', 'Literature', 'Novels', 'Literary Fiction']", "['Fiction', 'Africa', 'Literature', 'Contemporary', 'Novels', 'Philosophy', 'South Africa']", "['Historical Fiction', 'Fiction', 'Classics', 'Historical', 'Scandinavian Literature', 'Literature', 'Medieval']", "['Fiction', 'Historical Fiction', 'Australia', 'Literature', 'Historical', 'Literary Fiction', 'Novels']", "['Historical Fiction', 'Fiction', 'War', 'Classics', 'Historical', 'Romance', 'World War I']", "['Fiction', 'Science Fiction', 'Dystopia', 'Post Apocalyptic', 'Horror', 'Literature', 'Novels']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Magic', 'Classics', 'Childrens']", "['Poetry', 'Classics', 'Fiction', 'American', 'Literature', 'Queer', 'LGBT']", "['Fiction', 'Fantasy', 'Childrens', 'Young Adult', 'Middle Grade', 'Classics', 'Humor']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Young Adult', 'Humor', 'Classics']", "['Fantasy', 'Childrens', 'Fiction', 'Classics', 'Middle Grade', 'Young Adult', 'Witches']", "['Poetry', 'Childrens', 'Fiction', 'Fantasy', 'Humor', 'Classics', 'Picture Books']", "['Short Stories', 'Fiction', 'Classics', 'Horror', 'Humor', 'Fantasy', 'Anthologies']", "['Fiction', 'Science Fiction', 'Dystopia', 'Contemporary', 'Literary Fiction', 'Romance', 'Classics']", "['Spirituality', 'Nonfiction', 'Religion']", "['Spirituality', 'Nonfiction', 'Occult']", "['Christmas']", "['Spirituality', 'Nonfiction']", "['Spirituality', 'Nonfiction', 'Paranormal', 'Religion', 'New Age', 'Metaphysics', 'Inspirational']", "['Spirituality', 'Paranormal', 'Nonfiction', 'Reference', 'New Age', 'Audiobook', 'Ghosts']", "['Nonfiction', 'Spirituality', 'New Age', 'Self Help', 'Reference', 'Metaphysics', 'Paranormal']", '[]', "['Spirituality', 'Nonfiction', 'Animals']", "['Animals', 'Spirituality', 'Nonfiction']", "['Spirituality', 'Nonfiction', 'Paranormal', 'New Age', 'Religion']", "['Spirituality', 'Nonfiction', 'Paranormal', 'Philosophy', 'New Age', 'Metaphysics']", "['Spirituality', 'Nonfiction', 'New Age', 'Self Help', 'Metaphysics', 'Paranormal', 'Audiobook']", "['Spirituality', 'Nonfiction', 'Paranormal', 'New Age', 'History', 'Audiobook', 'Mystery']", "['Spirituality', 'Nonfiction', 'New Age', 'Paranormal', 'Angels', 'Metaphysics', 'Religion']", "['Spirituality', 'Self Help', 'Nonfiction']", "['Spirituality', 'Nonfiction', 'Inspirational', 'Self Help', 'Paranormal']", "['Spirituality', 'Nonfiction', 'Religion', 'Metaphysics', 'History']", "['Mystery', 'Fiction', 'Humor', 'Chick Lit', 'Romance', 'Crime', 'Mystery Thriller']", "['Fiction', 'Historical Fiction', 'Classics', 'Adventure', 'Literature', 'Historical', 'Romance']", "['History', 'Biography', 'Nonfiction', 'Presidents', 'American History', 'Politics', 'American Revolution']", "['Fiction', 'Feminism', 'Classics', 'Mental Health', 'Psychology', 'Literature', 'Literary Fiction']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Suspense', 'Murder Mystery']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'Suspense', 'Murder Mystery']", "['Nonfiction', 'True Crime', 'History', 'Crime', 'Mystery', 'Biography', 'Historical']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', '20th Century', 'Nobel Prize']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Supernatural', 'Suspense', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Supernatural', 'Adult']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Suspense', 'Mystery Thriller', 'Detective']", "['Self Help', 'Nonfiction', 'Spirituality', 'Philosophy', 'Personal Development', 'Psychology', 'Inspirational']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'New York', 'Adult Fiction', 'Short Stories']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'New York', 'Adult', 'Adult Fiction']", "['Fantasy', 'Mystery', 'Fiction', 'Humor', 'Crime', 'Comedy', 'Science Fiction Fantasy']", "['Fiction', 'Chick Lit', 'France', 'Romance', 'Contemporary', 'Novels', 'Humor']", "['Classics', 'Poetry', 'Fiction', 'Literature', 'Philosophy', 'Religion', 'Fantasy']", "['Nonfiction', 'Biography', 'Memoir', 'Childrens', 'Autobiography', 'Classics', 'Biography Memoir']", "['Childrens', 'Fiction', 'Picture Books', 'Fantasy', 'Animals', 'Middle Grade', 'Classics']", "['Childrens', 'Fantasy', 'Fiction', 'Middle Grade', 'Classics', 'Young Adult', 'Humor']", "['Short Stories', 'Fiction', 'Childrens', 'Fantasy', 'Young Adult', 'Classics', 'Middle Grade']", "['Nonfiction', 'Biography', 'Memoir', 'Childrens', 'Autobiography', 'Biography Memoir', 'History']", "['Childrens', 'Fantasy', 'Fiction', 'Classics', 'Young Adult', 'Middle Grade', 'Adventure']", "['Childrens', 'Fiction', 'Classics', 'Young Adult', 'Middle Grade', 'Fantasy', 'Adventure']", "['Fiction', 'Humor', 'Short Stories', 'Comedy', 'Classics', 'Novels', 'Erotica']", "['Childrens', 'Fiction', 'Fantasy', 'Classics', 'Middle Grade', 'Animals', 'Young Adult']", "['Fiction', 'Chick Lit', 'Southern', 'Contemporary', 'Adult Fiction', 'Historical Fiction', 'Coming Of Age']", "['Self Help', 'Nonfiction', 'Spirituality', 'Philosophy', 'Psychology', 'Personal Development', 'Audiobook']", "['Self Help', 'Spirituality', 'Nonfiction', 'Philosophy', 'Psychology', 'Personal Development', 'Audiobook']", "['Nonfiction', 'Essays', 'Humor', 'Short Stories', 'Memoir', 'Philosophy', 'American']", "['Short Stories', 'Fiction', 'Literature', 'American', 'Literary Fiction', 'Contemporary', '21st Century']", "['Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary', 'American', 'Philosophy']", "['Nonfiction', 'Essays', 'Philosophy', 'Short Stories', 'Humor', 'Literature', 'American']", "['Fiction', 'Short Stories', 'American', 'Literature', 'Contemporary', 'Literary Fiction', 'Essays']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Contemporary', 'Humor', 'Literary Fiction']", "['Fiction', 'Fantasy', 'Contemporary', 'Literary Fiction', 'Science Fiction', 'Magical Realism', 'Literature']", "['Fiction', 'Japan', 'Fantasy', 'Magical Realism', 'Contemporary', 'Literary Fiction', 'Novels']", "['Mystery', 'Fiction', 'Humor', 'Romance', 'Chick Lit', 'Crime', 'Cozy Mystery']", "['Fiction', 'Contemporary', 'Literary Fiction', 'British Literature', 'Literature', 'Novels', '20th Century']", "['Fiction', 'Historical Fiction', 'Classics', 'Romance', 'Historical', 'War', 'Literary Fiction']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Literature', 'British Literature', 'Novels', 'Romance']", "['Fiction', 'Contemporary', 'Thriller', 'British Literature', 'Literary Fiction', 'Novels', 'Literature']", "['Nonfiction', 'Biography', 'Classics', 'Memoir', 'Adventure', 'Autobiography', 'History']", "['Nonfiction', 'Memoir', 'Biography', 'Classics', 'Inspirational', 'Philosophy', 'Self Help']", "['Fiction', 'Magical Realism', 'Romance', 'Historical Fiction', 'Classics', 'Fantasy', 'Food']", "['Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Audiobook', '19th Century', 'Classic Literature']", "['Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Adult Fiction', 'Adult', 'Novels']", "['Mystery', 'Fiction', 'Africa', 'Crime', 'Botswana', 'Detective', 'Mystery Thriller']", "['Mystery', 'Fiction', 'Crime', 'Botswana', 'Detective', 'Mystery Thriller', 'Audiobook']", "['Classics', 'Fiction', 'Japan', 'Japanese Literature', 'Historical Fiction', 'Literature', 'Historical']", "['Mystery', 'Fiction', 'Africa', 'Botswana', 'Crime', 'Cozy Mystery', 'Detective']", "['Mystery', 'Fiction', 'Africa', 'Crime', 'Mystery Thriller', 'Botswana', 'Detective']", "['Fiction', 'Classics', 'Literature', 'Contemporary', 'Novels', 'Literary Fiction', 'Humor']", "['Science Fiction', 'Fiction', 'Humor', 'Audiobook', 'Fantasy', 'Aliens', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Classics', 'Dystopia', 'Cyberpunk', 'Science Fiction Fantasy', 'Fantasy']", "['Classics', 'Fiction', 'Historical Fiction', 'Adventure', 'Literature', 'Historical', 'France']", "['Fiction', 'Russia', 'Russian Literature', 'Literature', 'Philosophy', 'Novels', 'Crime']", "['Fiction', 'Romance', 'France', 'Classics', 'French Literature', '19th Century', 'Historical Fiction']", "['Classics', 'Fiction', 'Historical Fiction', 'Adventure', 'France', 'Literature', 'Historical']", "['Fiction', 'Mystery', 'Thriller', 'Historical Fiction', 'Books About Books', 'Spain', 'Mystery Thriller']", "['Fiction', 'Historical Fiction', 'Canada', 'Mystery', 'Historical', 'Literary Fiction', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Thriller', 'Mystery', 'Drama', 'Historical', 'Novels']", "['Africa', 'Fiction', 'Short Stories', 'African Literature', 'Ivory Coast', '20th Century', 'Female Authors']", "['Nonfiction', 'Christian', 'Religion', 'Christianity', 'Faith', 'Spirituality', 'Memoir']", "['Fiction', 'Historical Fiction', 'Africa', 'Classics', 'Literary Fiction', 'Historical', 'Literature']", "['Fantasy', 'Fiction', 'Classics', 'High Fantasy', 'Short Stories', 'Epic Fantasy', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Classics', 'High Fantasy', 'Science Fiction Fantasy', 'Epic Fantasy', 'Mythology']", "['Fiction', 'Contemporary', 'Canada', 'Literary Fiction', 'Literature', 'Novels', 'Classics']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'Historical Mystery', 'British Literature']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Banned Books', 'Science Fiction']", "['Nonfiction', 'History', 'Classics', 'Biography', 'Journalism', 'Memoir', 'Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'Autobiography', 'Book Club', 'Audiobook']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'New York', 'Adult', 'Humor']", "['History', 'Nonfiction', 'American History', 'Biography', 'American Revolution', 'Politics', 'Historical']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Mystery', 'Adult', 'Adult Fiction']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Suspense', 'Mystery Thriller', 'Murder Mystery']", "['Fiction', 'Humor', 'Literature', 'Novels', 'Magical Realism', 'Contemporary', 'Literary Fiction']", "['Classics', 'Fiction', 'Literature', 'Irish Literature', 'Ireland', 'Novels', '20th Century']", "['Nonfiction', 'Memoir', 'Biography', 'Iran', 'Books About Books', 'Feminism', 'History']", "['Fiction', 'Literature', 'Russia', 'Novels', 'Romance', 'Russian Literature', 'Literary Fiction']", "['Classics', 'Fiction', 'Dystopia', 'Fantasy', 'School', 'Literature', 'Science Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Childrens', 'Classics', 'Science Fiction Fantasy']", "['Fiction', 'Classics', 'Young Adult', 'School', 'Literature', 'Dystopia', 'Read For School']", "['Classics', 'Fiction', 'Literature', 'Historical Fiction', '20th Century', 'British Literature', 'Novels']", "['Fiction', 'Classics', 'Czech Literature', 'Humor', 'War', 'Historical Fiction', 'Literature']", "['Fiction', 'Science Fiction', 'Thriller', 'Mystery', 'Suspense', 'Novels', 'Science Fiction Fantasy']", "['Fiction', 'Thriller', 'Mystery', 'Science Fiction', 'Suspense', 'Mystery Thriller', 'Adventure']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Suspense', 'Mystery Thriller', 'Japan']", "['Science Fiction', 'Fiction', 'Thriller', 'Time Travel', 'Historical Fiction', 'Fantasy', 'Adventure']", "['Science Fiction', 'Fiction', 'Thriller', 'Horror', 'Mystery', 'Science Fiction Fantasy', 'Suspense']", "['Fiction', 'Science Fiction', 'Thriller', 'Adventure', 'Horror', 'Mystery', 'Suspense']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Thriller', 'Horror', 'Adventure', 'Historical']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Science Fiction', 'Mystery Thriller', 'Novels']", "['Science Fiction', 'Fiction', 'Thriller', 'Adventure', 'Fantasy', 'Horror', 'Classics']", "['Fiction', 'Historical Fiction', 'Thriller', 'Mystery', 'Crime', 'Historical', 'Adventure']", "['Nonfiction', 'Essays', 'Memoir', 'Philosophy', 'Spirituality', 'Religion', 'Nature']", "['Classics', 'Plays', 'Fiction', 'Drama', 'School', 'Theatre', 'Literature']", "['Classics', 'Fiction', 'Short Stories', 'Literature', 'Philosophy', 'Fantasy', 'German Literature']", "['Fiction', 'Fantasy', 'Classics', 'Adventure', 'Literature', 'Novels', '18th Century']", "['Fiction', 'Historical Fiction', 'Historical', 'Literature', 'Novels', 'Adult Fiction', 'Literary Fiction']", "['Fiction', 'Classics', 'Humor', 'Journalism', 'Novels', 'Literature', 'American']", "['Nonfiction', 'Politics', 'History', 'Journalism', 'Memoir', 'Humor', 'American History']", "['Fiction', 'Historical Fiction', 'Classics', 'China', 'Contemporary', 'Historical', 'Adult Fiction']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Animals', 'Fantasy']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Fantasy', 'Animals']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Fantasy', 'Environment']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Poetry', 'Humor', 'Kids']", "['Childrens', 'Picture Books', 'Classics', 'Fiction', 'Poetry', 'Audiobook', 'Fantasy']", "['Fiction', 'Classics', 'Poetry', 'Literature', 'Russia', 'Novels', 'Russian Literature']", "['Nonfiction', 'Criticism', 'Literary Criticism', 'Art', 'Literature', 'Russia']", "['Fiction', 'Science Fiction', 'Dystopia', 'Climate Change Fiction', 'Novels', 'Environment', 'Literary Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'Audiobook', 'Death', 'Autobiography']", "['Nonfiction', 'Essays', 'Feminism', 'Literary Criticism', 'Books About Books', 'Literature', 'Criticism']", "['Nonfiction', 'History', 'Urban Studies', 'Cities', 'Environment', 'Politics', 'Essays']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'Action', 'Adventure']", "['Classics', 'Historical Fiction', 'Childrens', 'Fiction', 'Young Adult', 'Historical', 'Middle Grade']", "['Classics', 'Fiction', 'Childrens', 'Historical Fiction', 'Middle Grade', 'Young Adult', 'Juvenile']", "['Classics', 'Fiction', 'Historical Fiction', 'Young Adult', 'Childrens', 'Historical', 'Middle Grade']", "['Classics', 'Fiction', 'Historical Fiction', 'Young Adult', 'Childrens', 'Middle Grade', 'Historical']", "['Classics', 'Childrens', 'Fiction', 'Historical Fiction', 'Middle Grade', 'Young Adult', 'Juvenile']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Audiobook', 'Adult', 'Novels']", "['Historical Fiction', 'Fiction', 'Religion', 'Historical', 'Biblical Fiction', 'Lds', 'Christian Fiction']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Young Adult', 'Audiobook', 'Space']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Romance', 'Time Travel', 'Science Fiction Fantasy', 'Science Fiction']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Animals', 'Adventure', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'Animals', 'Middle Grade']", "['Fantasy', 'Fiction', 'Young Adult', 'Animals', 'Childrens', 'Adventure', 'Middle Grade']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Animals', 'Middle Grade', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Historical Fiction', 'Adventure', 'Historical', 'Childrens']", "['Picture Books', 'Childrens', 'Fiction', 'Fantasy', 'Classics', 'Food', 'Humor']", "['Fantasy', 'Fairy Tales', 'Fiction', 'Young Adult', 'Romance', 'Retellings', 'Science Fiction Fantasy']", "['Fantasy', 'Vampires', 'Urban Fantasy', 'Paranormal', 'Fiction', 'Horror', 'Young Adult']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Middle Grade', 'Audiobook']", "['Short Stories', 'Fiction', 'Russia', 'Classics', 'Russian Literature', 'Literature', '20th Century']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Novels', 'Literature', '20th Century']", "['Fiction', 'Russia', 'Classics', 'Russian Literature', 'Chess', 'Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Romance', 'Chick Lit', 'Historical', 'Drama', 'British Literature']", "['Nonfiction', 'History', 'Classics', 'Memoir', 'Biography', 'Historical', 'Childrens']", "['Biography', 'Nonfiction', 'History', 'Biography Memoir', 'Historical', 'American History', 'Childrens']", "['Historical Fiction', 'Classics', 'Childrens', 'Fiction', 'Young Adult', 'Historical', 'Middle Grade']", "['Nonfiction', 'Writing', 'Language', 'Reference', 'Humor', 'Linguistics', 'Education']", "['Fiction', 'Canada', 'Contemporary', 'Literary Fiction', 'Family', 'Coming Of Age', 'Book Club']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Young Adult', 'Space', 'Audiobook']", "['Science Fiction', 'Fiction', 'Thriller', 'Adventure', 'Horror', 'Fantasy', 'Dinosaurs']", "['Fiction', 'Humor', 'Novels', 'Literature', 'Contemporary', 'Comedy', 'Modern']", "['Fiction', 'Fantasy', 'Humor', 'Magical Realism', 'Literature', 'Novels', 'Classics']", "['Science Fiction', 'Fiction', 'Humor', 'Fantasy', 'Comedy', 'Science Fiction Fantasy', 'Classics']", "['Science Fiction', 'Fiction', 'Humor', 'Fantasy', 'Comedy', 'Classics', 'Science Fiction Fantasy']", "['Nonfiction', 'Science', 'Travel', 'Nature', 'Humor', 'Animals', 'Environment']", "['Nonfiction', 'Science', 'Environment', 'Politics', 'Climate Change', 'Sustainability', 'Nature']", "['Historical Fiction', 'Fiction', 'Civil War', 'Historical', 'Politics', 'American History', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Literature', 'Philosophy', 'Classics', 'Religion']", "['Historical Fiction', 'Fiction', 'Historical', 'Literature', 'Classics', 'Novels', 'Italy']", "['Historical Fiction', 'Fiction', 'Politics', 'American History', 'Historical', 'Novels', 'American']", "['Food', 'Memoir', 'Nonfiction', 'Food Writing', 'Cooking', 'Foodie', 'Biography']", "['Classics', 'Fiction', 'Literature', 'Young Adult', 'Animals', 'Short Stories', 'American']", "['Fiction', 'Religion', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'Greece']", "['Nonfiction', 'Biography', 'Africa', 'Memoir', 'Feminism', 'Autobiography', 'Somalia']", "['Nonfiction', 'Memoir', 'Humor', 'Essays', 'Audiobook', 'Biography', 'Feminism']", "['Nonfiction', 'Biography', 'Memoir', 'Travel', 'Kenya', 'Autobiography', 'Biography Memoir']", "['Fiction', 'Childrens', 'Classics', 'Fantasy', 'Animals', 'Novels', 'Spanish Literature']", "['Fiction', 'Science Fiction', 'Dystopia', 'Classics', 'British Literature', 'Novels', 'Literature']", "['Fiction', 'Classics', 'British Literature', 'Novels', 'Humor', 'Literature', 'Literary Fiction']", "['Fiction', 'Classics', 'Literature', 'Historical Fiction', 'Novels', 'Religion', 'Literary Fiction']", "['Nonfiction', 'Classics', 'Memoir', 'Travel', 'Adventure', 'France', 'Biography']", "['Fiction', 'France', 'Classics', 'Aviation', 'French Literature', 'Adventure', 'Novels']", "['Plays', 'Fiction', 'School', 'Classics', 'Read For School', 'Literature', 'Theatre']", "['History', 'Nonfiction', 'Biography', 'Theatre', 'Literary Criticism', 'British Literature', 'Literature']", "['Horror', 'Fiction', 'Zombies', 'Science Fiction', 'Fantasy', 'Post Apocalyptic', 'Dystopia']", "['Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'Thriller', 'Mystery', 'Audiobook']", "['Fantasy', 'Young Adult', 'Horror', 'Vampires', 'Fiction', 'Paranormal', 'Supernatural']", "['Fantasy', 'Horror', 'Young Adult', 'Vampires', 'Fiction', 'Paranormal', 'Supernatural']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Middle Grade', 'School', 'Childrens', 'Read For School']", "['Nonfiction', 'Memoir', 'Games', 'Language', 'Sports', 'Biography', 'History']", "['Christian', 'Nonfiction', 'Biography', 'Christianity', 'Religion', 'Faith', 'Christian Non Fiction']", "['Nonfiction', 'Humor', 'Memoir', 'Comedy', 'Biography', 'Autobiography', 'Short Stories']", "['Nonfiction', 'History', 'Adventure', 'Biography', 'Memoir', 'Survival', 'Travel']", "['Horror', 'Fiction', 'Dystopia', 'Thriller', 'Science Fiction', 'Audiobook', 'Fantasy']", "['Fiction', 'Romance', 'Contemporary', 'Drama', 'Chick Lit', 'Adult Fiction', 'Adventure']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Ireland', 'Audiobook', 'Irish Literature']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Ireland', 'Humor', 'Womens Fiction']", "['Fiction', 'Magical Realism', 'Historical Fiction', 'Fantasy', 'Spanish Literature', 'Historical', 'Novels']", "['Fiction', 'Contemporary', 'Literature', 'Literary Fiction', 'Novels', 'American', 'Coming Of Age']", "['Fiction', 'Humor', 'Literature', 'Novels', 'Magical Realism', 'Fantasy', 'Contemporary']", "['Fiction', 'Historical Fiction', 'LGBT', 'Classics', 'Queer', 'Historical', 'Chick Lit']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Humor', 'Adult', 'Contemporary Romance']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Humor', 'Adult', 'Comedy']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Humor', 'Adult', 'Adult Fiction']", "['Philosophy', 'Nonfiction', 'Classics', 'Theory', 'German Literature', 'History', 'Metaphysics']", "['Philosophy', 'Classics', 'Nonfiction', 'History', 'Politics', 'Reference', 'Ancient']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Childrens', 'Fiction', 'Magic', 'Adventure']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Regency', 'Fiction', 'Dark']", "['Fiction', 'Historical Fiction', 'Asia', 'China', 'Asian Literature', 'Contemporary', 'Novels']", "['Graphic Novels', 'Nonfiction', 'Memoir', 'Comics', 'Biography', 'History', 'School']", "['Graphic Novels', 'Nonfiction', 'Comics', 'Memoir', 'Biography', 'History', 'Iran']", "['Nonfiction', 'History', 'Adventure', 'Biography', 'World War II', 'Audiobook', 'War']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Middle Grade', 'Childrens', 'Magic']", "['Science Fiction', 'Fiction', 'Young Adult', 'Fantasy', 'Science Fiction Fantasy', 'Audiobook', 'Space']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Thriller', 'Mystery Thriller', 'Historical Mystery']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Young Adult', 'Audiobook', 'Adventure']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Audiobook', 'Adventure']", "['Fantasy', 'Urban Fantasy', 'Magic', 'Dragons', 'Paranormal', 'Fiction', 'Mystery']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Novels']", "['Short Stories', 'Fiction', 'Japan', 'Japanese Literature', 'Magical Realism', 'Contemporary', 'Fantasy']", "['Fiction', 'Japan', 'Japanese Literature', 'Magical Realism', 'Contemporary', 'Romance', 'Novels']", "['Fiction', 'Humor', 'Literature', 'Novels', 'Magical Realism', 'Classics', 'Contemporary']", "['Fiction', 'Humor', 'Novels', 'Literature', 'Magical Realism', 'Contemporary', 'Modern']", "['Fiction', 'Humor', 'Literature', 'Magical Realism', 'Contemporary', 'Novels', 'Fantasy']", "['Fiction', 'Humor', 'Novels', 'Literature', 'Magical Realism', 'Contemporary', 'American']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'Literature', 'Novels', 'Humor']", "['Fiction', 'Science Fiction', 'Classics', 'Humor', 'Literature', 'Novels', 'American']", "['Fiction', 'Science Fiction', 'Classics', 'Humor', 'Literature', 'Time Travel', 'Novels']", "['Fiction', 'Science Fiction', 'Classics', 'Dystopia', 'Literature', 'Novels', 'Humor']", "['Fiction', 'Classics', 'Humor', 'Literature', 'Novels', 'Science Fiction', 'American']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Short Stories', 'Classics', 'Halloween']", "['History', 'Nonfiction', 'Politics', 'Classics', 'War', 'Memoir', 'Biography']", "['Fiction', 'Classics', 'Literature', 'British Literature', '20th Century', 'Novels', 'Politics']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Asia', 'Novels', 'Travel']", "['Fiction', 'Feminism', 'Classics', 'Erotica', 'Novels', 'Romance', 'Literature']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Literature', 'Classics', 'Novels', 'Spanish Literature']", "['Fiction', 'Philosophy', 'Literature', 'Novels', 'Czech Literature', 'Romance', 'Classics']", "['Nonfiction', 'Politics', 'Biography', 'Memoir', 'Audiobook', 'Autobiography', 'History']", "['History', 'Biography', 'China', 'Nonfiction', 'Politics', 'Asia', 'Biography Memoir']", "['China', 'Nonfiction', 'Travel', 'History', 'Asia', 'Memoir', 'Politics']", "['Fiction', 'India', 'Historical Fiction', 'Classics', 'Contemporary', 'Literary Fiction', 'Indian Literature']", "['Fiction', 'Literature', 'Classics', 'Romance', 'Novels', 'Banned Books', '20th Century']", "['Nonfiction', 'Travel', 'Memoir', 'Humor', 'Nature', 'Adventure', 'Audiobook']", "['Fiction', 'New York', 'Contemporary', 'Novels', 'Literature', 'Literary Fiction', 'Historical Fiction']", "['Fiction', 'Italian Literature', 'Italy', 'Fantasy', 'Literature', 'Magical Realism', 'Novels']", "['Fiction', 'Short Stories', 'Italy', 'Fantasy', 'Italian Literature', 'Folklore', 'Fairy Tales']", "['Fiction', 'Fantasy', 'Short Stories', 'Magical Realism', 'Italian Literature', 'Literature', 'Italy']", "['Nonfiction', 'Essays', 'Writing', 'Italian Literature', 'Literature', 'Philosophy', 'Literary Criticism']", "['Fiction', 'Fantasy', 'Italian Literature', 'Literature', 'Italy', 'Magical Realism', 'Classics']", "['Fiction', 'Contemporary', 'Romance', 'Literature', 'Unfinished', 'Literary Fiction', 'Novels']", "['Fiction', 'Classics', 'Literary Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Book Club']", "['Fantasy', 'Fiction', 'Childrens', 'Classics', 'Young Adult', 'Middle Grade', 'Animals']", "['Historical Fiction', 'Fiction', 'War', 'Classics', 'Historical', 'Asia', 'Japan']", "['Nonfiction', 'Biography', 'Memoir', 'History', 'Travel', 'Books About Books', 'Asia']", "['Fiction', 'Young Adult', 'Contemporary', 'Chick Lit', 'Coming Of Age', 'Boarding School', 'Adult Fiction']", "['Economics', 'Nonfiction', 'Politics', 'Poverty', 'International Development', 'Social Justice', 'Business']", "['Fiction', 'Magical Realism', 'India', 'Literature', 'Music', 'Novels', 'Romance']", "['Fiction', 'India', 'Magical Realism', 'Literature', 'Historical Fiction', 'Novels', 'Contemporary']", "['Fiction', 'Short Stories', 'India', 'Magical Realism', 'Literary Fiction', 'Literature', 'Indian Literature']", "['Fiction', 'Novels', 'Literature', 'Crime', 'Literary Fiction', 'American', 'Contemporary']", "['Fiction', 'Mystery', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary', 'Thriller']", "['Fiction', 'Contemporary', 'Novels', 'LGBT', 'American', 'Literary Fiction', 'Literature']", "['Fiction', 'Contemporary', 'Horror', 'Thriller', 'Novels', 'Literature', 'American']", "['Fiction', 'Short Stories', 'Contemporary', 'American', 'Thriller', 'Literature', 'Novels']", "['Fiction', 'Contemporary', 'Novels', 'American', 'Classics', 'Literature', 'Literary Fiction']", "['Fiction', 'Short Stories', 'Classics', 'Southern', 'American', 'Literature', 'Southern Gothic']", "['Fiction', 'Contemporary', 'Novels', 'British Literature', 'Literary Fiction', 'Literature', 'Classics']", "['Fiction', 'Japan', 'Japanese Literature', 'Classics', 'Magical Realism', 'Literature', 'Novels']", "['Fiction', 'Japanese Literature', 'Japan', 'Literature', 'Classics', 'Novels', 'Asia']", "['Fiction', 'Japanese Literature', 'Japan', 'Horror', 'Classics', 'Science Fiction', 'Literature']", "['Fiction', 'American', 'Contemporary', 'Literature', 'Novels', 'Literary Fiction', 'Mystery']", "['Classics', 'Fiction', 'German Literature', 'School', 'Literature', 'Novels', 'Roman']", "['Philosophy', 'Fiction', 'Short Stories', 'Classics', 'France', 'French Literature', 'Literature']", "['Philosophy', 'Nonfiction', 'Classics', 'France', 'Psychology', 'Theory', 'French Literature']", "['Philosophy', 'Fiction', 'Classics', 'France', 'Literature', 'Novels', 'French Literature']", "['Plays', 'Philosophy', 'Fiction', 'Classics', 'Drama', 'France', 'Theatre']", "['Fiction', 'Young Adult', 'Humor', 'Coming Of Age', 'Comedy', 'Contemporary', 'Romance']", "['History', 'Nonfiction', 'Military Fiction', 'War', 'World War II', 'Biography', 'Military History']", "['Childrens', 'Fiction', 'Humor', 'Middle Grade', 'Young Adult', 'Fantasy', 'Juvenile']", "['Fiction', 'Contemporary', 'Humor', 'Novels', 'British Literature', 'Adult Fiction', 'Adult']", "['Fantasy', 'Science Fiction', 'Fiction', 'Cyberpunk', 'Science Fiction Fantasy', 'Adventure', 'Speculative Fiction']", "['History', 'Nonfiction', 'Biography', 'Scotland', 'Historical', 'Tudor Period', 'British Literature']", "['History', 'Nonfiction', 'Biography', 'Historical', 'Tudor Period', 'British Literature', 'Biography Memoir']", "['Historical Fiction', 'Fiction', 'Historical', 'Tudor Period', 'British Literature', '16th Century', 'Medieval']", "['Historical Fiction', 'Fiction', 'Historical', 'Egypt', 'Romance', 'Adult', 'Africa']", "['Humor', 'Nonfiction', 'Memoir', 'Essays', 'Short Stories', 'Comedy', 'Audiobook']", "['Poetry', 'Poland', 'Nobel Prize', 'Polish Literature', 'Classics', 'Literature', 'Womens']", "['Fiction', 'Classics', 'Historical Fiction', 'Gothic', 'Literature', 'Historical', 'School']", "['Historical Fiction', 'Fiction', 'India', 'Romance', 'Historical', 'Classics', 'Adventure']", "['Nonfiction', 'Biography', 'Medicine', 'Memoir', 'Science', 'Medical', 'Health']", "['Science', 'Nonfiction', 'Physics', 'Biography', 'Philosophy', 'Essays', 'Memoir']", "['History', 'Nonfiction', 'Politics', 'War', 'World History', 'Military History', 'Military Fiction']", "['History', 'Politics', 'Economics', 'Nonfiction', 'American History', 'Presidents', 'Historical']", "['Mystery', 'Fiction', 'Suspense', 'Thriller', 'Mystery Thriller', 'Crime', 'Psychological Thriller']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Young Adult', 'Adventure', 'Chapter Books']", "['Classics', 'Fiction', 'Young Adult', 'Childrens', 'Middle Grade', 'Historical Fiction', 'Animals']", "['Fiction', 'Young Adult', 'Classics', 'Historical Fiction', 'Childrens', 'Middle Grade', 'Animals']", "['Fiction', 'Fantasy', 'Magical Realism', 'Japan', 'Japanese Literature', 'Science Fiction', 'Contemporary']", "['Nonfiction', 'Self Help', 'Chick Lit', 'Relationships', 'Humor', 'Psychology', 'Romance']", "['Fiction', 'Contemporary', 'Historical Fiction', 'Adult Fiction', 'Adult', 'Book Club', 'Drama']", "['Classics', 'Childrens', 'Fiction', 'Middle Grade', 'Young Adult', 'Historical Fiction', 'Childrens Classics']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Travel', '20th Century']", "['Fiction', 'Historical Fiction', 'Literature', 'Italian Literature', 'Italy', 'Literary Fiction', 'Contemporary']", "['Art', 'Nonfiction', 'History', 'Philosophy', 'Art History', 'Italian Literature', 'Italy']", "['Fiction', 'Historical Fiction', 'Literature', 'Fantasy', 'Italian Literature', 'Historical', 'Novels']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Literature', 'Historical', 'Italian Literature', 'Italy']", "['Nonfiction', 'Philosophy', 'History', 'War', 'Business', 'Classics', 'Military Fiction']", "['Nonfiction', 'Memoir', 'Humor', 'Biography', 'Autobiography', 'Biography Memoir', 'History']", "['History', 'Biography', 'Civil War', 'Memoir', 'Nonfiction', 'American History', 'War']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Mystery', 'Romance', 'Audiobook']", "['Horror', 'Fiction', 'Zombies', 'Thriller', 'Science Fiction', 'Post Apocalyptic', 'Fantasy']", "['Nonfiction', 'Writing', 'Memoir', 'Biography', 'Audiobook', 'Reference', 'Autobiography']", "['Young Adult', 'Fiction', 'Humor', 'Mystery', 'Teen', 'Music', 'Coming Of Age']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adult', 'Dragons']", "['Mystery', 'Fiction', 'Horror', 'Crime', 'Thriller', 'Mystery Thriller', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Audiobook', 'Mystery', 'American']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Thriller', 'Anthologies', 'Collections']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Audiobook', 'Paranormal', 'Adult']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Suspense', 'Supernatural', 'Paranormal']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Mystery', 'Supernatural', 'Suspense']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Thriller', 'Anthologies', 'Mystery']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Fantasy', 'Paranormal', 'Suspense']", "['Horror', 'Fiction', 'Thriller', 'Classics', 'Fantasy', 'Paranormal', 'Supernatural']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Supernatural', 'Audiobook', 'Suspense']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Animals', 'Audiobook', 'Adult']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Supernatural', 'Paranormal', 'Mystery']", "['Horror', 'Fantasy', 'Fiction', 'Thriller', 'Mystery', 'Supernatural', 'Audiobook']", "['Fantasy', 'Fiction', 'Horror', 'Young Adult', 'Dragons', 'Thriller', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Adult']", "['Horror', 'Fiction', 'Short Stories', 'Thriller', 'Science Fiction', 'Fantasy', 'Suspense']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Suspense', 'Supernatural', 'Audiobook']", "['Horror', 'Short Stories', 'Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Anthologies']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Paranormal', 'Supernatural', 'Mystery']", "['Finance', 'Business', 'Nonfiction', 'Economics', 'History', 'Money', 'Biography']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Horror', 'Vampires', 'Mystery', 'Historical']", "['Fiction', 'Historical Fiction', 'Humor', 'Classics', 'Literature', 'Religion', 'Novels']", "['Fiction', 'Classics', 'Novels', 'Literature', 'American', 'Humor', 'Literary Fiction']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Southern', 'Literary Fiction', 'American']", "['Classics', 'Fiction', 'Literature', 'Novels', 'Romance', 'American', 'France']", "['Fiction', 'Historical Fiction', 'Classics', 'War', 'Literature', 'Novels', 'American']", "['Fiction', 'Literary Fiction', 'Historical Fiction', 'Westerns', 'Classics', 'Relationships', 'American Fiction']", "['Nonfiction', 'New York', 'Essays', 'Travel', 'History', 'Classics', 'Memoir']", "['Nonfiction', 'True Crime', 'History', 'Religion', 'Crime', 'Audiobook', 'Cults']", "['Nonfiction', 'Travel', 'Adventure', 'Memoir', 'Sports', 'Biography', 'Biography Memoir']", "['Fiction', 'Romance', 'Contemporary', 'Humor', 'Novella', 'Novels', 'Adult Fiction']", "['Nonfiction', 'History', 'Journalism', 'Memoir', 'Biography', 'Crime', 'True Crime']", "['Biography', 'History', 'Nonfiction', 'American History', 'Biography Memoir', 'Politics', 'American Revolution']", "['Biography', 'Nonfiction', 'Science', 'History', 'Physics', 'Biography Memoir', 'Audiobook']", "['Nonfiction', 'Memoir', 'Spirituality', 'Religion', 'Faith', 'Christian', 'Essays']", "['Fiction', 'Contemporary', 'Chick Lit', 'Romance', 'Drama', 'Audiobook', 'Adult']", "['Fiction', 'Contemporary', 'Chick Lit', 'Adult Fiction', 'Adult', 'Drama', 'Mystery']", "['Fiction', 'Mystery', 'Contemporary', 'Paranormal', 'Chick Lit', 'Romance', 'Adult Fiction']", "['Fiction', 'Contemporary', 'Chick Lit', 'Drama', 'Adult Fiction', 'Adult', 'Religion']", "['Fiction', 'Contemporary', 'Chick Lit', 'Romance', 'Drama', 'Adult Fiction', 'Adult']", "['Fiction', 'Contemporary', 'Romance', 'Chick Lit', 'Mystery', 'Adult Fiction', 'Adult']", "['Fiction', 'Romance', 'Contemporary', 'Chick Lit', 'Drama', 'Mystery', 'Adult Fiction']", "['Fiction', 'Chick Lit', 'Young Adult', 'Drama', 'Adult', 'Adult Fiction', 'Realistic Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Civil War', 'War', 'Classics']", "['Fiction', 'Inspirational', 'Contemporary', 'Adult', 'Adult Fiction', 'Fantasy', 'Novels']", "['Fiction', 'Classics', 'Young Adult', 'Literary Fiction', 'Coming Of Age', 'Mental Health', 'Contemporary']", "['Fiction', 'Classics', 'Young Adult', 'Novels', 'Fantasy', 'Literature', 'Contemporary']", "['Classics', 'Fiction', 'Literature', 'Novels', 'American', 'Southern Gothic', '20th Century']", "['Fiction', 'Literature', 'Classics', 'Novels', 'American', 'Southern Gothic', 'Southern']", "['Fiction', 'Classics', 'American', 'Literature', 'Novels', 'Literary Fiction', 'Southern Gothic']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Fantasy', 'Romance', 'Audiobook']", "['Classics', 'Fiction', 'Short Stories', 'Ireland', 'Literature', 'Irish Literature', '20th Century']", "['Fiction', 'Classics', 'Literature', 'Ireland', 'Irish Literature', 'Novels', 'Literary Fiction']", "['Mystery', 'Fiction', 'Historical Fiction', 'Thriller', 'Crime', 'Art', 'Spain']", "['Nonfiction', 'Memoir', 'Biography', 'Classics', 'Romance', 'France', 'Autobiography']", "['Fiction', 'Erotica', 'Short Stories', 'Classics', 'Romance', 'France', 'Sexuality']", "['Travel', 'Nonfiction', 'Humor', 'Memoir', 'Biography', 'Adventure', 'Biography Memoir']", "['Nonfiction', 'Sociology', 'Economics', 'Politics', 'Poverty', 'Social Justice', 'Social Issues']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Crime', 'Science Fiction']", "['Fantasy', 'Classics', 'Fiction', 'Young Adult', 'Childrens', 'Christian', 'Middle Grade']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'School', 'Novels', 'Spanish Literature']", "['Fiction', 'Historical Fiction', 'Young Adult', 'Classics', 'Novels', 'Coming Of Age', 'Contemporary']", "['Fiction', 'Classics', 'Literary Fiction', 'Literature', 'Novels', 'British Literature', '20th Century']", "['Fiction', 'Classics', 'Gothic', 'British Literature', 'Literary Fiction', 'Ireland', '20th Century']", "['Fiction', 'Classics', 'Novels', 'British Literature', 'Literature', 'Literary Fiction', '20th Century']", "['Fiction', 'Magical Realism', 'Japanese Literature', 'Fantasy', 'Contemporary', 'Novels', 'Literature']", "['Science Fiction', 'Horror', 'Fiction', 'Fantasy', 'Thriller', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Coming Of Age', 'Supernatural']", "['Horror', 'Fiction', 'Fantasy', 'Vampires', 'Thriller', 'Science Fiction', 'Paranormal']", "['Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Time Travel', 'Audiobook']", "['Horror', 'Vampires', 'Fiction', 'Fantasy', 'Thriller', 'Science Fiction', 'Paranormal']", "['Fiction', 'Romance', 'Japan', 'Japanese Literature', 'Classics', 'Novels', 'Literary Fiction']", "['Fiction', 'Japan', 'Magical Realism', 'Japanese Literature', 'Fantasy', 'Contemporary', 'Novels']", "['Short Stories', 'Fiction', 'Japan', 'Japanese Literature', 'Magical Realism', 'Contemporary', 'Asia']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Classics', 'Arthurian', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Arthurian', 'Adventure']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Philosophy', '20th Century', 'British Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'African American', 'Magical Realism', 'Novels', 'Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'Banned Books', 'Race', 'African American', 'Literary Fiction']", "['Poetry', 'Classics', 'Romance', 'Spanish Literature', 'Fiction', 'Love', 'Latin American']", "['Fiction', 'Classics', 'Historical Fiction', 'African American', 'Literary Fiction', 'Novels', 'Literature']", "['Fiction', 'Classics', 'African American', 'Literary Fiction', 'Novels', 'Literature', 'American']", "['Fiction', 'Classics', 'Politics', 'Dystopia', 'Historical Fiction', 'Literature', 'Science Fiction']", "['Classics', 'Fiction', 'Literature', 'Historical Fiction', 'American', 'Novels', '20th Century']", "['Christian', 'Nonfiction', 'Faith', 'Christianity', 'Spirituality', 'Christian Living', 'Religion']", "['Christian Fiction', 'Christian', 'Romance', 'Fiction', 'Historical Fiction', 'Historical', 'Historical Romance']", "['Christian Fiction', 'Christian', 'Fiction', 'Romance', 'Christian Romance', 'Adult Fiction', 'Inspirational']", "['Christian Fiction', 'Christian', 'Fiction', 'Romance', 'Christian Romance', 'Inspirational', 'Contemporary']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'American', 'Literary Fiction', 'Contemporary']", "['Short Stories', 'Fiction', 'Classics', 'American', 'Literature', 'Contemporary', 'Literary Fiction']", "['Short Stories', 'Fiction', 'Classics', 'American', 'Literature', 'The United States Of America', 'Literary Fiction']", "['Short Stories', 'Fiction', 'Classics', 'American', '20th Century', 'Literature', 'The United States Of America']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'American', 'Literary Fiction', 'Americana']", "['Memoir', 'Nonfiction', 'War', 'History', 'Biography', 'Military Fiction', 'Biography Memoir']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Classics', 'School', 'Coming Of Age']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Coming Of Age', 'Autobiography', 'Classics']", "['Nonfiction', 'History', 'Africa', 'War', 'Politics', 'Rwanda', 'Journalism']", "['Fiction', 'Historical Fiction', 'Feminism', 'Classics', 'LGBT', 'Historical', 'Queer']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Literary Fiction', 'Nobel Prize']", "['Fiction', 'Jewish', 'Classics', 'Historical Fiction', 'Judaism', 'Religion', 'Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'Jewish', 'Religion', 'Judaism', 'Art']", "['Horror', 'Thriller', 'Fiction', 'Mystery', 'Suspense', 'Crime', 'Mystery Thriller']", "['Horror', 'Fiction', 'Gothic', 'Mystery', 'Fantasy', 'Paranormal', 'Suspense']", "['Horror', 'Fiction', 'Post Apocalyptic', 'Fantasy', 'Science Fiction', 'Dystopia', 'Apocalyptic']", "['Horror', 'Nonfiction', 'Writing', 'Essays', 'Reference', 'Books About Books', 'Biography']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Fantasy', 'Survival']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Mystery', 'Classics', 'Crime']", "['Horror', 'Fiction', 'Science Fiction', 'Thriller', 'Fantasy', 'Aliens', 'Supernatural']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Science Fiction', 'Paranormal', 'Mystery']", "['Horror', 'Fiction', 'Short Stories', 'Coming Of Age', 'Thriller', 'Mystery', 'Young Adult']", "['Horror', 'Fiction', 'Thriller', 'Classics', 'Fantasy', 'Paranormal', 'Mystery']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Supernatural', 'Mystery', 'Audiobook']", "['Horror', 'Fiction', 'Fantasy', 'Short Stories', 'Thriller', 'Mystery', 'Suspense']", "['Horror', 'Fiction', 'Science Fiction', 'Dystopia', 'Thriller', 'Audiobook', 'Fantasy']", "['Nonfiction', 'Poetry', 'Classics', 'Memoir', 'Biography', 'Mental Health', 'Biography Memoir']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Historical Fiction', 'Literary Fiction']", "['Fiction', 'Novels', 'American', 'Literature', 'Historical Fiction', 'Literary Fiction', 'The United States Of America']", "['Fiction', 'American', 'Novels', 'Literature', 'Literary Fiction', 'Classics', 'The United States Of America']", "['Fiction', 'Novels', 'Literature', 'American', 'Literary Fiction', 'Jewish', 'Religion']", "['Fiction', 'Literature', 'Contemporary', 'American', 'Terrorism', 'Thriller', 'Novels']", "['Fiction', 'Classics', 'Novels', 'American', 'Literature', 'Literary Fiction', '20th Century']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'American', 'Literary Fiction', 'The United States Of America']", "['Nonfiction', 'Travel', 'Memoir', 'Biography', 'History', 'Turkish', 'Turkish Literature']", "['Fiction', 'Literature', 'Contemporary', 'Turkish', 'Historical Fiction', 'Turkish Literature', 'Novels']", "['Fiction', 'Turkish Literature', 'Turkish', 'Mystery', 'Novels', 'Literature', 'Nobel Prize']", "['Fiction', 'Historical Fiction', 'Turkish Literature', 'Turkish', 'Literature', 'Novels', 'Nobel Prize']", "['Fiction', 'Contemporary', 'Novels', 'Literature', 'Humor', 'Literary Fiction', 'Coming Of Age']", "['Fiction', 'Historical Fiction', 'Classics', 'Romance', 'War', 'Historical', 'Canada']", "['Fiction', 'Novels', 'Literature', 'American', 'Contemporary', 'Literary Fiction', 'Classics']", "['Fiction', 'Classics', 'Literary Fiction', 'Novels', 'Literature', 'Contemporary', 'American']", "['Short Stories', 'Fiction', 'Historical Fiction', 'African American', 'Literature', 'Literary Fiction', 'Contemporary']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Literary Fiction', 'American', 'Contemporary']", "['Fiction', 'Sports', 'Novels', 'Literature', 'American', '20th Century', 'Literary Fiction']", "['Fiction', 'Contemporary', 'Literature', 'Classics', 'Literary Fiction', 'Novels', 'American']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Literature', 'Death', 'Family']", "['Horror', 'Fiction', 'Thriller', 'Crime', 'Mystery', 'Contemporary', 'Dark']", "['Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Realistic Fiction', 'Coming Of Age', 'Family']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'LGBT', 'Classics', 'Novels']", "['Horror', 'Fantasy', 'Fiction', 'Paranormal', 'Witches', 'Supernatural', 'Gothic']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Literary Fiction', '20th Century']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Werewolves', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Werewolves', 'Paranormal Romance', 'Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Fiction', 'Supernatural']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Werewolves', 'Romance', 'Paranormal Romance', 'Supernatural']", "['France', 'Fiction', 'Classics', 'French Literature', 'Roman', 'Literature', 'Novels']", "['France', 'Philosophy', 'Fiction', 'Classics', 'Plays', 'Literature', 'French Literature']", "['Philosophy', 'Nonfiction', 'Classics', 'Essays', 'France', 'Literature', 'French Literature']", "['Fiction', 'Classics', 'Philosophy', 'France', 'Literature', 'French Literature', 'Novels']", "['Philosophy', 'Nonfiction', 'Classics', 'Essays', 'France', 'Politics', 'French Literature']", "['Fiction', 'Philosophy', 'France', 'Literature', 'French Literature', 'Novels', 'Classics']", "['Fiction', 'Science Fiction', 'Dystopia', 'Feminism', 'Literary Fiction', 'Classics', 'Fantasy']", "['Science Fiction', 'Fiction', 'Space Opera', 'Cultural', 'Science Fiction Fantasy', 'Fantasy', 'Space']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Fantasy', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Space Opera', 'Cultural', 'Fantasy', 'Science Fiction Fantasy', 'Space']", "['Fiction', 'Crime', 'Mystery', 'Thriller', 'Scotland', 'Contemporary', 'Novels']", "['Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Cultural', 'Science Fiction Fantasy', 'Adventure']", "['Fiction', 'Mystery', 'Contemporary', 'Scotland', 'Thriller', 'Crime', 'Novels']", "['Fiction', 'Literary Fiction', 'Novels', 'British Literature', 'Classics', '20th Century', 'Female Authors']", "['Fantasy', 'Fiction', 'Humor', 'Audiobook', 'Comedy', 'Urban Fantasy', 'Science Fiction Fantasy']", "['Philosophy', 'Nonfiction', 'Language', 'Classics', 'Linguistics', 'German Literature', 'Psychology']", "['Philosophy', 'Nonfiction', 'Logic', 'Classics', 'German Literature', 'Language', 'Linguistics']", "['Plays', 'Drama', 'Classics', 'Fiction', 'Theatre', 'Literature', 'American']", "['Classics', 'Fiction', 'Italian Literature', 'Italy', 'Literature', 'Novels', 'Nobel Prize']", "['Classics', 'Fiction', 'Italian Literature', 'Italy', 'Philosophy', 'Literature', 'Novels']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Middle Grade', 'Childrens', 'Classics', 'Adventure']", "['Plays', 'Drama', 'Theatre', 'Fiction', 'Classics', 'American', 'School']", "['Plays', 'Drama', 'Theatre', 'Fiction', 'American', 'Anthologies', 'Literature']", "['Historical Fiction', 'Fiction', 'Classics', 'France', 'Historical', 'Philosophy', 'Literature']", "['Fiction', 'Classics', 'Russia', 'Literature', 'Novels', 'Russian Literature', 'Romance']", "['Classics', 'Fiction', 'Literature', 'Adventure', 'Novels', 'Historical Fiction', 'British Literature']", "['Plays', 'Classics', 'Fiction', 'Drama', 'School', 'Theatre', 'Read For School']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre', 'Literature']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Irish Literature', 'Ireland', 'Philosophy']", "['Fiction', 'Classics', 'Historical Fiction', 'School', 'Literature', 'High School', 'Historical']", "['Philosophy', 'Nonfiction', 'Classics', 'Psychology', 'German Literature', 'Religion', '19th Century']", "['Nonfiction', 'History', 'Essays', 'Humor', 'Memoir', 'Politics', 'Audiobook']", "['Fiction', 'Novels', 'Literary Fiction', 'Literature', 'American', 'Contemporary', 'Audiobook']", "['Fiction', 'France', 'Literature', 'French Literature', 'Novels', 'Philosophy', 'Classics']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'War', 'Germany', 'American']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Literary Fiction', 'American', 'Historical Fiction']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Coming Of Age', 'Southern']", "['Fiction', 'Classics', 'Literature', 'American', 'Novels', 'Literary Fiction', 'Americana']", "['Fiction', 'Classics', 'War', 'Historical Fiction', 'Literature', 'Novels', 'World War II']", "['True Crime', 'Nonfiction', 'Crime', 'Biography', 'Classics', 'History', 'Literature']", "['History', 'Nonfiction', 'Politics', 'Classics', 'Memoir', 'Journalism', 'Literature']", "['Fiction', 'Thriller', 'Crime', 'Westerns', 'Mystery', 'Literature', 'Novels']", "['Fiction', 'Russia', 'Russian Literature', 'Literature', 'Classics', 'Philosophy', 'Novels']", "['Nonfiction', 'Nature', 'Memoir', 'Essays', 'Classics', 'Philosophy', 'Science']", "['Nonfiction', 'Memoir', 'Spirituality', 'Religion', 'Faith', 'Essays', 'Christian']", "['Writing', 'Nonfiction', 'Memoir', 'Self Help', 'Essays', 'Reference', 'Biography']", "['Fiction', 'Historical Fiction', 'China', 'Historical', 'Asia', 'Contemporary', 'Asian Literature']", "['Fiction', 'Historical Fiction', 'China', 'Asia', 'Contemporary', 'Asian Literature', 'Historical']", "['Fiction', 'Short Stories', 'Poetry', 'Japan', 'Literature', 'American', 'Humor']", "['Short Stories', 'Fiction', 'Classics', 'Southern', 'Literature', 'Southern Gothic', 'American']", "['Fiction', 'Classics', 'Southern', 'Literary Fiction', 'Southern Gothic', 'American', 'Novels']", "['Fiction', 'Classics', 'Southern', 'Historical Fiction', 'Novels', 'American', '20th Century']", "['Nonfiction', 'Medicine', 'Anthropology', 'Medical', 'Science', 'Memoir', 'History']", "['Politics', 'Nonfiction', 'History', 'Philosophy', 'Sociology', 'Economics', 'Journalism']", "['Historical Fiction', 'Fiction', 'Historical', 'Israel', 'Religion', 'Jewish', 'Novels']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'Travel', 'Novels', 'Epic']", "['Historical Fiction', 'Fiction', 'Historical', 'American History', 'Classics', 'Novels', 'Adventure']", "['Historical Fiction', 'Fiction', 'Africa', 'Historical', 'South Africa', 'Novels', 'Classics']", "['Nonfiction', 'Memoir', 'Animals', 'Biography', 'Dogs', 'Humor', 'Biography Memoir']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'Literature', 'American', 'Novels']", "['Fiction', 'Historical Fiction', 'Classics', 'Australia', 'Novels', 'Literary Fiction', 'Literature']", "['Fiction', 'France', 'Literature', 'French Literature', 'Novels', 'Philosophy', '20th Century']", "['Mystery', 'Fiction', 'Thriller', 'Classics', 'Crime', 'Mystery Thriller', 'Suspense']", "['Fiction', 'Classics', 'Magical Realism', 'Fantasy', 'Literature', 'Religion', 'Banned Books']", "['Nonfiction', 'Travel', 'Italy', 'History', 'True Crime', 'Mystery', 'Memoir']", "['Spirituality', 'Philosophy', 'Fiction', 'Anthropology', 'Religion', 'Psychology', 'Fantasy']", "['Philosophy', 'Fiction', 'Spirituality', 'Anthropology', 'Fantasy', 'Psychology', 'Religion']", "['Spirituality', 'Nonfiction', 'Philosophy', 'Psychology', 'Occult', 'New Age', 'Mysticism']", "['Classics', 'Fiction', 'Russia', 'Russian Literature', 'Literature', 'Novels', '19th Century']", "['Fiction', 'Mystery', 'Gothic', 'Romance', 'Classics', 'Historical Fiction', 'Thriller']", "['History', 'Travel', 'Nonfiction', 'Classics', 'Politics', 'Memoir', 'European History']", "['Fiction', 'Novels', 'Jewish', 'American', 'Literature', 'Literary Fiction', 'Contemporary']", "['Classics', 'Poetry', 'Fiction', 'Mythology', 'Literature', 'School', 'Fantasy']", "['Classics', 'Gothic', 'Horror', 'Fiction', 'Fantasy', '18th Century', 'Literature']", "['Young Adult', 'Dystopia', 'Fiction', 'Fantasy', 'Science Fiction', 'Middle Grade', 'Classics']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Audiobook', 'Juvenile']", "['Classics', 'Plays', 'Fiction', 'School', 'Theatre', 'Literature', 'Poetry']", "['Classics', 'Horror', 'Fiction', 'Gothic', 'Mystery', 'Audiobook', 'Literature']", "['Classics', 'Fiction', 'Short Stories', 'Horror', 'Literature', 'Gothic', 'Ghosts']", "['Plays', 'Fiction', 'Drama', 'Classics', 'Romance', 'School', 'Theatre']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Magical Realism', 'Romance', 'Historical', 'New York']", "['Plays', 'Drama', 'Fiction', 'Classics', 'Fantasy', 'School', 'Theatre']", "['Classics', 'Plays', 'Fiction', 'School', 'Theatre', 'Literature', 'Read For School']", "['Plays', 'Fiction', 'Drama', 'School', 'Classics', 'Historical Fiction', 'Read For School']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre', 'School']", "['Classics', 'Fantasy', 'Fiction', 'Childrens', 'Young Adult', 'Adventure', 'Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'Egypt', 'Africa']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Egypt', 'Novels', 'Africa']", "['Fiction', 'Mystery', 'Humor', 'Crime', 'Comedy', 'Mystery Thriller', 'Audiobook']", "['Fiction', 'Mystery', 'Humor', 'Crime', 'Thriller', 'Comedy', 'Mystery Thriller']", "['Fiction', 'Humor', 'Mystery', 'Crime', 'Comedy', 'Thriller', 'Mystery Thriller']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Mystery', 'Middle Grade', 'Humor', 'Childrens']", "['Fiction', 'Mystery', 'Humor', 'Crime', 'Thriller', 'Comedy', 'Audiobook']", "['Fiction', 'Mystery', 'Humor', 'Crime', 'Thriller', 'Audiobook', 'Mystery Thriller']", "['Fiction', 'Mystery', 'Humor', 'Crime', 'Comedy', 'Mystery Thriller', 'Thriller']", "['Young Adult', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Childrens', 'Mystery', 'Animals']", "['Fiction', 'Spirituality', 'Philosophy', 'Self Help', 'Fantasy', 'New Age', 'Religion']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Suspense', 'Mystery Thriller', 'Audiobook']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Suspense', 'Mystery Thriller', 'Murder Mystery']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Murder Mystery']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Fiction', 'Adventure', 'Paranormal', 'Action']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Detective']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Mystery', 'Thriller', 'Historical', 'Fantasy', 'Mystery Thriller']", "['Fiction', 'Mystery', 'Thriller', 'Fantasy', 'Science Fiction', 'Suspense', 'Mystery Thriller']", "['Nonfiction', 'Classics', 'Memoir', 'Biography', 'Autobiography', 'Poetry', 'Feminism']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Africa', 'African American', 'Travel']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'British Literature', 'Adult', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Dragons', 'Magic', 'Adventure', 'Teen']", "['Literary Criticism', 'Nonfiction', 'Classics', 'Literature', 'Criticism', 'Ireland', 'Irish Literature']", "['Fiction', 'Canada', 'Contemporary', 'Coming Of Age', 'Canadian Literature', 'Religion', 'Young Adult']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Fantasy', 'Teen', 'Adventure']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Thriller', 'Anthologies', 'Supernatural']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adult', 'Science Fiction Fantasy', 'Adventure']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adult', 'Adventure']", "['Fiction', 'Short Stories', 'Fantasy', 'Classics', 'Fairy Tales', 'German Literature', 'Literature']", "['Fantasy', 'Fiction', 'Retellings', 'Adult', 'Magic', 'Science Fiction Fantasy', 'Fairy Tales']", "['Historical Fiction', 'Fiction', 'Civil War', 'Historical', 'War', 'Literary Fiction', 'Book Club']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Romance', 'Adventure', 'Comics Manga']", "['Manga', 'Graphic Novels', 'Fantasy', 'Comics', 'Fiction', 'Mystery', 'Horror']", "['Manga', 'Graphic Novels', 'Fantasy', 'Comics', 'Horror', 'Fiction', 'Mystery']", "['Manga', 'Graphic Novels', 'Fantasy', 'Comics', 'Fiction', 'Horror', 'Mystery']", "['Manga', 'Graphic Novels', 'Fantasy', 'Fiction', 'Mystery', 'Horror', 'Thriller']", "['Fantasy', 'Fiction', 'Young Adult', 'Classics', 'Science Fiction Fantasy', 'Magic', 'High Fantasy']", "['Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Dystopia', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Fantasy', 'Fiction', 'Young Adult', 'Dragons', 'High Fantasy', 'Science Fiction', 'Classics']", "['Fantasy', 'Fiction', 'Short Stories', 'Young Adult', 'High Fantasy', 'Magic', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Young Adult', 'Science Fiction Fantasy', 'High Fantasy', 'Classics', 'Magic']", "['Fantasy', 'Fiction', 'Young Adult', 'Classics', 'Science Fiction Fantasy', 'High Fantasy', 'Magic']", "['Fantasy', 'Childrens', 'Fiction', 'Cats', 'Animals', 'Middle Grade', 'Chapter Books']", "['Fantasy', 'Young Adult', 'Manga', 'Fiction', 'Light Novel', 'Japan', 'Japanese Literature']", "['Nonfiction', 'Memoir', 'Food', 'Cooking', 'Biography', 'Chick Lit', 'Biography Memoir']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dark Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Philosophy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Magic', 'Adventure']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Science Fiction Fantasy', 'Adventure']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Classics', 'Mythology', 'Hugo Awards']", "['Science Fiction', 'Fantasy', 'Short Stories', 'Fiction', 'Science Fiction Fantasy', 'Anthologies', 'Collections']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Mystery', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Adventure', 'Young Adult Fantasy', 'Romance']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Adventure', 'Middle Grade', 'Young Adult Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Adventure', 'High Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction Fantasy', 'Childrens', 'Magic', 'Young Adult Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Adventure', 'Romance']", "['Nonfiction', 'Science', 'Food', 'Nature', 'History', 'Biology', 'Environment']", "['Childrens', 'Fiction', 'Classics', 'Chapter Books', 'Short Stories', 'Family', 'Picture Books']", "['Fiction', 'Horror', 'Fantasy', 'Contemporary', 'Literary Fiction', 'Novels', 'Literature']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Audiobook', 'Epic']", "['Biography', 'Nonfiction', 'Psychology', 'Science', 'Mathematics', 'History', 'Biography Memoir']", "['Fantasy', 'Romance', 'Historical Fiction', 'Fiction', 'Historical', 'Magic', 'Historical Fantasy']", "['Fantasy', 'Romance', 'Historical Fiction', 'Historical Fantasy', 'Historical', 'Fiction', 'Science Fiction Fantasy']", "['Fantasy', 'Romance', 'Historical Fiction', 'Fiction', 'Historical', 'Magic', 'Adult']", "['Fantasy', 'Romance', 'Fiction', 'Historical Fiction', 'Young Adult', 'Fairy Tales', 'Historical']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Retellings', 'Fiction', 'Historical Fiction']", "['Fantasy', 'Historical Fiction', 'Romance', 'Fiction', 'Historical Fantasy', 'Historical', 'Science Fiction Fantasy']", "['Nonfiction', 'Psychology', 'Mental Health', 'Memoir', 'Science', 'Self Help', 'Health']", "['Fantasy', 'Romance', 'Fairy Tales', 'Fiction', 'Dragons', 'Magic', 'Science Fiction Fantasy']", "['Fantasy', 'Romance', 'Fairy Tales', 'Fiction', 'Magic', 'Science Fiction Fantasy', 'Retellings']", "['Fantasy', 'Fiction', 'Young Adult', 'High Fantasy', 'Magic', 'Science Fiction Fantasy', 'Adventure']", "['Fantasy', 'Fairy Tales', 'Romance', 'Fiction', 'Historical Fiction', 'Magic', 'Historical']", "['Fantasy', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Young Adult', 'Adult']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Young Adult', 'Magic', 'High Fantasy', 'Epic Fantasy']", "['Fiction', 'Japanese Literature', 'Romance', 'Literature', 'Novels', 'Nobel Prize', 'Asian Literature']", "['Fiction', 'Japan', 'Japanese Literature', 'Classics', 'Literature', 'Romance', 'Asia']", "['Fiction', 'Short Stories', 'Classics', 'India', 'Indian Literature', 'Literature', 'Asia']", "['Psychology', 'Philosophy', 'Nonfiction', 'Self Help', 'Love', 'Relationships', 'Sociology']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction', 'Dystopia', 'Classics']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Historical', 'Magic', 'Science Fiction Fantasy', 'Alternate History']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Autobiography', 'Coming Of Age', 'Book Club']", "['Nonfiction', 'Essays', 'Nature', 'Environment', 'Memoir', 'Short Stories', 'Science']", "['Fiction', 'Nature', 'Contemporary', 'Literary Fiction', 'Novels', 'Adult', 'Adult Fiction']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Adult Fiction', 'Novels', 'Adult', 'Literature']", "['Historical Fiction', 'Fiction', 'Australia', 'Historical', 'Adventure', 'Travel', 'Tasmania']", "['Fiction', 'Historical Fiction', 'Classics', 'Scandinavian Literature', 'Nobel Prize', 'Literature', 'Literary Fiction']", "['Fiction', 'Canada', 'Historical Fiction', 'Canadian Literature', 'Literary Fiction', 'Literature', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Classics', 'Literary Fiction', 'Novels', 'American', 'Literature']", "['Short Stories', 'Fiction', 'Canada', 'Literature', 'Classics', 'Canadian Literature', 'Nobel Prize']", "['Short Stories', 'Fiction', 'Canada', 'Literary Fiction', 'Contemporary', 'Literature', 'Nobel Prize']", "['Fiction', 'Short Stories', 'Canada', 'Classics', 'Canadian Literature', 'Novels', 'Feminism']", "['Fiction', 'Japan', 'Japanese Literature', 'Contemporary', 'Horror', 'Asia', 'Literature']", "['Horror', 'Fiction', 'Japanese Literature', 'Japan', 'Thriller', 'Crime', 'Asia']", "['Fiction', 'Japan', 'Japanese Literature', 'Horror', 'Contemporary', 'Novels', 'Asian Literature']", "['Fiction', 'Coming Of Age', 'Contemporary', 'Literary Fiction', 'Young Adult', 'British Literature', 'Novels']", "['Music', 'Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Biography Memoir', 'History']", "['Picture Books', 'Childrens', 'Animals', 'Christmas', 'Photography', 'Nature', 'Fiction']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Classics', 'Historical', 'Novels', 'Cultural']", "['Fiction', 'Classics', 'Magical Realism', 'Young Adult', 'Historical Fiction', 'School', 'Banned Books']", "['Fiction', 'Short Stories', 'Philosophy', 'Science Fiction', 'Historical Fiction', 'Fantasy', 'Physics']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Paranormal', 'Paranormal Romance', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Werewolves', 'Adult']", "['Fiction', 'Literary Fiction', 'Classics', 'Novels', 'Literature', 'Architecture', 'Historical Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Werewolves', 'Vampires', 'Fiction', 'Shapeshifters']", "['Short Stories', 'Classics', 'Fiction', 'Literature', 'American', 'Humor', 'Adult Fiction']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Horror', 'Science Fiction']", "['Fiction', 'Thriller', 'Mystery', 'Romance', 'Suspense', 'Crime', 'Mystery Thriller']", "['Young Adult', 'Fantasy', 'Fiction', 'Magical Realism', 'Romance', 'Urban Fantasy', 'Queer']", "['Young Adult', 'Fiction', 'Fantasy', 'Magical Realism', 'Romance', 'Teen', 'Urban Fantasy']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Historical', 'Middle Grade']", "['Music', 'Nonfiction', 'History', 'Punk', 'Biography', 'Art', 'Pop Culture']", "['Fiction', 'Historical Fiction', 'China', 'Classics', 'Asia', 'Historical', 'Literature']", "['Fiction', 'France', 'French Literature', 'Classics', 'Literature', '19th Century', 'Novels']", "['Classics', 'Fiction', 'France', 'French Literature', 'Literature', '19th Century', 'Historical Fiction']", "['Fantasy', 'Classics', 'Fiction', 'Fairy Tales', 'High Fantasy', 'Romance', 'Science Fiction Fantasy']", "['Classics', 'Fiction', 'Plays', 'Poetry', 'German Literature', 'Drama', 'Literature']", "['Nonfiction', 'Religion', 'Science', 'Philosophy', 'Atheism', 'Psychology', 'Spirituality']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Adult Fiction', 'Adult', 'Humor']", "['Science Fiction', 'Fiction', 'Dystopia', 'Classics', 'Science Fiction Fantasy', 'Novels', 'Cyberpunk']", "['Fiction', 'Magical Realism', 'Classics', 'India', 'Historical Fiction', 'Fantasy', 'Literature']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Crime', 'Mystery Thriller', 'Action']", "['Fiction', 'Mystery', 'Contemporary', 'Chick Lit', 'Amish', 'Adult Fiction', 'Drama']", "['Fiction', 'Contemporary', 'Chick Lit', 'Mystery', 'Drama', 'Adult Fiction', 'Adult']", "['Fiction', 'Contemporary', 'Chick Lit', 'Drama', 'Adult', 'Adult Fiction', 'Young Adult']", "['Fiction', 'Historical Fiction', 'Classics', 'Young Adult', 'Coming Of Age', 'Historical', 'New York']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', 'Literature', 'Novels', 'Drama']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', 'Literature', 'Historical', 'Classic Literature']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Audiobook', 'Classic Literature']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', 'American', '20th Century']", "['Classics', 'Fiction', 'Literature', 'Novels', 'Feminism', 'British Literature', 'Literary Fiction']", "['Nonfiction', 'Writing', 'Classics', 'Biography', 'Memoir', 'Diary', 'Biography Memoir']", "['Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Mystery', 'Adult Fiction', 'Adult']", "['Fiction', 'Romance', 'Contemporary', 'Chick Lit', 'Adult Fiction', 'Literary Fiction', 'Novels']", "['Fiction', 'Contemporary', 'Chick Lit', 'Adult Fiction', 'Adult', 'Romance', 'Novels']", "['Fiction', 'Magical Realism', 'Fantasy', 'Novels', 'Literary Fiction', 'Coming Of Age', 'Young Adult']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Mystery', 'Historical', 'Thriller', 'France']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Novels', 'Space Opera', 'Science Fiction Fantasy']", "['Horror', 'Fiction', 'Fantasy', 'Mystery', 'Thriller', 'Paranormal', 'Supernatural']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Mystery', 'Paranormal', 'Supernatural']", "['Spirituality', 'Nonfiction', 'Religion', 'Philosophy', 'Self Help', 'Inspirational', 'Personal Development']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'LGBT', 'Queer', 'Historical', 'Fantasy']", "['Fiction', 'Fantasy', 'Magical Realism', 'Historical Fiction', 'Queer', 'LGBT', 'Novels']", "['Fiction', 'Queer', 'LGBT', 'Contemporary', 'Literary Fiction', 'Magical Realism', 'Historical Fiction']", "['Fiction', 'Queer', 'LGBT', 'Romance', 'Contemporary', 'Literary Fiction', 'Literature']", "['Fiction', 'LGBT', 'Queer', 'Classics', 'Contemporary', 'Religion', 'Lesbian']", "['Fiction', 'Historical Fiction', 'France', 'Historical', 'Food', 'World War II', 'War']", "['Fiction', 'Magical Realism', 'France', 'Contemporary', 'Romance', 'Fantasy', 'Novels']", "['Fiction', 'Mystery', 'Thriller', 'Contemporary', 'Mystery Thriller', 'Crime', 'Suspense']", "['Fiction', 'Mystery', 'Thriller', 'Suspense', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Crime', 'Action']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Fantasy', 'Short Stories', 'Fiction', 'Historical Fiction', 'Historical', 'Magic', 'Fairy Tales']", "['Memoir', 'Nonfiction', 'Humor', 'Biography', 'Biography Memoir', 'Autobiography', 'Book Club']", "['Fantasy', 'Fiction', 'Historical Fiction', 'China', 'Humor', 'Historical', 'Mystery']", "['Graphic Novels', 'Comics', 'Nonfiction', 'History', 'Biography', 'Memoir', 'Historical']", "['Graphic Novels', 'Comics', 'History', 'Nonfiction', 'Memoir', 'Holocaust', 'Biography']", "['Graphic Novels', 'Comics', 'Nonfiction', 'History', 'Memoir', 'Holocaust', 'Biography']", "['Nonfiction', 'Politics', 'Essays', 'Journalism', 'History', 'Humor', 'Sociology']", "['Fantasy', 'Fiction', 'Adventure', 'High Fantasy', 'Science Fiction Fantasy', 'Epic Fantasy', 'Audiobook']", "['Urban Fantasy', 'Vampires', 'Fantasy', 'Paranormal', 'Horror', 'Romance', 'Paranormal Romance']", "['Horror', 'Fiction', 'LGBT', 'Thriller', 'Queer', 'Crime', 'Dark']", "['Fantasy', 'Humor', 'Fiction', 'Comedy', 'Science Fiction Fantasy', 'Adventure', 'Science Fiction']", "['Historical Fiction', 'Fiction', 'Historical', '19th Century', 'Audiobook', 'Book Club', 'Literary Fiction']", "['Fantasy', 'Fiction', 'Humor', 'Science Fiction Fantasy', 'Young Adult', 'Magic', 'Science Fiction']", "['Fantasy', 'Fiction', 'Humor', 'Science Fiction Fantasy', 'Dragons', 'Young Adult', 'Magic']", "['Fantasy', 'Fiction', 'Humor', 'Science Fiction Fantasy', 'Magic', 'Young Adult', 'Science Fiction']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Humor', 'Magic', 'Adventure', 'Young Adult']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Adventure', 'Science Fiction']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Magic', 'Adventure', 'Humor', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Adventure', 'Magic']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Adventure', 'Young Adult']", "['Fiction', 'Polish Literature', 'Classics', 'School', 'Poland', 'Literature', 'Novels']", "['Fiction', 'Polish Literature', 'Poland', 'Literature', 'Mystery', 'Novels', 'Classics']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Historical', 'Medieval']", "['Classics', 'Fiction', 'Literature', 'Historical Fiction', 'American', '19th Century', 'School']", "['Poetry', 'Classics', 'Fiction', 'Nature', 'African American Literature', '20th Century', 'Adult']", "['Fiction', 'Classics', 'Historical Fiction', 'African American', 'Race', 'Literature', 'Novels']", "['Classics', 'Plays', 'Fiction', 'Drama', 'France', 'Romance', 'Theatre']", "['Classics', 'Poetry', 'Fiction', 'Literature', 'Religion', 'Fantasy', 'School']", "['True Crime', 'Nonfiction', 'Crime', 'Audiobook', 'Biography', 'Memoir', 'Mystery']", "['Fiction', 'Contemporary', 'Mystery', 'Drama', 'Adult Fiction', 'Abuse', 'Adult']", "['Travel', 'Nonfiction', 'Adventure', 'Memoir', 'Asia', 'Nature', 'Anthropology']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Science Fiction', 'Fantasy']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Mystery Thriller', 'Noir', 'Audiobook']", "['Fiction', 'Philosophy', 'Classics', 'France', 'French Literature', 'Literature', 'Novels']", "['Plays', 'Classics', 'Philosophy', 'Fiction', 'Drama', 'France', 'Theatre']", "['Comics', 'Graphic Novels', 'Fantasy', 'Fiction', 'Marvel', 'Historical Fiction', 'Graphic Novels Comics']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Historical Fiction', 'Marriage', 'Novels', 'Adult Fiction']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Espionage', 'Action', 'Adventure']", "['Childrens', 'Fiction', 'Humor', 'Middle Grade', 'Young Adult', 'Fantasy', 'Short Stories']", "['Fiction', 'Humor', 'Audiobook', 'Contemporary', 'Travel', 'Wine', 'Media Tie In']", "['Fiction', 'Historical Fiction', 'Southern', 'Adult Fiction', 'Book Club', 'Novels', 'Adult']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', '19th Century', 'Mystery', 'Adult']", "['Fiction', 'Historical Fiction', 'Canada', 'War', 'Holocaust', 'Historical', 'Literary Fiction']", "['Science', 'Physics', 'Nonfiction', 'Classics', 'Philosophy', 'Mathematics', 'Popular Science']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Historical Fiction', 'Retellings', 'Adult', 'Historical']", "['Fiction', 'Thriller', 'Science Fiction', 'Mystery', 'Suspense', 'Mystery Thriller', 'Adventure']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Crime', 'Mystery Thriller', 'Historical Mystery']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Adult Fiction', 'Audiobook']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Contemporary Romance', 'Adult Fiction']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Classics', 'Adult Fiction']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Contemporary', 'Novels', 'American', 'The United States Of America']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'Historical', 'Adult Fiction', 'Literature']", "['Fiction', 'Historical Fiction', 'Historical', 'Novels', 'Literary Fiction', 'American', 'Literature']", "['Poetry', 'Fiction', 'Classics', 'Literature', 'Religion', 'Fantasy', 'Philosophy']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Audiobook', 'Novels', 'Magic', 'Book Club']", "['Fiction', 'Contemporary', 'Chick Lit', 'Book Club', 'Romance', 'Adult Fiction', 'Adult']", "['Sports', 'Nonfiction', 'Baseball', 'Humor', 'Pop Culture', 'Essays', 'Biography']", "['Fiction', 'Classics', 'Historical Fiction', 'British Literature', 'Literature', 'Novels', '20th Century']", "['Fiction', 'Classics', 'Historical Fiction', 'British Literature', 'Literature', 'Literary Fiction', '20th Century']", "['Biography', 'History', 'Nonfiction', 'Business', 'American History', 'Biography Memoir', 'Audiobook']", "['History', 'Biography', 'Nonfiction', 'American History', 'Politics', 'Audiobook', 'Historical']", "['Fiction', 'Science Fiction', 'Novels', 'Feminism', 'Literature', 'LGBT', 'Queer']", "['Young Adult', 'Contemporary', 'Sports', 'Romance', 'Realistic Fiction', 'Fiction', 'Teen']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Tudor Period', 'British Literature', 'Adult']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'British Literature', 'Historical Romance', 'Adult']", "['Fiction', 'Fantasy', 'Humor', 'Young Adult', 'Dystopia', 'Contemporary', 'Adult']", "['Nonfiction', 'Science', 'History', 'Medicine', 'Medical', 'Horror', 'Thriller']", "['Fiction', 'India', 'Contemporary', 'Book Club', 'Indian Literature', 'Novels', 'Asia']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Thriller', 'British Literature', 'Detective']", "['Fiction', 'LGBT', 'Queer', 'Humor', 'Gay', 'Classics', 'Contemporary']", "['Fiction', 'Science Fiction', 'Mystery', 'African American', 'Literary Fiction', 'Novels', 'Fantasy']", "['Fiction', 'Historical Fiction', 'African American', 'Literary Fiction', 'Novels', 'Literature', 'Race']", "['Nonfiction', 'Race', 'Education', 'Social Justice', 'Anti Racist', 'Psychology', 'Sociology']", "['Fiction', 'Classics', 'Fantasy', 'Mystery', 'Literature', 'Novels', 'Literary Fiction']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'Detective', 'Audiobook']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Classics', 'Audiobook']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Detective', 'Mystery Thriller', 'Audiobook']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Mystery Thriller', 'Thriller', 'Audiobook']", "['Mystery', 'Crime', 'Plays', 'Fiction', 'Short Stories', 'Mystery Thriller', 'British Literature']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Mystery Thriller', 'Detective', 'Thriller']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'Thriller', 'Classics']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Mystery Thriller', 'Detective', 'Audiobook']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Audiobook', 'Detective', 'Classics']", "['Mystery', 'Fiction', 'Christmas', 'Crime', 'Classics', 'Mystery Thriller', 'Detective']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'Audiobook', 'Murder Mystery']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'Thriller', 'Audiobook']", "['Fiction', 'Humor', 'Classics', 'Short Stories', 'Comedy', 'Audiobook', 'British Literature']", "['Thriller', 'Fiction', 'Horror', 'Mystery', 'Suspense', 'Mystery Thriller', 'Crime']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Suspense', 'Mystery', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Fantasy', 'Mystery Thriller']", "['Fiction', 'Chick Lit', 'Humor', 'Adult Fiction', 'Book Club', 'Womens Fiction', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Magical Realism', 'Novels', 'Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Travel', 'History', 'Spanish Literature', 'Biography Memoir']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Spanish Literature', 'Novels', 'Romance', 'Literature']", "['Fantasy', 'Fiction', 'Mythology', 'Classics', 'Short Stories', 'Literature', 'Reference']", "['Fiction', 'Irish Literature', 'Ireland', 'Humor', 'Novels', 'Comedy', 'Literary Fiction']", "['History', 'Politics', 'Nonfiction', 'Philosophy', 'Classics', 'American History', 'Political Science']", "['Fiction', 'Classics', 'Philosophy', 'Literature', 'German Literature', 'Novels', 'Science Fiction']", "['Fiction', 'German Literature', 'Classics', 'Literature', 'Romance', 'Germany', 'Novels']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Time Travel', 'Mystery', 'Adventure']", "['Science Fiction', 'Fiction', 'Short Stories', 'Science Fiction Fantasy', 'Classics', 'Fantasy', 'Anthologies']", "['Science Fiction', 'Fiction', 'Young Adult', 'Science Fiction Fantasy', 'Space Opera', 'Classics', 'Fantasy']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook', 'Politics']", "['Fiction', 'Mystery', 'Historical Fiction', 'Crime', 'Literary Fiction', 'Novels', 'Historical']", "['Fiction', 'LGBT', 'Novels', 'Contemporary', 'Coming Of Age', 'Queer', 'Literary Fiction']", "['Fiction', 'Mystery', 'Science Fiction', 'Alternate History', 'Crime', 'Jewish', 'Fantasy']", "['Fantasy', 'Fiction', 'Young Adult', 'Baseball', 'Sports', 'Childrens', 'Adventure']", "['Fiction', 'Science Fiction', 'Mystery', 'Noir', 'Crime', 'Fantasy', 'Dystopia']", "['Fiction', 'Southern', 'Historical Fiction', 'Contemporary', 'Drama', 'Novels', 'Literature']", "['Fiction', 'Classics', 'Romance', 'Southern', 'Contemporary', 'Literary Fiction', 'Literature']", "['Fiction', 'Science Fiction', 'Thriller', 'Classics', 'Horror', 'Adventure', 'Fantasy']", "['Fantasy', 'Short Stories', 'Fiction', 'Horror', 'Science Fiction', 'Poetry', 'Anthologies']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Humor', 'Fairies', 'Science Fiction Fantasy', 'New York']", "['Fantasy', 'Short Stories', 'Fiction', 'Horror', 'Anthologies', 'Science Fiction', 'Urban Fantasy']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'Urban Fantasy']", "['Fantasy', 'Fiction', 'Young Adult', 'Adventure', 'Audiobook', 'Magic', 'Science Fiction Fantasy']", "['Fiction', 'Classics', 'LGBT', 'Queer', 'Gay', 'Literary Fiction', 'Novels']", "['Classics', 'Fiction', 'Literature', 'American', 'Novels', '20th Century', 'Historical Fiction']", "['Philosophy', 'Nonfiction', 'Nature', 'Classics', 'Memoir', 'Literature', 'Biography']", "['Science Fiction', 'Fiction', 'Religion', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Aliens']", "['Historical Fiction', 'Fiction', 'Africa', 'Adventure', 'Historical', 'Thriller', 'South Africa']", "['Historical Fiction', 'Fiction', 'Adventure', 'Africa', 'Historical', 'Thriller', 'Pirates']", "['Alternate History', 'Science Fiction', 'Fiction', 'Time Travel', 'Fantasy', 'Historical Fiction', 'Historical']", "['Classics', 'Fiction', 'Literature', 'Historical Fiction', 'Race', 'African American', 'Novels']", "['Comics', 'Graphic Novels', 'Dc Comics', 'Fiction', 'Comic Book', 'Superheroes', 'Graphic Novels Comics']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Chick Lit', 'Realistic Fiction', 'Teen']", "['Fiction', 'Philosophy', 'Spirituality', 'Environment', 'Novels', 'Animals', 'Literature']", "['Fantasy', 'Horror', 'Fiction', 'Young Adult', 'Middle Grade', 'Childrens', 'Paranormal']", "['Fiction', 'Classics', 'Russia', 'Historical Fiction', 'Russian Literature', 'Literature', 'Novels']", "['Fiction', 'Classics', 'African American', 'Race', 'Literature', 'Religion', 'Novels']", "['History', 'Nonfiction', 'Biography', 'France', 'Historical', '17th Century', 'European History']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'School', 'Historical', 'American']", "['History', 'Biography', 'Nonfiction', 'France', 'Historical', 'Biography Memoir', 'French Revolution']", "['Young Adult', 'Fiction', 'Classics', 'Realistic Fiction', 'Banned Books', 'School', 'Teen']", "['Fiction', 'Classics', 'Literary Fiction', 'Historical Fiction', 'Novels', 'Contemporary', 'School']", "['Classics', 'Science Fiction', 'Fiction', 'Horror', 'Fantasy', 'Audiobook', 'Literature']", "['Fiction', 'Chick Lit', 'Knitting', 'Audiobook', 'Contemporary', 'Romance', 'Adult']", "['Science Fiction', 'Fiction', 'Classics', 'Military Fiction', 'War', 'Science Fiction Fantasy', 'Space Opera']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Horror', 'Mystery Thriller', 'Suspense']", "['Horror', 'Fiction', 'Fantasy', 'Classics', 'Vampires', 'Gothic', 'Paranormal']", "['Classics', 'Plays', 'Fiction', 'Historical Fiction', 'School', 'Read For School', 'Historical']", "['Christian Fiction', 'Fiction', 'Christian', 'Fantasy', 'Thriller', 'Religion', 'Spirituality']", "['Fiction', 'Fantasy', 'Classics', 'Mythology', 'Christian', 'Religion', 'Christianity']", "['Science', 'Nonfiction', 'Philosophy', 'Religion', 'History', 'Skepticism', 'Atheism']", "['Science', 'Physics', 'Nonfiction', 'Astronomy', 'Space', 'History', 'Popular Science']", "['Childrens', 'Fiction', 'Classics', 'Horses', 'Animals', 'Young Adult', 'Historical Fiction']", "['Childrens', 'Adventure', 'Fiction', 'Mystery', 'Classics', 'Young Adult', 'Middle Grade']", "['Childrens', 'Fiction', 'Adventure', 'Mystery', 'Classics', 'Middle Grade', 'Young Adult']", "['Fantasy', 'Childrens', 'Fiction', 'Classics', 'Young Adult', 'Adventure', 'Magic']", "['Fantasy', 'Childrens', 'Classics', 'Fiction', 'Adventure', 'Middle Grade', 'Magic']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Romance', 'Childrens', 'Historical']", "['Music', 'History', 'Nonfiction', 'Race', 'African American', 'Jazz', 'Art']", "['Nonfiction', 'Feminism', 'Philosophy', 'Self Help', 'Essays', 'Love', 'Psychology']", "['Fiction', 'Mythology', 'Historical Fiction', 'Fantasy', 'Greek Mythology', 'Retellings', 'Feminism']", "['Fiction', 'Canada', 'Contemporary', 'Literary Fiction', 'Feminism', 'Literature', 'Novels']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Mystery', 'Paranormal', 'Magic', 'Audiobook']", "['Classics', 'Fiction', 'Literature', 'Philosophy', 'Novels', 'German Literature', 'Czech Literature']", "['Classics', 'Fiction', 'Philosophy', 'Literature', 'German Literature', 'Novels', 'Dystopia']", "['Plays', 'Classics', 'Fiction', 'Drama', 'Theatre', 'Literature', 'Philosophy']", "['Fiction', 'Short Stories', 'Classics', 'Magical Realism', 'Literature', 'Fantasy', 'Philosophy']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'American', 'Novels', 'New York']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Audiobook', 'War', 'Military Fiction']", "['History', 'Nonfiction', 'Adventure', 'Survival', 'Historical', 'American History', 'Audiobook']", "['Fiction', 'Japan', 'Japanese Literature', 'Romance', 'Contemporary', 'Magical Realism', 'Novels']", "['Fiction', 'Japan', 'Japanese Literature', 'Magical Realism', 'Fantasy', 'Contemporary', 'Novels']", "['Nonfiction', 'Japan', 'History', 'Japanese Literature', 'True Crime', 'Asia', 'Cults']", "['Fiction', 'Japan', 'Magical Realism', 'Japanese Literature', 'Contemporary', 'Fantasy', 'Novels']", "['Horror', 'Fiction', 'Japan', 'Japanese Literature', 'Thriller', 'Crime', 'Mystery']", "['Fiction', 'Mystery', 'Historical Fiction', 'Literature', 'Classics', 'Italian Literature', 'Thriller']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Singularity', 'Speculative Fiction', 'Space Opera', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Science Fiction Fantasy', 'Dystopia', 'Speculative Fiction', 'Thriller']", "['Classics', 'Fiction', 'Russia', 'Philosophy', 'Russian Literature', 'Literature', 'Novels']", "['Classics', 'Fiction', 'Russia', 'Literature', 'Russian Literature', 'Novels', 'Historical']", "['Fiction', 'Short Stories', 'Classics', 'Literature', 'Fantasy', 'Magical Realism', 'Philosophy']", "['Science', 'Nonfiction', 'Biology', 'History', 'Popular Science', 'Anthropology', 'Natural History']", "['History', 'Mathematics', 'Technology', 'Popular Science', 'Computers', 'Programming', 'Microhistory']", "['Fiction', 'Humor', 'Classics', 'Comedy', 'British Literature', 'Audiobook', 'Novels']", "['Fiction', 'Humor', 'Short Stories', 'Classics', 'Comedy', 'British Literature', 'Anthologies']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Science Fiction Fantasy', 'Science Fiction', 'Classics']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Science Fiction', 'Childrens', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Childrens', 'Classics', 'Middle Grade']", "['Classics', 'Plays', 'Fiction', 'School', 'Drama', 'Read For School', 'Literature']", "['Nonfiction', 'Technology', 'Biography', 'Computers', 'Crime', 'Hackers', 'History']", "['Japan', 'Classics', 'Nonfiction', 'History', 'Japanese Literature', 'Poetry', 'Memoir']", "['Science Fiction', 'Fiction', 'Short Stories', 'Humor', 'Polish Literature', 'Fantasy', 'Classics']", "['Philosophy', 'Theology', 'Religion', 'Christian', 'Catholic', 'Christianity', 'Nonfiction']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Novels', '19th Century', 'Classic Literature']", "['Classics', 'Fiction', 'France', 'French Literature', 'Literature', 'Humor', 'Fantasy']", "['Philosophy', 'Nonfiction', 'Classics', 'German Literature', 'Metaphysics', 'Science', '18th Century']", "['Philosophy', 'Nonfiction', 'Classics', 'Religion', 'German Literature', '19th Century', 'Germany']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Classics', 'Audiobook', 'Mystery']", "['Fiction', 'Classics', 'Science Fiction', 'Young Adult', 'Psychology', 'School', 'Literature']", "['Classics', 'Fiction', 'Russia', 'Russian Literature', 'Literature', 'Philosophy', 'Short Stories']", "['Fantasy', 'Young Adult', 'Fiction', 'Arthurian', 'Magic', 'Middle Grade', 'Adventure']", "['Mystery', 'Fiction', 'Historical Fiction', 'Thriller', 'Historical', 'Crime', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Romance', 'Classics', 'Historical', 'Literature', 'War']", "['Fiction', 'Historical Fiction', 'Historical', 'Civil War', 'African American', 'Romance', 'War']", "['Classics', 'Philosophy', 'Fiction', 'Politics', 'Literature', 'Dystopia', 'School']", "['Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Science Fiction Fantasy', 'Speculative Fiction', 'Feminism']", "['Fiction', 'Mystery', 'Thriller', 'Historical Fiction', 'Mystery Thriller', 'Suspense', 'Books About Books']", "['Fiction', 'Historical Fiction', 'Classics', 'War', 'Horror', 'Literature', 'Holocaust']", "['Horror', 'Fiction', 'Science Fiction', 'Gothic', 'Fantasy', 'School', 'Literature']", "['Classics', 'Nonfiction', 'Feminism', 'Essays', 'Philosophy', 'Writing', 'Literature']", "['Classics', 'Plays', 'Fiction', 'Fantasy', 'School', 'Theatre', 'Literature']", "['Plays', 'Classics', 'Fiction', 'Drama', 'Theatre', 'Humor', 'School']", "['Fiction', 'Historical Fiction', 'Young Adult', 'Classics', 'Childrens', 'School', 'Adventure']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Romance', 'World War II', 'Historical', 'Classics']", "['Nonfiction', 'Adventure', 'Mountaineering', 'Biography', 'Memoir', 'Travel', 'Survival']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Fantasy', 'Cultural', 'Space']", "['Fiction', 'India', 'Contemporary', 'Literary Fiction', 'Bangladesh', 'British Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Africa', 'Nigeria', 'War', 'Historical', 'African Literature']", "['Erotica', 'Fiction', 'Fantasy', 'Romance', 'BDSM', 'Adult', 'Fairy Tales']", "['Historical Fiction', 'Fiction', 'Classics', 'Historical', 'Literature', 'Novels', 'Italy']", "['Classics', 'Fiction', 'Literature', 'France', 'Philosophy', 'French Literature', 'Novels']", "['Classics', 'Fiction', 'France', 'French Literature', 'Literature', 'Novels', '20th Century']", "['Fiction', 'Classics', 'France', 'Literature', 'French Literature', 'Novels', '20th Century']", "['Fiction', 'Classics', 'Novels', 'Contemporary', 'Literature', 'British Literature', 'Literary Fiction']", "['Fiction', 'Contemporary', 'Thriller', 'Novels', 'Mystery', 'British Literature', '20th Century']", "['Classics', 'Fiction', 'Historical Fiction', 'Queer', 'LGBT', 'Fantasy', 'Feminism']", "['Classics', 'Fiction', 'Literature', 'Novels', 'British Literature', 'Historical Fiction', '20th Century']", "['Nonfiction', 'Classics', 'Feminism', 'Essays', 'Philosophy', 'Politics', 'Literature']", "['Fiction', 'Classics', 'Novels', 'Literature', 'Contemporary', 'American', 'Travel']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dark Fantasy', 'High Fantasy', 'Philosophy', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Magic', 'Young Adult']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Arthurian', 'Historical', 'Science Fiction Fantasy', 'Mythology']", "['Nonfiction', 'True Crime', 'Crime', 'History', 'Journalism', 'Mystery', 'Sociology']", "['Fiction', 'Espionage', 'Thriller', 'Mystery', 'Spy Thriller', 'Novels', 'Mystery Thriller']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Spy Thriller', 'Mystery Thriller', 'Crime']", "['Fiction', 'Espionage', 'Thriller', 'Mystery', 'Spy Thriller', 'Suspense', 'Mystery Thriller']", "['Fiction', 'Thriller', 'Mystery', 'Africa', 'Espionage', 'Crime', 'Mystery Thriller']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Mystery Thriller', 'Suspense', 'Spy Thriller']", "['Nonfiction', 'Science', 'Spirituality', 'Philosophy', 'Self Help', 'Metaphysics', 'Personal Development']", "['Young Adult', 'Fiction', 'Mystery', 'Contemporary', 'Realistic Fiction', 'Australia', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Classics', 'Historical', 'War', 'World War II']", "['Philosophy', 'Classics', 'Nonfiction', 'Politics', 'School', 'History', 'Ancient']", "['Philosophy', 'Classics', 'Nonfiction', 'History', 'Political Science', 'Politics', 'Ancient']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', '19th Century', 'Victorian', 'Novels']", "['Classics', 'Fiction', 'Russia', 'Russian Literature', 'Literature', '19th Century', 'Novels']", "['Politics', 'Nonfiction', 'Psychology', 'Philosophy', 'Linguistics', 'Sociology', 'Political Science']", "['Classics', 'Poetry', 'Fiction', 'Literature', 'Religion', 'Italian Literature', 'Fantasy']", "['Poetry', 'Ireland', 'Irish Literature', 'Classics', 'Nobel Prize', 'Literature', '20th Century']", "['Poetry', 'Ireland', 'Classics', 'Irish Literature', 'Fiction', '20th Century', 'Anthologies']", "['Classics', 'Childrens', 'Fiction', 'Middle Grade', 'Young Adult', 'Fantasy', 'Humor']", "['Childrens', 'Fiction', 'Classics', 'Adventure', 'Fantasy', 'Young Adult', 'Middle Grade']", "['Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Sweden', 'Middle Grade', 'Scandinavian Literature']", "['Fantasy', 'Classics', 'Childrens', 'Fiction', 'Swedish Literature', 'Middle Grade', 'Adventure']", "['Fantasy', 'Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Middle Grade', 'Adventure']", "['Childrens', 'Classics', 'Picture Books', 'Fiction', 'Animals', 'Fantasy', 'Short Stories']", "['Classics', 'Childrens', 'Fiction', 'Picture Books', 'Short Stories', 'Fantasy', 'Animals']", "['Childrens', 'Picture Books', 'Classics', 'Fiction', 'Animals', 'Fantasy', 'Short Stories']", "['Classics', 'Poetry', 'Fiction', 'Mythology', 'Literature', 'Fantasy', 'School']", "['Fiction', 'Philosophy', 'France', 'Classics', 'Literature', 'French Literature', 'Humor']", "['History', 'Nonfiction', 'Classics', 'Ancient History', 'Historical', 'Politics', 'World History']", "['Nonfiction', 'Memoir', 'Biography', 'School', 'Psychology', 'Biography Memoir', 'Autobiography']", "['Young Adult', 'Romance', 'Chick Lit', 'Fiction', 'Contemporary', 'Teen', 'Childrens']", "['Young Adult', 'Romance', 'Chick Lit', 'Contemporary', 'Fiction', 'Teen', 'Realistic Fiction']", "['Young Adult', 'Mystery', 'Fiction', 'Childrens', 'Realistic Fiction', 'Teen', 'Middle Grade']", "['Fiction', 'Dystopia', 'Science Fiction', 'American', 'Post Apocalyptic', 'Novels', 'Literature']", "['Fiction', 'American', 'Literature', 'Novels', 'The United States Of America', 'Contemporary', 'Literary Fiction']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Classics', 'Mystery Thriller', 'Novels']", "['Nonfiction', 'Memoir', 'Travel', 'Biography', 'Romance', 'Chick Lit', 'Spirituality']", "['Psychology', 'Fiction', 'Philosophy', 'Novels', 'Literature', 'Contemporary', 'American']", "['Fiction', 'Classics', 'Philosophy', 'France', 'Feminism', 'French Literature', 'Novels']", "['Fiction', 'Novels', 'France', 'Classics', 'Feminism', 'Roman', 'French Literature']", "['Fiction', 'Baseball', 'Historical Fiction', 'Sports', 'Novels', 'Literary Fiction', 'Family']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Fantasy', 'Adventure', 'Young Adult']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Crime', 'Suspense', 'War']", "['Horror', 'Fantasy', 'Fiction', 'Thriller', 'Mystery', 'Magic', 'Supernatural']", "['Horror', 'Fiction', 'Paranormal', 'Mystery', 'Ghosts', 'Thriller', 'Fantasy']", "['Short Stories', 'Fiction', 'Literary Fiction', 'Contemporary', 'American', 'Literature', 'The United States Of America']", "['Fiction', 'India', 'Historical Fiction', 'Canada', 'Indian Literature', 'Novels', 'Literary Fiction']", "['Fiction', 'India', 'Indian Literature', 'Canada', 'Asia', 'Contemporary', 'Literature']", "['Fiction', 'Thriller', 'Action', 'Military Fiction', 'Espionage', 'Mystery', 'Suspense']", "['Fiction', 'Thriller', 'Military Fiction', 'Espionage', 'Action', 'Suspense', 'Adventure']", "['Fiction', 'Thriller', 'Action', 'Espionage', 'Military Fiction', 'Adventure', 'Mystery']", "['Fiction', 'Thriller', 'Espionage', 'Military Fiction', 'Action', 'Suspense', 'Adventure']", "['Fiction', 'Thriller', 'Military Fiction', 'Mystery', 'Suspense', 'Adventure', 'Espionage']", "['Fiction', 'Thriller', 'Espionage', 'Action', 'Adventure', 'Military Fiction', 'Mystery']", "['Fiction', 'Mystery', 'Novels', 'Literary Fiction', 'Literature', 'Contemporary', 'Psychology']", "['Biography', 'History', 'Nonfiction', 'Politics', 'Biography Memoir', 'War', 'British Literature']", "['Fantasy', 'Fiction', 'Young Adult', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy', 'Adventure']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Adventure', 'Adult']", "['Poetry', 'Childrens', 'Classics', 'Picture Books', 'Fiction', 'Literature', 'Juvenile']", "['Science Fiction', 'Fiction', 'Young Adult', 'Classics', 'Science Fiction Fantasy', 'Audiobook', 'Adventure']", "['Classics', 'Fiction', 'Historical Fiction', '19th Century', 'Literature', 'Victorian', 'Romance']", "['Classics', 'Fiction', '19th Century', 'Victorian', 'Literature', 'Historical Fiction', 'British Literature']", "['Horror', 'Halloween', 'Fiction', 'Thriller', 'Suspense', 'Adult', 'Media Tie In']", "['Psychology', 'Nonfiction', 'Self Help', 'Philosophy', 'Relationships', 'Personal Development', 'Business']", "['Psychology', 'Fiction', 'Philosophy', 'Historical Fiction', 'Novels', 'Literature', 'American']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Adventure', 'Magic']", "['Fantasy', 'Fiction', 'Sword and Sorcery', 'Pulp', 'Short Stories', 'Adventure', 'Classics']", "['Feminism', 'Nonfiction', 'Philosophy', 'France', 'Classics', 'Essays', 'Womens']", "['Young Adult', 'Fiction', 'Adventure', 'Thriller', 'Realistic Fiction', 'Horror', 'Teen']", "['Urban Fantasy', 'Horror', 'Fantasy', 'Vampires', 'Mystery', 'Fiction', 'Paranormal']", "['Fiction', 'Crime', 'Mystery', 'Thriller', 'Noir', 'Mystery Thriller', 'Suspense']", "['Graphic Novels', 'Fantasy', 'Fiction', 'Fairy Tales', 'Graphic Novels Comics', 'Fables', 'Comic Book']", "['Graphic Novels', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Fairy Tales', 'Comics', 'Fables']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Fairy Tales', 'Mystery']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Science Fiction', 'Paranormal']", "['Business', 'Leadership', 'Nonfiction', 'Management', 'Self Help', 'Personal Development', 'Buisness']", "['Fiction', 'Short Stories', 'Classics', 'Childrens', 'Fantasy', 'Literature', 'Mythology']", "['Historical Fiction', 'Fiction', 'World War II', 'War', 'Historical', 'Classics', 'Audiobook']", "['Science Fiction', 'Fiction', 'War', 'Space Opera', 'Classics', 'Science Fiction Fantasy', 'Military Fiction']", "['Science Fiction', 'Fiction', 'Hugo Awards', 'War', 'Science Fiction Fantasy', 'Military Fiction', 'Speculative Fiction']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Detective', 'Suspense']", "['Mystery', 'Fiction', 'Thriller', 'Horror', 'Mystery Thriller', 'Suspense', 'Crime']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'Historical Fiction', 'True Crime', 'Thriller']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook']", "['Thriller', 'Mystery', 'Crime', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook']", "['Thriller', 'Mystery', 'Crime', 'Fiction', 'Suspense', 'Mystery Thriller', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Audiobook', 'Adventure']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Suspense', 'Mystery Thriller', 'Horror']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Action', 'Suspense', 'Mystery Thriller']", "['Fantasy', 'Classics', 'Fiction', 'Romance', 'Humor', 'Young Adult', 'Adventure']", "['Nonfiction', 'History', 'True Crime', 'Crime', 'Historical', 'Mystery', 'Audiobook']", "['Fiction', 'Crime', 'Thriller', 'Classics', 'Historical Fiction', 'Mystery', 'Novels']", "['Fiction', 'Crime', 'Thriller', 'Mystery', 'Novels', 'Classics', 'Suspense']", "['Fiction', 'Classics', 'Crime', 'Thriller', 'Historical Fiction', 'Mystery', 'Novels']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Science Fiction', 'Mystery', 'Supernatural']", "['Nonfiction', 'History', 'Politics', 'War', 'Military Fiction', 'Journalism', 'Military History']", "['Nonfiction', 'History', 'Politics', 'Philosophy', 'Theory', 'Sociology', 'Cultural']", "['Short Stories', 'Fiction', 'Magical Realism', 'Classics', 'Spanish Literature', 'Literature', 'Latin American']", "['Young Adult', 'Fiction', 'Chick Lit', 'Contemporary', 'Romance', 'Teen', 'Drama']", "['Science Fiction', 'Cyberpunk', 'Fiction', 'Science Fiction Fantasy', 'Dystopia', 'Novels', 'Fantasy']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Chick Lit', 'Realistic Fiction', 'Teen']", "['Fiction', 'Horror', 'Contemporary', 'Fantasy', 'Novels', 'Thriller', 'American']", "['Fiction', 'Canada', 'Contemporary', 'Coming Of Age', 'Young Adult', 'Novels', 'Canadian Literature']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Romance', 'Middle Grade', 'Childrens']", "['Fiction', 'Novels', 'Literary Fiction', 'New York', 'Contemporary', 'American', 'Adult Fiction']", "['Fiction', 'Horror', 'Contemporary', 'Thriller', 'Mystery', 'Novels', 'American']", "['Fiction', 'Science Fiction', 'Horror', 'Contemporary', 'Novels', 'Time Travel', 'Humor']", "['Fiction', 'Contemporary', 'Thriller', 'Humor', 'Dark', 'Novels', 'Mystery']", "['Fiction', 'Contemporary', 'Thriller', 'Horror', 'Novels', 'Humor', 'Mystery']", "['Fiction', 'Short Stories', 'Canada', 'Contemporary', 'Literature', 'Religion', 'Novels']", "['Fiction', 'Canada', 'Contemporary', 'Novels', 'Literature', 'Literary Fiction', 'Humor']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Mystery', 'Thriller', 'Science Fiction Fantasy', 'Novels']", "['Fiction', 'Science Fiction', 'Cyberpunk', 'Thriller', 'Espionage', 'Science Fiction Fantasy', 'Novels']", "['Science Fiction', 'Cyberpunk', 'Fiction', 'Short Stories', 'Science Fiction Fantasy', 'Dystopia', 'Fantasy']", "['Plays', 'Classics', 'Biography', 'Nonfiction', 'Drama', 'School', 'Theatre']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Classics', 'Dystopia', 'Science Fiction Fantasy', 'Fantasy']", "['Fantasy', 'Picture Books', 'Childrens', 'Fiction', 'Graphic Novels', 'Horror', 'Young Adult']", "['Comics', 'Graphic Novels', 'Science Fiction', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'Animals']", "['Comics', 'Graphic Novels', 'Batman', 'Dc Comics', 'Horror', 'Fiction', 'Graphic Novels Comics']", "['Comics', 'Graphic Novels', 'Science Fiction', 'Fiction', 'Cyberpunk', 'Graphic Novels Comics', 'Comic Book']", "['Comics', 'Graphic Novels', 'Science Fiction', 'Fiction', 'Cyberpunk', 'Comic Book', 'Graphic Novels Comics']", "['Science', 'Nonfiction', 'Physics', 'Astronomy', 'Popular Science', 'Space', 'Philosophy']", "['Science', 'Nonfiction', 'Classics', 'Biology', 'Evolution', 'Philosophy', 'History']", "['Psychology', 'Philosophy', 'Nonfiction', 'Science', 'History', 'Religion', 'Anthropology']", "['Christian', 'Nonfiction', 'Theology', 'Christianity', 'Christian Living', 'Spirituality', 'Faith']", "['Science Fiction', 'Fiction', 'Dystopia', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction', 'American']", "['Science Fiction', 'Fiction', 'Dystopia', 'Novels', 'Science Fiction Fantasy', 'Fantasy', 'American']", "['Science Fiction', 'Fiction', 'Classics', 'Novels', 'Science Fiction Fantasy', 'Mystery', 'Fantasy']", "['Science Fiction', 'Short Stories', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Anthologies', 'Classics']", "['Philosophy', 'Nonfiction', 'Theory', 'Sociology', 'France', 'Academic', 'Politics']", "['Philosophy', 'Nonfiction', 'Psychology', 'Classics', 'France', 'Essays', 'Literature']", "['Young Adult', 'Fiction', 'Coming Of Age', 'Classics', 'Romance', 'Mental Health', 'Realistic Fiction']", "['Philosophy', 'Classics', 'Nonfiction', 'History', 'Biography', 'Politics', 'School']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Adult', 'Adult Fiction', 'British Literature']", "['Fiction', 'Chick Lit', 'Romance', 'Young Adult', 'Contemporary', 'Coming Of Age', 'Adult']", "['Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Speculative Fiction', 'Audiobook']", "['Fiction', 'Magical Realism', 'Contemporary', 'Fantasy', 'Chick Lit', 'Family', 'Audiobook']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Spain', 'Fantasy', 'Jewish']", "['Fantasy', 'Fiction', 'Magical Realism', 'Romance', 'Witches', 'Magic', 'Paranormal']", "['Short Stories', 'Fantasy', 'Literary Fiction', 'Magical Realism', 'Classic Literature', 'Short Story Collection', 'Novels']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Novels', 'Czech Literature', '20th Century']", "['Classics', 'Fantasy', 'Fiction', 'Fairy Tales', 'Short Stories', 'Childrens', 'Mythology']", "['Plays', 'Spanish Literature', 'Drama', 'Fiction', 'School', 'Spain', 'Theatre']", "['Fiction', 'Novels', 'Literary Fiction', '20th Century', 'Family', 'American', 'Historical Fiction']", "['Fiction', 'Literature', 'Novels', 'Music', 'Literary Fiction', 'Contemporary', 'American']", "['Fiction', 'Science Fiction', 'Novels', 'Contemporary', 'American', 'Technology', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Fantasy', 'Holocaust']", "['Fiction', 'Mystery', 'Crime', 'Novels', 'Contemporary', 'Literary Fiction', 'Noir']", "['Essays', 'Nonfiction', 'Humor', 'Philosophy', 'Italian Literature', 'Italy', 'Short Stories']", "['Fiction', 'Philosophy', 'Nature', 'Novels', 'Literature', 'Humor', 'Classics']", "['Chick Lit', 'Mystery', 'Romance', 'Fiction', 'Contemporary', 'Adult', 'Young Adult']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Teen', 'Realistic Fiction']", "['Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Teen', 'Humor']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Contemporary Romance', 'Humor', 'Young Adult']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Ghosts', 'Fiction', 'Supernatural']", "['Young Adult', 'LGBT', 'Romance', 'Fiction', 'Contemporary', 'Queer', 'Gay']", "['Young Adult', 'Romance', 'Contemporary', 'LGBT', 'Fiction', 'Realistic Fiction', 'Queer']", "['Fantasy', 'Fiction', 'Animals', 'Cats', 'Young Adult', 'Science Fiction Fantasy', 'Animal Fiction']", "['Philosophy', 'Nonfiction', 'Self Help', 'Psychology', 'Essays', 'History', 'Audiobook']", "['Travel', 'Nonfiction', 'Philosophy', 'Essays', 'Art', 'Psychology', 'Self Help']", "['Historical Fiction', 'Fiction', 'War', 'Italy', 'Historical', 'World War II', 'African American']", "['Fantasy', 'Dragonlance', 'Fiction', 'Dragons', 'High Fantasy', 'Science Fiction Fantasy', 'Epic Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Audiobook', '18th Century', 'Adult']", "['Mythology', 'Classics', 'Nonfiction', 'History', 'Reference', 'Greek Mythology', 'Religion']", "['Graphic Novels', 'Comics', 'Horror', 'Fiction', 'Historical Fiction', 'Crime', 'Graphic Novels Comics']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'American', 'Love', 'Contemporary']", "['Politics', 'Humor', 'Nonfiction', 'Comedy', 'History', 'Audiobook', '21st Century']", "['Nonfiction', 'Politics', 'Humor', 'Comedy', 'History', 'Audiobook', 'Political Science']", "['Humor', 'Politics', 'Nonfiction', 'Comedy', 'Essays', 'History', 'Political Science']", "['Humor', 'Nonfiction', 'Politics', 'Comedy', 'Self Help', 'Audiobook', 'Essays']", "['Fantasy', 'Poetry', 'Classics', 'Fiction', 'Arthurian', 'Mythology', 'Literature']", "['Manga', 'Comics', 'Graphic Novels', 'Fantasy', 'Science Fiction', 'Fiction', 'Graphic Novels Comics']", "['Manga', 'Graphic Novels', 'Comics', 'Fantasy', 'Science Fiction', 'Fiction', 'Japan']", "['Manga', 'Graphic Novels', 'Fantasy', 'Comics', 'Science Fiction', 'Fiction', 'Comic Book']", "['Comics', 'Graphic Novels', 'Fantasy', 'Fiction', 'Horror', 'Graphic Novels Comics', 'Comic Book']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Horror', 'Graphic Novels Comics', 'Comic Book']", "['Childrens', 'Picture Books', 'Classics', 'Fiction', 'Poetry', 'Fantasy', 'Humor']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Crime', 'Classics', 'Mystery Thriller']", "['Classics', 'Fiction', 'Adventure', 'Fantasy', 'Africa', 'Historical Fiction', 'Literature']", "['Horror', 'Fiction', 'Ghosts', 'Paranormal']", "['Horror', 'Fiction', 'Paranormal', 'Mystery', 'Ghosts', 'Supernatural', 'Thriller']", "['Horror', 'Fiction', 'Fantasy', 'Dark']", "['Fiction', 'Classics', 'Spanish Literature', 'Literature', 'Novels', 'Magical Realism', 'Latin American Literature']", "['Fiction', 'Classics', 'Magical Realism', 'Historical Fiction', 'Romance', 'Literature', 'Latin American']", "['Fiction', 'Classics', 'Magical Realism', 'School', 'Literature', 'Spanish Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Literature', 'Novels', 'Spanish Literature', 'Latin American']", "['Fiction', 'Magical Realism', 'Classics', 'Novels', 'Literature', 'Latin American', 'Latin American Literature']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'British Literature', 'Romanticism', '19th Century']", "['Poetry', 'Classics', 'Philosophy', 'Religion', 'Fiction', 'Art', '18th Century']", "['Classics', 'Poetry', 'Horror', 'Fiction', 'Short Stories', 'Gothic', 'Mystery']", "['Fiction', 'Science Fiction', 'Literature', 'Novels', 'American', 'Classics', '20th Century']", "['Fiction', 'Science Fiction', 'Literature', 'Classics', 'American', 'Novels', 'Queer']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', '20th Century', 'Contemporary']", "['Fiction', 'Classics', 'Queer', 'LGBT', 'Literature', 'American', 'Novels']", "['Fiction', 'Film', 'Plays', 'Media Tie In', 'Contemporary', 'Crime', 'Adult Fiction']", "['Fiction', 'Contemporary', 'Classics', 'Scotland', 'Novels', 'Crime', 'Literature']", "['Fiction', 'Contemporary', 'Horror', 'Scotland', 'Novels', 'Thriller', 'Short Stories']", "['Fiction', 'Crime', 'Contemporary', 'Mystery', 'Novels', 'Thriller', 'Scotland']", "['Fiction', 'German Literature', 'Historical Fiction', 'Germany', 'Classics', 'Literature', 'Nobel Prize']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'High Fantasy', 'Teen']", "['Fiction', 'Classics', 'Feminism', 'Literature', 'Novels', 'Nobel Prize', 'Literary Fiction']", "['Science', 'Nonfiction', 'Philosophy', 'Mathematics', 'Music', 'Psychology', 'Computer Science']", "['Classics', 'Plays', 'Fiction', 'Drama', 'School', 'Literature', 'Theatre']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Middle Grade', 'Childrens', 'Medieval']", "['Classics', 'Fiction', 'Childrens', 'Fantasy', 'Young Adult', 'Middle Grade', 'Animals']", "['Fantasy', 'Fiction', 'Classics', 'Childrens', 'Young Adult', 'Literature', 'Adventure']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Detective', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Magical Realism', 'Novels']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'France', 'Historical', 'Novels']", "['Classics', 'Fiction', 'Childrens', 'Animals', 'Fantasy', 'Middle Grade', 'Young Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Middle Grade', 'Childrens', 'Fairy Tales']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Classics', 'Historical', 'Childrens', 'Middle Grade']", "['Historical Fiction', 'Fiction', 'China', 'Romance', 'Historical', 'Asia', 'Fantasy']", "['Nonfiction', 'Essays', 'Music', 'Pop Culture', 'Humor', 'Journalism', 'Cultural']", "['Fiction', 'Science Fiction', 'Literature', 'Westerns', 'Novels', 'American', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Literature', 'Adventure', 'Maritime', 'Classics']", "['Classics', 'Fiction', 'Adventure', 'Literature', 'Young Adult', 'Childrens', 'Historical Fiction']", "['Classics', 'Fiction', 'Adventure', 'Historical Fiction', 'Young Adult', 'Literature', 'Childrens']", "['Philosophy', 'Nonfiction', 'Self Help', 'Psychology', 'History', 'Spirituality', 'Personal Development']", "['Mythology', 'Classics', 'History', 'Poetry', 'Medieval', 'Nonfiction', 'Literature']", "['Memoir', 'Nonfiction', 'Africa', 'Biography', 'Biography Memoir', 'Autobiography', 'Zimbabwe']", "['Short Stories', 'Fiction', 'Literary Fiction', 'Collections', 'American', 'Literature', 'German Literature']", "['Short Stories', 'Fiction', 'Literature', 'American', 'Literary Fiction', 'Contemporary', 'Short Story Collection']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary', 'Humor']", "['Fiction', 'Historical Fiction', 'Africa', 'Adventure', 'Literature', 'Historical', 'The United States Of America']", "['Fiction', 'Novels', 'Humor', 'Literary Fiction', 'Literature', 'American', 'Contemporary']", "['Fiction', 'Contemporary', 'Book Club', 'School', 'Literary Fiction', 'Novels', 'Literature']", "['Fiction', 'Historical Fiction', 'Literature', 'Contemporary', 'Historical', 'American', 'American Fiction']", "['Short Stories', 'Fiction', 'Comedy', 'Short Story Collection', 'The United States Of America', 'Humor', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Humor', 'Historical', 'Novels', 'Literature', 'Health']", "['Short Stories', 'Fiction', 'Literature', 'Contemporary', 'Literary Fiction', 'American Fiction', 'The United States Of America']", "['Short Stories', 'Fiction', 'Classics', 'Literary Fiction', 'Read For School', 'Adult', '20th Century']", "['Fiction', 'Humor', 'Literature', 'Novels', 'The United States Of America', 'Contemporary', 'German Literature']", "['Young Adult', 'Mystery', 'Fiction', 'Teen', 'Contemporary', 'Realistic Fiction', 'Science Fiction']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Romance', 'Teen']", "['Young Adult', 'Fantasy', 'Paranormal', 'Science Fiction', 'Fiction', 'Urban Fantasy', 'Supernatural']", "['Young Adult', 'Fantasy', 'Paranormal', 'Fiction', 'Science Fiction', 'Urban Fantasy', 'Supernatural']", "['Young Adult', 'Fantasy', 'Paranormal', 'Fiction', 'Urban Fantasy', 'Science Fiction', 'Supernatural']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Adventure', 'Classics']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Classics', 'Adventure']", "['Nonfiction', 'Memoir', 'Biography', 'Spanish Literature', 'Biography Memoir', 'Magical Realism', 'Autobiography']", "['Historical Fiction', 'Fiction', 'Adventure', 'Historical', 'Romance', 'Spanish Literature', 'Classics']", "['Horror', 'Fiction', 'Fantasy', 'Mystery', 'Thriller', 'Contemporary', 'Novels']", "['Humor', 'Fiction', 'Comedy', 'Audiobook', 'Reference', 'Essays', 'Adult']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Comedy', 'Classics', 'Comic Strips']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Graphic Novels Comics', 'Comic Strips', 'Comic Book']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Comic Strips', 'Comedy', 'Comic Book']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Childrens', 'Comedy', 'Graphic Novels Comics']", "['Comics', 'Humor', 'Fiction', 'Graphic Novels', 'Graphic Novels Comics', 'Comic Strips', 'Comedy']", "['Science Fiction', 'Short Stories', 'Fiction', 'Classics', 'Fantasy', 'Horror', 'Science Fiction Fantasy']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'Novels', 'Humor', 'American']", "['Fiction', 'Literature', 'American', 'Novels', 'Classics', 'Literary Fiction', '20th Century']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Adult', 'Young Adult']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Young Adult', 'Adult']", "['Science Fiction', 'Young Adult', 'Fiction', 'Fantasy', 'Middle Grade', 'Aliens', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Childrens', 'Animals', 'Middle Grade', 'Classics', 'Adventure']", "['Fiction', 'Literature', 'Religion', 'Literary Fiction', 'Philosophy', 'Novels', 'Classics']", "['Historical Fiction', 'Fiction', 'Civil War', 'War', 'Historical', 'American Civil War', 'Literature']", "['Fantasy', 'Fiction', 'Mystery', 'Horror', 'Fairy Tales', 'Adult', 'Retellings']", "['Philosophy', 'Nonfiction', 'Classics', 'Religion', 'Psychology', 'Danish', '19th Century']", "['Science Fiction', 'Fiction', 'Fantasy', 'Historical Fiction', 'Science Fiction Fantasy', 'Historical', 'Time Travel']", "['Science Fiction', 'Time Travel', 'Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Science Fiction Fantasy']", "['History', 'Nonfiction', 'Science', 'Biography', 'Geology', 'Geography', 'Maps']", "['Nonfiction', 'History', 'Biography', 'Language', 'Books About Books', 'Historical', 'True Crime']", "['Childrens', 'Fiction', 'Fantasy', 'Classics', 'Middle Grade', 'Humor', 'Chapter Books']", "['Politics', 'Nonfiction', 'Psychology', 'Philosophy', 'History', 'Political Science']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Horror', 'Comic Book']", "['Graphic Novels', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Horror', 'Comics', 'Comic Book']", "['Fiction', 'Novels', 'Humor', 'Contemporary', 'New York', 'Coming Of Age', 'Young Adult']", "['Manga', 'Horror', 'Graphic Novels', 'Comics', 'Fiction', 'Fantasy', 'Japan']", "['Manga', 'Horror', 'Comics', 'Graphic Novels', 'Fiction', 'Fantasy', 'Japan']", "['Graphic Novels', 'Comics', 'Fiction', 'Young Adult', 'Romance', 'Graphic Novels Comics', 'Coming Of Age']", "['Fiction', 'Japan', 'Japanese Literature', 'Literature', 'Nobel Prize', 'Classics', 'Novels']", "['Fiction', 'Historical Fiction', 'Japan', 'Religion', 'Japanese Literature', 'Classics', 'Novels']", "['Fantasy', 'Romance', 'Historical Fiction', 'Fiction', 'Historical Fantasy', 'Historical', 'Young Adult']", "['Science Fiction', 'Fiction', 'Military Fiction', 'Space Opera', 'Military Science Fiction', 'Fantasy', 'Adventure']", "['Short Stories', 'Fiction', 'Canada', 'Contemporary', 'Nobel Prize', 'Literary Fiction', 'Canadian Literature']", "['Historical Fiction', 'Poetry', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Historical']", "['Fiction', 'Historical Fiction', 'Religion', 'Christian', 'Historical', 'Christian Fiction', 'Christianity']", "['Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Christian', 'Christian Fiction', 'Science Fiction Fantasy']", "['Fiction', 'Classics', 'Southern', 'Coming Of Age', 'Literary Fiction', 'Novels', 'Queer']", "['Fiction', 'Japan', 'Thriller', 'Mystery', 'Japanese Literature', 'Horror', 'Crime']", "['Fiction', 'Japan', 'Japanese Literature', 'Horror', 'Mystery', 'Crime', 'Thriller']", "['Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Music', 'Realistic Fiction', 'Teen']", "['Music', 'Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Biography Memoir', 'Rock N Roll']", "['Fiction', 'Philosophy', 'Romance', 'Young Adult', 'Novels', 'Contemporary', 'Scandinavian Literature']", "['Fiction', 'Philosophy', 'Fantasy', 'Young Adult', 'Novels', 'Scandinavian Literature', 'Contemporary']", "['Psychology', 'Philosophy', 'Nonfiction', 'Politics', 'Sociology', 'History', 'Classics']", "['Fiction', 'Humor', 'Contemporary', 'Comedy', 'LGBT', 'Novels', 'Adult']", "['History', 'Nonfiction', 'Ireland', 'Historical', 'Irish Literature', 'Religion', 'European History']", "['Economics', 'Nonfiction', 'Philosophy', 'Classics', 'Politics', 'History', 'Business']", "['Short Stories', 'Fiction', 'Jewish', 'Classics', 'Literature', 'Poland', 'Nobel Prize']", "['Fiction', 'Historical Fiction', 'Classics', 'Jewish', 'Nobel Prize', 'Literature', 'Poland']", "['Fiction', 'Mystery', 'Crime', 'Noir', 'Thriller', 'Classics', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Historical', 'Swedish Literature', 'Medieval', 'Adventure', 'Scandinavian Literature']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Novels', 'Philosophy', 'Germany']", "['Fiction', 'France', 'French Literature', 'Literature', 'Classics', '19th Century', 'Novels']", "['Chick Lit', 'Nonfiction', 'Humor', 'Memoir', 'Biography', 'Comedy', 'Biography Memoir']", "['Romance', 'Fantasy', 'Paranormal', 'Paranormal Romance', 'Vampires', 'Fiction', 'Magic']", "['Romance', 'Romantic Suspense', 'Mystery', 'Fiction', 'Suspense', 'Contemporary', 'Contemporary Romance']", "['Fiction', 'Novels', 'Philosophy', 'Literature', 'Czech Literature', 'France', 'Classics']", "['Fiction', 'Czech Literature', 'Classics', 'Literature', 'Novels', '20th Century', 'Philosophy']", "['Psychology', 'Nonfiction', 'Self Help', 'Business', 'Personal Development', 'Science', 'Leadership']", "['Nonfiction', 'Africa', 'Memoir', 'Classics', 'Biography', 'Travel', 'History']", "['Young Adult', 'Fiction', 'Animals', 'Middle Grade', 'Childrens', 'Fantasy', 'Realistic Fiction']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Novels', 'Drama']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult Fiction', 'Contemporary Romance', 'Drama']", "['Erotica', 'Fantasy', 'Fiction', 'Romance', 'BDSM', 'Adult', 'Fairy Tales']", "['Fiction', 'Africa', 'Historical Fiction', 'Liberia', 'Novels', 'Literary Fiction', 'The United States Of America']", "['Fiction', 'Novels', 'Contemporary', 'Literary Fiction', 'Literature', 'Adult Fiction', 'Adult']", "['Classics', 'Fiction', 'Historical Fiction', 'American', 'Literature', 'Novels', '20th Century']", "['Fantasy', 'Fiction', 'Mystery', 'Humor', 'Books About Books', 'Science Fiction', 'Alternate History']", "['Fantasy', 'Fiction', 'Mystery', 'Humor', 'Science Fiction', 'Books About Books', 'Time Travel']", "['Fantasy', 'Fiction', 'Mystery', 'Humor', 'Books About Books', 'Science Fiction', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Mystery', 'Humor', 'Science Fiction', 'Books About Books', 'Alternate History']", "['Philosophy', 'Classics', 'Religion', 'Theology', 'Nonfiction', 'Biography', 'Christian']", "['Science Fiction', 'Short Stories', 'Fiction', 'Speculative Fiction', 'Science Fiction Fantasy', 'Collections', 'Anthologies']", "['Nonfiction', 'Chick Lit', 'Memoir', 'Humor', 'Biography', 'Biography Memoir', 'Comedy']", "['Fiction', 'Ireland', 'Irish Literature', 'Fantasy', 'Classics', 'Humor', 'Novels']", "['Historical Fiction', 'Fiction', 'Historical', 'Religion', 'Book Club', 'Medieval', 'Italy']", "['Vampires', 'Young Adult', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Romance', 'Supernatural']", "['History', 'Nonfiction', 'War', 'Classics', 'Japan', 'World War II', 'Historical']", "['Nonfiction', 'Science', 'Environment', 'Nature', 'Classics', 'Ecology', 'History']", "['Historical Fiction', 'Fiction', 'Mystery', 'Thriller', 'Historical', 'Mystery Thriller', 'American History']", "['Fiction', 'Historical Fiction', 'Classics', 'German Literature', 'Poetry', 'Literature', 'Novels']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'American', '19th Century', 'Philosophy']", "['Fiction', 'Israel', 'Novels', 'Jewish', 'Literature', 'Romance', 'Contemporary']", "['Politics', 'History', 'Nonfiction', 'War', 'American History', 'Presidents', 'Military Fiction']", "['Fiction', 'Christian', 'Christian Fiction', 'Religion', 'Fantasy', 'Thriller', 'Christianity']", "['Christian Fiction', 'Christian', 'Fiction', 'Religion', 'Fantasy', 'Thriller', 'Christianity']", "['Christian Fiction', 'Christian', 'Fiction', 'Religion', 'Fantasy', 'Thriller', 'Apocalyptic']", "['Fiction', 'Christian Fiction', 'Christian', 'Religion', 'Fantasy', 'Thriller', 'Christianity']", "['Nonfiction', 'Memoir', 'Israel', 'Biography', 'Jewish', 'History', 'Literature']", "['History', 'Nonfiction', 'Africa', 'Race', 'Politics', 'Social Justice', 'World History']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Arthurian', 'Historical', 'Mythology', 'Science Fiction Fantasy']", "['Mystery', 'Fiction', 'Romance', 'Suspense', 'Gothic', 'Romantic Suspense', 'Greece']", "['Mystery', 'Romance', 'Gothic', 'Fiction', 'Historical Fiction', 'Suspense', 'Romantic Suspense']", "['Nonfiction', 'History', 'Biography', 'Politics', 'Memoir', 'Feminism', 'Autobiography']", "['Fantasy', 'Classics', 'Fiction', 'Young Adult', 'Childrens', 'Adventure', 'German Literature']", "['Plays', 'Classics', 'Theatre', 'France', 'Fiction', 'Drama', 'French Literature']", "['Poetry', 'Russia', 'Fiction', 'Russian Literature', 'Classics', 'Literature', '19th Century']", "['Fiction', 'Short Stories', 'Historical Fiction', 'Literature', 'Novels', 'Literary Fiction', 'American']", "['Fiction', 'Historical Fiction', 'Short Stories', 'Literary Fiction', 'Music', 'Literature', 'American']", "['Religion', 'Philosophy', 'Nonfiction', 'History', 'Anthropology', 'Mythology', 'Spirituality']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Art', 'Romance', 'Adult']", "['Fiction', 'Classics', 'Novels', 'Literature', 'Magical Realism', 'Fantasy', 'Latin American Literature']", "['Nonfiction', 'Humor', 'Memoir', 'Biography', 'Books About Books', 'Biography Memoir', 'Autobiography']", "['Mystery', 'Fiction', 'Africa', 'Botswana', 'Crime', 'Detective', 'Cozy Mystery']", "['Fantasy', 'Young Adult', 'Mythology', 'Fiction', 'Middle Grade', 'Adventure', 'Greek Mythology']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure', 'Magic']", "['Nonfiction', 'History', 'Politics', 'Science', 'LGBT', 'Medicine', 'Queer']", "['Fiction', 'Erotica', 'Novels', 'Fantasy', 'Science Fiction', 'Contemporary', 'Literature']", "['Travel', 'Africa', 'Nonfiction', 'Memoir', 'Adventure', 'History', 'Travelogue']", "['Fantasy', 'Fiction', 'High Fantasy', 'Magic', 'Young Adult', 'Epic Fantasy', 'Romance']", "['Fantasy', 'High Fantasy', 'Fiction', 'Magic', 'Epic Fantasy', 'Young Adult', 'Romance']", "['Fantasy', 'Magic', 'Young Adult', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adventure']", "['Fantasy', 'Magic', 'Young Adult', 'Fiction', 'High Fantasy', 'Romance', 'Epic Fantasy']", "['Fiction', 'Humor', 'Contemporary', 'Novels', 'Audiobook', 'Literary Fiction', 'Adult Fiction']", "['Fiction', 'France', 'Classics', 'French Literature', 'Novels', 'Literature', 'Literary Fiction']", "['Fiction', 'Novels', 'Southern', 'United States']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Poetry', 'Humor', 'Fantasy']", "['Fiction', 'France', 'French Literature', 'Classics', 'Novels', 'Literature', 'Roman']", "['Classics', 'Fiction', 'Short Stories', 'Russia', 'Russian Literature', 'Literature', '19th Century']", "['Fiction', 'Classics', 'Literature', 'France', 'French Literature', 'Novels', 'Literary Fiction']", "['Classics', 'Fiction', 'France', 'French Literature', 'Literature', 'Historical Fiction', '19th Century']", "['Classics', 'Fiction', 'France', 'French Literature', 'Historical Fiction', '19th Century', 'Romance']", "['Fiction', 'Classics', 'Novels', 'Literature', 'American', 'Literary Fiction', '20th Century']", "['Fantasy', 'Fiction', 'Dragons', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Magic']", "['Film', 'Nonfiction', 'Art', 'Philosophy', 'Russia', 'Biography', 'Essays']", "['Fantasy', 'Dragonlance', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Dungeons and Dragons']", "['Fantasy', 'Science Fiction', 'Dragons', 'Young Adult', 'Fiction', 'Science Fiction Fantasy', 'Adventure']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Young Adult', 'Science Fiction Fantasy', 'Adventure']", "['Fiction', 'Philosophy', 'Czech Literature', 'Novels', 'Literature', 'Classics', 'Contemporary']", "['Nonfiction', 'Writing', 'Essays', 'Literary Criticism', 'Literature', 'Czech Literature', 'Criticism']", "['Fiction', 'Horror', 'Classics', 'Thriller', 'Crime', 'Contemporary', 'Novels']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adventure', 'Young Adult']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adventure', 'Epic']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Fairies', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Romance', 'Retellings', 'Dark', 'Audiobook']", "['Fantasy', 'Science Fiction', 'Fiction', 'Cyberpunk', 'Science Fiction Fantasy', 'Speculative Fiction', 'Adventure']", "['Fiction', 'Novels', 'Contemporary', 'Literature', 'American', 'Historical Fiction', 'Literary Fiction']", "['Fiction', 'Contemporary', 'Novels', 'American', 'Literature', 'Literary Fiction', 'New York']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Magic', 'Young Adult', 'High Fantasy', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'LGBT', 'Magic', 'Science Fiction Fantasy', 'Romance', 'High Fantasy']", "['Short Stories', 'Fiction', 'Humor', 'Science Fiction', 'American', 'Literary Fiction', 'Literature']", "['Fiction', 'Humor', 'Art', 'Design', 'Novels', 'Coming Of Age', 'Contemporary']", "['Fantasy', 'Fiction', 'LGBT', 'Romance', 'Magic', 'M M Romance', 'Queer']", "['Fantasy', 'Fiction', 'LGBT', 'Magic', 'Science Fiction Fantasy', 'High Fantasy', 'M M Romance']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Magic', 'Epic Fantasy', 'LGBT', 'Romance']", "['Science Fiction', 'Fiction', 'Polish Literature', 'Philosophy', 'Novels', 'Literature', 'Classics']", "['Science Fiction', 'Fiction', 'Polish Literature', 'Fantasy', 'Classics', 'Audiobook', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Polish Literature', 'Classics', 'Aliens', 'Science Fiction Fantasy', 'Novels']", "['Nonfiction', 'True Crime', 'History', 'Biography', 'Crime', 'Humor', 'Sports']", "['Psychology', 'Business', 'Nonfiction', 'Self Help', 'Leadership', 'Personal Development', 'Communication']", "['Philosophy', 'Religion', 'Psychology', 'Nonfiction', 'Spirituality', 'Classics', 'Theology']", "['Fiction', 'Religion', 'Historical Fiction', 'Portugal', 'Literature', 'Portuguese Literature', 'Nobel Prize']", "['Philosophy', 'Nonfiction', 'Politics', 'History', 'Literature', 'Political Science', 'Italy']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Regency', 'Adult', 'Fiction']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Vampires', 'Fantasy', 'Fiction', 'Urban Fantasy']", "['Historical Fiction', 'Fiction', 'Ireland', 'Historical', 'Irish Literature', 'Audiobook', 'Adult']", "['Fantasy', 'Dragons', 'Childrens', 'Fiction', 'Picture Books', 'Mythology', 'Reference']", "['Fantasy', 'Dragons', 'Historical Fiction', 'Fiction', 'Historical', 'Alternate History', 'Historical Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Crime', 'Mystery', 'Mystery Thriller', 'Suspense']", "['Fiction', 'Humor', 'Historical Fiction', 'Fantasy', 'Religion', 'Comedy', 'Historical']", "['Fiction', 'Japan', 'Historical Fiction', 'Literary Fiction', 'Japanese Literature', 'Novels', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Classics', 'Literary Fiction', 'Historical', 'Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Japan', 'Japanese Literature', 'Literature', 'Literary Fiction', 'Historical']", "['Fiction', 'Historical Fiction', 'Mystery', 'Literary Fiction', 'Historical', 'China', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Mystery', 'Literary Fiction', 'British Literature', 'Contemporary', 'Historical']", "['Fiction', 'Scotland', 'Contemporary', 'Literary Fiction', 'Mystery', 'British Literature', 'Humor']", "['Fiction', 'Graphic Novels', 'Young Adult', 'Comics', 'Novels', 'Contemporary', 'Coming Of Age']", "['History', 'Classics', 'Nonfiction', 'Biography', 'Ancient History', 'Ancient', 'Historical']", "['Fiction', 'Mystery', 'Classics', 'Contemporary', 'Thriller', 'Literary Fiction', 'Mystery Thriller']", "['Fiction', 'Contemporary', 'Humor', 'Novels', 'Literature', 'Adult', 'American']", "['Historical Romance', 'Romance', 'Historical', 'Regency', 'Historical Fiction', 'Fiction', 'Regency Romance']", "['Fantasy', 'Fiction', 'Young Adult', 'Graphic Novels', 'Classics', 'Childrens', 'Adventure']", "['Nonfiction', 'Memoir', 'Biography', 'Race', 'African American', 'Biography Memoir', 'School']", "['Health', 'Self Help', 'Nonfiction']", "['Picture Books', 'Childrens', 'Classics', 'Fiction', 'Animals', 'Family', 'Juvenile']", "['History', 'Nonfiction', 'Politics', 'War', 'Biography', 'Military Fiction', 'American History']", "['Philosophy', 'Nonfiction', 'Animals', 'Vegan', 'Politics', 'Food', 'Science']", "['Music', 'Nonfiction', 'History', 'Biography', 'Punk', 'Pop Culture', 'Art']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Adventure', 'Science Fiction Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Adventure', 'Military Fiction', 'Audiobook']", "['Science Fiction', 'Cyberpunk', 'Fiction', 'Audiobook', 'Thriller', 'Fantasy', 'Science Fiction Fantasy']", "['Nonfiction', 'Memoir', 'Gender', 'Feminism', 'Sociology', 'Biography', 'Psychology']", "['Travel', 'Nonfiction', 'Memoir', 'History', 'Travelogue', 'Adventure', 'Humor']", "['Fiction', 'Contemporary', 'Australia', 'Romance', 'Mental Health', 'Novels', 'Drama']", "['Religion', 'Nonfiction', 'Philosophy', 'Atheism', 'Politics', 'Science', 'History']", "['Business', 'Nonfiction', 'History', 'Finance', 'Economics', 'True Crime', 'Politics']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Adult', 'Adult Fiction', 'Humor']", "['Fiction', 'Portugal', 'Historical Fiction', 'Portuguese Literature', 'Literature', 'Nobel Prize', 'Novels']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Fantasy', 'Space Opera', 'Novels']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Space Opera', 'Fantasy', 'Novels']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Fantasy', 'Classics', 'Novels']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Fantasy', 'Dystopia', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Fiction', 'Classics', 'Romance', 'Audiobook', 'Literature', 'Novels', 'British Literature']", "['History', 'Nonfiction', 'European History', 'Politics', 'War', 'World History', 'Historical']", "['Fiction', 'Literature', 'American', 'Novels', 'Classics', 'Literary Fiction', 'Americana']", "['Memoir', 'Nonfiction', 'Biography', 'American', 'Biography Memoir', 'The United States Of America', 'Literature']", "['Fiction', 'Short Stories', 'Classics', 'Jewish', 'Literature', 'American', 'Literary Fiction']", "['Fiction', 'Novels', 'American', 'Literature', 'Americana', 'Contemporary', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Jewish', 'Contemporary', 'Literature', 'Historical', 'Literary Fiction']", "['History', 'Nonfiction', 'Sports', 'Politics', 'Israel', 'Terrorism', 'Germany']", "['Fiction', 'Christian', 'Religion', 'Christian Fiction', 'Classics', 'Christianity', 'Theology']", "['Graphic Novels', 'Comics', 'Fiction', 'Young Adult', 'Manga', 'Graphic Novels Comics', 'Fantasy']", "['Graphic Novels', 'Comics', 'Fiction', 'Young Adult', 'Graphic Novels Comics', 'Manga', 'Fantasy']", "['Christian', 'Classics', 'Fiction', 'Christian Fiction', 'Childrens', 'Theology', 'Faith']", "['Fiction', 'Canada', 'Historical Fiction', 'War', 'Historical', 'Literature', 'Canadian Literature']", "['Fiction', 'Historical Fiction', 'Canada', 'War', 'Classics', 'Historical', 'Canadian Literature']", "['Historical Fiction', 'Fiction', 'World War II', 'War', 'Military Fiction', 'Historical', 'Military History']", "['Historical Fiction', 'Fiction', 'American Revolution', 'Historical', 'American History', 'American Revolutionary War', 'War']", "['Fiction', 'Philosophy', 'Spirituality', 'Fantasy', 'Classics', 'Religion', 'Self Help']", "['Fiction', 'Philosophy', 'Spirituality', 'Short Stories', 'Childrens', 'Fantasy', 'Classics']", "['Fiction', 'Romance', 'Spirituality', 'Philosophy', 'Fantasy', 'Love', 'Inspirational']", "['Classics', 'Science Fiction', 'Fiction', 'Horror', 'Fantasy', 'Literature', 'Audiobook']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'Classics', 'Detective', 'Thriller']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Classics', 'Fantasy', 'Space Opera', 'Audiobook']", "['Science Fiction', 'Fiction', 'Mystery', 'Classics', 'Robots', 'Science Fiction Fantasy', 'Crime']", "['Fantasy', 'Fiction', 'Sword and Sorcery', 'Epic Fantasy', 'Dark Fantasy', 'High Fantasy', 'Science Fiction Fantasy']", "['Fiction', 'Short Stories', 'Classics', 'Nature', 'Literature', 'Historical Fiction', 'Westerns']", "['Thriller', 'Mystery', 'Fiction', 'Horror', 'Mystery Thriller', 'Suspense', 'Crime']", "['Graphic Novels', 'Horror', 'Zombies', 'Fiction', 'Graphic Novels Comics', 'Comics', 'Post Apocalyptic']", "['Fiction', 'Fantasy', 'Science Fiction', 'Horror', 'Death', 'Novels', 'Post Apocalyptic']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Alternate History', 'Historical', 'Science Fiction', 'Science Fiction Fantasy']", "['Nonfiction', 'History', 'Politics', 'Religion', 'American History', 'Christian', 'Faith']", "['Poetry', 'Childrens', 'Classics', 'Fiction', 'Humor', 'Young Adult', 'Picture Books']", "['Poetry', 'Childrens', 'Fiction', 'Humor', 'Classics', 'Young Adult', 'Picture Books']", "['Poetry', 'Childrens', 'Picture Books', 'Fiction', 'Classics', 'Young Adult', 'Humor']", "['Poetry', 'Childrens', 'Picture Books', 'Fiction', 'Classics', 'Inspirational', 'Humor']", "['Childrens', 'Fiction', 'Poetry', 'Picture Books', 'Humor', 'Fantasy', 'Young Adult']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Fiction', 'Supernatural']", "['Fantasy', 'Romance', 'Paranormal', 'Mythology', 'Paranormal Romance', 'Fiction', 'Magic']", "['Fantasy', 'Magic', 'Dragons', 'Urban Fantasy', 'Fiction', 'Paranormal', 'Science Fiction Fantasy']", "['Fantasy', 'Romance', 'Young Adult', 'Mythology', 'Paranormal', 'Paranormal Romance', 'Magic']", "['Romance', 'Fantasy', 'Mythology', 'Paranormal Romance', 'Paranormal', 'Fiction', 'Magic']", "['Romance', 'Fantasy', 'Mythology', 'Paranormal Romance', 'Paranormal', 'Fiction', 'Greek Mythology']", "['Fantasy', 'Romance', 'Mythology', 'Paranormal Romance', 'Paranormal', 'Mermaids', 'Fiction']", "['Fantasy', 'Romance', 'Young Adult', 'Mythology', 'Paranormal', 'Paranormal Romance', 'Fiction']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Fae', 'Fiction']", "['Urban Fantasy', 'Vampires', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Fiction']", "['Urban Fantasy', 'Paranormal', 'Vampires', 'Fantasy', 'Romance', 'Paranormal Romance', 'Fiction']", "['Urban Fantasy', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Horror', 'Paranormal Romance']", "['Urban Fantasy', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Horror']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Vampires', 'Witches', 'Magic', 'Fiction']", "['Urban Fantasy', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Horror', 'Fiction']", "['Philosophy', 'Classics', 'Nonfiction', 'Politics', 'History', 'School', 'Literature']", "['Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Werewolves', 'Urban Fantasy', 'Fiction']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Supernatural']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Shapeshifters', 'Young Adult Fantasy', 'Teen']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Shapeshifters', 'Fiction', 'Young Adult Fantasy']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Urban Fantasy', 'Horror']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Supernatural', 'Horror', 'Urban Fantasy']", "['Philosophy', 'Nonfiction', 'Politics', 'History', 'Economics', 'Sociology', 'Theory']", "['Fiction', 'Ireland', 'Irish Literature', 'Novels', 'Literary Fiction', 'Coming Of Age', 'Contemporary']", "['Nonfiction', 'Biography', 'Politics', 'History', 'Philosophy', 'Essays', 'Literary Criticism']", "['Nonfiction', 'Classics', 'Essays', 'Short Stories', 'History', 'Politics', 'School']", "['Fiction', 'Science Fiction', 'Dystopia', 'Classics', 'Philosophy', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Literature', 'Novels', '20th Century']", "['Nonfiction', 'Memoir', 'Biography', 'Classics', 'Russia', 'Autobiography', 'Russian Literature']", "['Classics', 'Fiction', 'Historical Fiction', 'France', 'Literature', 'French Literature', 'Gothic']", "['Christian', 'Nonfiction', 'Christianity', 'Spirituality', 'Religion', 'Philosophy', 'Theology']", "['Fiction', 'Science Fiction', 'Fantasy', 'Classics', 'Christian', 'Christian Fiction', 'Science Fiction Fantasy']", "['Nonfiction', 'History', 'Self Help', 'Psychology', 'Classics', 'Personal Development', 'Spirituality']", "['Fiction', 'Classics', 'Historical Fiction', 'Politics', 'Literature', 'Russia', 'Novels']", "['Fiction', 'Travel', 'Contemporary', 'Business', 'Media Tie In', 'Novels', 'Adult Fiction']", "['Philosophy', 'Classics', 'Essays', 'Nonfiction', 'France', 'History', 'French Literature']", "['Fiction', 'India', 'Historical Fiction', 'Indian Literature', 'Mythology', 'Humor', 'Politics']", "['Memoir', 'Nonfiction', 'Feminism', 'Classics', 'China', 'Biography', 'School']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Classics', 'Adult Fiction', 'Adult']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'Novels', 'British Literature', 'LGBT']", "['Fiction', 'Classics', 'Humor', 'Literature', 'British Literature', 'Novels', '20th Century']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Historical Fiction', 'British Literature', '20th Century']", "['History', 'Nonfiction', 'Biography', 'Tudor Period', 'Historical', 'British Literature', 'Biography Memoir']", "['Philosophy', 'Fiction', 'Literature', 'Novels', 'Spirituality', 'Psychology', 'Classics']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'Adult Fiction']", "['Fiction', 'Short Stories', 'Historical Fiction', 'Novels', 'Literary Fiction', 'School', 'Literature']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Romance', 'Coming Of Age', 'Historical']", "['Fiction', 'Classics', 'Romance', 'Historical Fiction', '19th Century', 'Victorian', 'British Literature']", "['Classics', 'Fiction', 'Romance', '19th Century', 'Victorian', 'Gothic', 'Literature']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Family', 'Adult Fiction', 'Audiobook']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Novels', 'Literature', 'Adult Fiction', 'American']", "['Fiction', 'Classics', 'Literature', 'Philosophy', 'Novels', 'Historical Fiction', 'Literary Fiction']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Suspense', 'Mystery Thriller', 'Action']", "['Fiction', 'Classics', 'Literature', '19th Century', 'Victorian', 'Historical Fiction', 'British Literature']", "['Classics', 'Fiction', 'Literature', 'Victorian', '19th Century', 'Historical Fiction', 'British Literature']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Action', 'Suspense', 'Adventure']", "['Classics', 'Fiction', 'British Literature', 'Romance', '20th Century', 'Novels', 'Literature']", "['Vampires', 'Horror', 'Fantasy', 'Fiction', 'Paranormal', 'Supernatural', 'Urban Fantasy']", "['Horror', 'Vampires', 'Fantasy', 'Fiction', 'Paranormal', 'Supernatural', 'Urban Fantasy']", "['Fiction', 'Horror', 'Fantasy', 'Paranormal', 'Supernatural', 'Vampires', 'Gothic']", "['Fiction', 'Historical Fiction', 'Horror', 'Historical', 'Fantasy', 'Romance', 'LGBT']", "['Horror', 'Fantasy', 'Vampires', 'Fiction', 'Paranormal', 'Supernatural', 'Urban Fantasy']", "['Horror', 'Vampires', 'Fantasy', 'Fiction', 'Paranormal', 'Supernatural', 'Witches']", "['Horror', 'Fantasy', 'Fiction', 'Paranormal', 'Witches', 'Supernatural', 'Urban Fantasy']", "['Horror', 'Vampires', 'Fantasy', 'Fiction', 'Paranormal', 'Supernatural', 'Historical Fiction']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Audiobook', 'Speculative Fiction', 'Adult', 'Novels']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Young Adult', 'Space', 'Audiobook']", "['Science Fiction', 'Fantasy', 'Short Stories', 'Fiction', 'Science Fiction Fantasy', 'Anthologies', 'Horror']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'British Literature', 'Detective']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Thriller', 'Detective', 'British Literature']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'Thriller', 'British Literature']", "['Childrens', 'Fiction', 'Fantasy', 'Classics', 'Middle Grade', 'Humor', 'Young Adult']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', 'Literature', '19th Century', 'Victorian']", "['Classics', 'Fiction', 'Literature', 'Romance', 'British Literature', 'Novels', '20th Century']", "['Classics', 'Fiction', 'Literature', 'Novels', 'Romance', 'British Literature', 'Literary Fiction']", "['Poetry', 'Spanish Literature', 'Spain', 'Fiction', 'Literature', 'Classics', '20th Century']", "['Short Stories', 'Fiction', 'Magical Realism', 'Classics', 'Spanish Literature', 'Latin American', 'Literature']", "['Philosophy', 'Nonfiction', 'Classics', 'German Literature', 'Psychology', 'Religion', 'Theory']", "['Philosophy', 'Nonfiction', 'History', 'Biography', 'Classics', 'Psychology', 'Audiobook']", "['Religion', 'Nonfiction', 'History', 'Travel', 'Christian', 'Memoir', 'Christianity']", "['Fiction', 'Romance', 'Classics', 'Literature', 'Banned Books', 'Historical Fiction', 'Novels']", "['Classics', 'Fiction', 'Literature', 'Novels', 'British Literature', 'Romance', '20th Century']", "['History', 'Nonfiction', 'American History', 'Politics', 'American', 'Sociology', 'Anthropology']", "['Nonfiction', 'Memoir', 'Animals', 'Classics', 'Biography', 'Audiobook', 'Autobiography']", "['Nonfiction', 'Classics', 'Animals', 'Memoir', 'Biography', 'Humor', 'Nature']", "['Nonfiction', 'Science', 'Audiobook', 'Humor', 'Medical', 'Medicine', 'Death']", "['Fiction', 'Horses', 'Animals', 'Contemporary', 'Literary Fiction', 'Sports', 'Modern']", "['Fiction', 'Contemporary', 'Coming Of Age', 'Drama', 'Literary Fiction', 'Adult Fiction', 'Chick Lit']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Suspense', 'Mystery Thriller', 'Detective']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Mystery Thriller', 'Suspense', 'Detective']", "['Classics', 'Fiction', 'Literature', 'Historical Fiction', '19th Century', 'Victorian', 'Novels']", "['Science', 'Nonfiction', 'Philosophy', 'Evolution', 'Biology', 'Psychology', 'History']", "['Science', 'Nonfiction', 'Memoir', 'Animals', 'Biology', 'Africa', 'Anthropology']", "['Fiction', 'Spirituality', 'Travel', 'Australia', 'Philosophy', 'Adventure', 'Book Club']", "['Memoir', 'Nonfiction', 'Biography', 'Humor', 'Biography Memoir', 'LGBT', 'Autobiography']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Mystery', 'Suspense', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Paranormal', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Science Fiction', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Science Fiction', 'Paranormal']", "['Horror', 'Thriller', 'Fiction', 'Suspense', 'Mystery', 'Mystery Thriller', 'Crime']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Paranormal', 'Mystery Thriller']", "['Horror', 'Short Stories', 'Fiction', 'Anthologies', 'Fantasy', 'Collections', 'Weird Fiction']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Detective', 'Mystery Thriller', 'Audiobook']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Suspense', 'Detective']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Suspense', 'Mystery Thriller', 'Audiobook']", "['Classics', 'Horror', 'Fiction', 'Short Stories', 'Gothic', 'Mystery', 'Literature']", "['Fiction', 'Classics', 'Novels', 'Literature', 'Scandinavian Literature', '19th Century', 'Philosophy']", "['Fiction', 'Classics', 'Scandinavian Literature', 'Literature', 'Novels', '19th Century', 'Romance']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Anthologies', 'Thriller', 'Collections']", "['Horror', 'Fantasy', 'Fiction', 'Dark Fantasy', 'Thriller', 'Science Fiction', 'Novels']", "['Fantasy', 'Horror', 'Fiction', 'Young Adult', 'Childrens', 'Middle Grade', 'Adventure']", "['Horror', 'Fantasy', 'Fiction', 'LGBT', 'Dark Fantasy', 'Supernatural', 'Mystery']", "['Fiction', 'Thriller', 'Espionage', 'Military Fiction', 'Suspense', 'Mystery', 'Action']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Espionage', 'Action', 'Military Fiction']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Adult', 'Audiobook']", "['Horror', 'Fiction', 'Historical Fiction', 'Paranormal', 'Thriller', 'Fantasy', 'Mystery']", "['Horror', 'Fiction', 'Classics', 'Science Fiction', 'Fantasy', 'Lovecraftian', 'Short Stories']", "['Horror', 'Fiction', 'Fantasy', 'Short Stories', 'Classics', 'Science Fiction', 'Lovecraftian']", "['Science Fiction', 'Classics', 'Fiction', 'Adventure', 'France', 'Fantasy', 'Literature']", "['Classics', 'Science Fiction', 'Fiction', 'Adventure', 'Fantasy', 'France', 'Literature']", "['Classics', 'Fiction', 'Science Fiction', 'Adventure', 'Fantasy', 'France', 'Literature']", "['Feminism', 'Nonfiction', 'Love', 'Self Help', 'Philosophy', 'Relationships', 'Womens']", "['Childrens', 'Picture Books', 'Classics', 'Fiction', 'Poetry', 'Kids', 'Animals']", "['Nonfiction', 'Feminism', 'Essays', 'Race', 'LGBT', 'Queer', 'Social Justice']", "['Mystery', 'Young Adult', 'Fiction', 'Classics', 'Childrens', 'Middle Grade', 'Mystery Thriller']", "['Vampires', 'Fantasy', 'Paranormal', 'Horror', 'Urban Fantasy', 'Fiction', 'Werewolves']", "['Plays', 'Classics', 'Poetry', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre']", "['Fiction', 'Contemporary', 'Adult', 'Romance', 'Drama', 'Literature', 'Chick Lit']", "['Nonfiction', 'Food', 'Memoir', 'Biography', 'Audiobook', 'Cooking', 'Autobiography']", "['Nonfiction', 'Science', 'Spirituality', 'Health', 'Philosophy', 'Self Help', 'Psychology']", "['Fiction', 'Science Fiction', 'Dystopia', 'Humor', 'Cyberpunk', 'Politics', 'Thriller']", "['Fiction', 'Humor', 'Fantasy', 'Comedy', 'Science Fiction', 'Adult', 'Audiobook']", "['Humor', 'Fiction', 'Fantasy', 'Vampires', 'Comedy', 'Paranormal', 'Urban Fantasy']", "['Humor', 'Fiction', 'Fantasy', 'Comedy', 'Adventure', 'Audiobook', 'Adult']", "['Humor', 'Fiction', 'Fantasy', 'Comedy', 'Paranormal', 'Urban Fantasy', 'Horror']", "['Humor', 'Fantasy', 'Fiction', 'Comedy', 'Horror', 'Urban Fantasy', 'Paranormal']", "['Humor', 'Fiction', 'Fantasy', 'Comedy', 'Urban Fantasy', 'Audiobook', 'Paranormal']", "['Comics', 'Art', 'Nonfiction', 'Graphic Novels', 'Writing', 'Reference', 'Drawing']", "['Fantasy', 'Fiction', 'Short Stories', 'Sword and Sorcery', 'Classics', 'Pulp', 'Adventure']", "['Historical Fiction', 'Fiction', 'Historical', 'Book Club', 'Westerns', 'Adult', 'Audiobook']", "['Writing', 'Nonfiction', 'Reference', 'Language', 'Classics', 'Education', 'Self Help']", "['Horror', 'Fiction', 'Paranormal', 'Classics', 'Ghosts', 'Mystery', 'Audiobook']", "['Horror', 'Fiction', 'Mystery', 'Thriller', 'Paranormal', 'Fantasy', 'Supernatural']", "['Fiction', 'Fantasy', 'Romance', 'Horror', 'Science Fiction', 'Classics', 'Death']", "['Young Adult', 'Fiction', 'Classics', 'Coming Of Age', 'Realistic Fiction', 'Contemporary', 'Teen']", "['Young Adult', 'Fiction', 'Classics', 'Coming Of Age', 'Realistic Fiction', 'Teen', 'Contemporary']", "['Fiction', 'Travel', 'Adventure', 'Historical Fiction', 'Contemporary', 'Novels', 'Asia']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Classics', 'Medieval', 'British Literature']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Fiction', 'Adventure', 'Paranormal', 'Romance']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Humor', 'Adult', 'Contemporary Romance']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Contemporary Romance', 'Humor', 'Adult']", "['Romance', 'Contemporary Romance', 'Chick Lit', 'Contemporary', 'Fiction', 'Humor', 'Mystery']", "['Romance', 'Chick Lit', 'Contemporary Romance', 'Fiction', 'Contemporary', 'Humor', 'Mystery']", "['Fiction', 'Mystery', 'Thriller', 'Suspense', 'Mystery Thriller', 'Crime', 'Detective']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Action', 'Drama']", "['Fiction', 'Thriller', 'Mystery', 'Mystery Thriller', 'Suspense', 'Crime', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'Southern', 'Novels', 'Literature']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Teen', 'Coming Of Age', 'Romance']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Novels', 'Indian Literature', 'Literature', 'Book Club']", "['Fiction', 'Chick Lit', 'Short Stories', 'Contemporary', 'Romance', 'Adult Fiction', 'Humor']", "['History', 'Nonfiction', 'Politics', 'Terrorism', 'American History', 'War', 'Reference']", "['Chick Lit', 'Fiction', 'Adult', 'Adult Fiction', 'Humor', 'Contemporary', 'Romance']", "['Classics', 'Fiction', 'Short Stories', 'Childrens', 'Fantasy', 'Animals', 'Literature']", "['Classics', 'Fiction', 'Adventure', 'Historical Fiction', 'Literature', 'Young Adult', 'Childrens']", "['Graphic Novels', 'Comics', 'Fiction', 'Graphic Novels Comics', 'Comix', 'Comic Book', 'Bande Dessinée']", "['Poetry', 'Classics', 'Fiction', 'Literature', '20th Century', 'School', 'American']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Adventure', 'Childrens', 'Retellings']", "['Fantasy', 'Fiction', 'Childrens', 'Middle Grade', 'Young Adult', 'Adventure', 'Pirates']", "['Classics', 'Fantasy', 'Fiction', 'Childrens', 'Adventure', 'Young Adult', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Magic', 'Young Adult Fantasy']", "['Fiction', 'Ireland', 'Chick Lit', 'Romance', 'Historical Fiction', 'Irish Literature', 'Contemporary']", "['Fiction', 'Chick Lit', 'Romance', 'Ireland', 'Irish Literature', 'Contemporary', 'Womens Fiction']", "['Fiction', 'Chick Lit', 'Ireland', 'Romance', 'Irish Literature', 'Contemporary', 'Novels']", "['Fiction', 'Ireland', 'Chick Lit', 'Romance', 'Irish Literature', 'Contemporary', 'Womens Fiction']", "['Mystery', 'Childrens', 'Fiction', 'Chapter Books', '2nd Grade', 'Middle Grade', 'Kids']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Novels', 'Germany', 'Philosophy']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre', 'Poetry']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Germany', 'Music', 'Novels']", "['Nonfiction', 'Spirituality', 'Psychology', 'Self Help', 'Philosophy', 'New Age', 'Memoir']", "['Nonfiction', 'Japan', 'Architecture', 'Art', 'Philosophy', 'Japanese Literature', 'Essays']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Religion', 'Audiobook']", "['Fantasy', 'Fiction', 'Young Adult', 'Humor', 'Magic', 'Comedy', 'Audiobook']", "['Fantasy', 'Fiction', 'Young Adult', 'Humor', 'Audiobook', 'Childrens', 'Comedy']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction', 'Science Fiction Fantasy', 'Magic']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Young Adult', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Magic', 'Audiobook']", "['Fantasy', 'Fiction', 'Young Adult', 'Humor', 'Witches', 'Childrens', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Music', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Graphic Novels', 'Science Fiction Fantasy', 'Magic']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Magic', 'Adventure']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Magic', 'Science Fiction Fantasy', 'Witches']", "['Fantasy', 'Humor', 'Fiction', 'Comedy', 'Science Fiction Fantasy', 'Science Fiction', 'Comic Fantasy']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Audiobook', 'Magic']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'War', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Audiobook', 'Death']", "['Fantasy', 'Science Fiction', 'Fiction', 'Young Adult', 'Humor', 'Childrens', 'Comedy']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Mystery', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Witches', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Christmas', 'Science Fiction Fantasy', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Young Adult', 'Childrens', 'Comedy', 'Animals']", "['Fantasy', 'Fiction', 'Humor', 'Vampires', 'Comedy', 'Science Fiction Fantasy', 'Witches']", "['Nonfiction', 'Biography', 'Humor', 'Memoir', 'Autobiography', 'Film', 'Biography Memoir']", "['Adventure', 'Fiction', 'Thriller', 'Action', 'Mystery', 'Historical Fiction', 'Mystery Thriller']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Novels', 'Supernatural', 'Dark']", "['Nonfiction', 'Humor', 'Self Help', 'Philosophy', 'Essays', 'Inspirational', 'Short Stories']", "['Fantasy', 'Childrens', 'Fiction', 'Classics', 'Dragons', 'Middle Grade', 'Chapter Books']", "['Fiction', 'Thriller', 'Espionage', 'Action', 'Military Fiction', 'Suspense', 'Adventure']", "['Classics', 'Fiction', 'German Literature', 'Crime', 'School', 'Mystery', 'Literature']", "['History', 'Nonfiction', 'Civil War', 'American History', 'War', 'American Civil War', 'Military History']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'Novels']", "['Short Stories', 'Fiction', 'Japan', 'Classics', 'Japanese Literature', 'Literature', 'Historical Fiction']", "['Self Help', 'Nonfiction', 'Communication', 'Psychology', 'Business', 'Personal Development', 'Relationships']", "['Classics', 'Fiction', 'Historical Fiction', 'Civil War', 'War', 'Literature', 'Novels']", "['Classics', 'Fiction', 'Historical Fiction', 'War', 'Civil War', 'Literature', 'Historical']", "['Fiction', 'Australia', 'Contemporary', 'Literary Fiction', 'Literature', 'Novels', 'Book Club']", "['Christian Fiction', 'Christian', 'Fiction', 'Romance', 'Christian Romance', 'Inspirational', 'Adult Fiction']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Adventure', 'Audiobook']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Audiobook', 'Novels']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Space Opera', 'Adventure']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Space Opera']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Space']", "['History', 'Nonfiction', 'Biography', 'Memoir', 'Religion', 'Spirituality', 'Philosophy']", "['Music', 'Biography', 'Nonfiction', 'Memoir', 'Autobiography', 'Biography Memoir', 'History']", "['Humor', 'Fiction', 'Short Stories', 'Comedy', 'Essays', 'American', 'Contemporary']", "['Science', 'Nonfiction', 'Religion', 'Christian', 'Theology', 'Christianity', 'Philosophy']", "['Science', 'Christian', 'Nonfiction', 'Religion', 'Philosophy', 'Faith', 'Christianity']", "['Mythology', 'Psychology', 'Nonfiction', 'Philosophy', 'Spirituality', 'Religion', 'Self Help']", "['Nonfiction', 'Mythology', 'Philosophy', 'History', 'Psychology', 'Spirituality', 'Classics']", "['Music', 'Biography', 'Nonfiction', 'History', 'Biography Memoir', 'Audiobook', 'Art']", "['Music', 'Biography', 'Nonfiction', 'History', 'Memoir', 'Rock N Roll', 'Biography Memoir']", "['Romance', 'Paranormal', 'Vampires', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Fiction', 'Classics', 'German Literature', 'Historical Fiction', 'Literature', 'Germany', 'Magical Realism']", "['Fantasy', 'Fiction', 'Animals', 'Middle Grade', 'Young Adult', 'Childrens', 'Adventure']", "['Horror', 'Classics', 'Fiction', 'Gothic', 'Fantasy', 'Novels', 'Literature']", "['Horror', 'Classics', 'Fiction', 'Gothic', 'Fantasy', 'Mystery', 'Literature']", "['Manga', 'Comics', 'Graphic Novels', 'Science Fiction', 'Cyberpunk', 'Fiction', 'Japan']", "['Nonfiction', 'Humor', 'Memoir', 'Comedy', 'Biography', 'Chick Lit', 'Autobiography']", "['Crime', 'Fiction', 'Mystery', 'Noir', 'Thriller', 'Historical Fiction', 'Detective']", "['True Crime', 'Nonfiction', 'Crime', 'Memoir', 'Biography', 'Mystery', 'Autobiography']", "['Fiction', 'Crime', 'Historical Fiction', 'Noir', 'Mystery', 'Thriller', 'American']", "['Self Help', 'Nonfiction', 'Business', 'Personal Development', 'Psychology', 'Leadership', 'Productivity']", "['Business', 'Leadership', 'Nonfiction', 'Self Help', 'Personal Development', 'Management', 'Psychology']", "['History', 'Nonfiction', 'Science', 'Medicine', 'Medical', 'Historical', 'Audiobook']", "['Fantasy', 'Science Fiction', 'Fiction', 'Epic Fantasy', 'Dark Fantasy', 'High Fantasy', 'Science Fiction Fantasy']", "['Horror', 'Fiction', 'Short Stories', 'Classics', 'Fantasy', 'Science Fiction', 'Gothic']", "['Horror', 'Fiction', 'Short Stories', 'Classics', 'Fantasy', 'Science Fiction', 'Anthologies']", "['Science', 'Nonfiction', 'Biology', 'Evolution', 'History', 'Natural History', 'Nature']", "['Nonfiction', 'History', 'Classics', 'Biography', 'Memoir', 'School', 'Autobiography']", "['Fantasy', 'Fiction', 'Childrens', 'Middle Grade', 'Classics', 'Historical Fiction', 'Young Adult']", "['Horror', 'Fiction', 'Gothic', 'Classics', 'Mystery', 'Historical Fiction', 'Ghosts']", "['Fiction', 'Historical Fiction', 'Romance', 'Chick Lit', 'British Literature', 'Historical', 'Family']", "['Fantasy', 'Fiction', 'Childrens', 'Middle Grade', 'Young Adult', 'Adventure', 'Animals']", "['Fiction', 'Middle Grade', 'Young Adult', 'Childrens', 'Realistic Fiction', 'Animals', 'Juvenile']", "['Fantasy', 'Fiction', 'Childrens', 'Middle Grade', 'Young Adult', 'Animals', 'Adventure']", "['Young Adult', 'Romance', 'Contemporary', 'Retellings', 'Teen', 'Fairy Tales', 'Fiction']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Historical Fiction', 'Southern Gothic', 'Literary Fiction']", "['Nonfiction', 'Essays', 'Race', 'Literary Criticism', 'African American', 'Writing', 'Theory']", "['Classics', 'Fiction', 'Historical Fiction', 'School', 'African American', 'Literature', 'Feminism']", "['Fiction', 'Contemporary', 'Adult Fiction', 'Literary Fiction', 'Novels', 'Adult', 'Book Club']", "['Fiction', 'Historical Fiction', 'Classics', 'Young Adult', 'Historical', 'Contemporary', 'Adult Fiction']", "['Fantasy', 'Fiction', 'Adult', 'Retellings', 'Science Fiction Fantasy', 'Witches', 'Adult Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Adult', 'British Literature', 'Historical Romance']", "['Fiction', 'Canada', 'Humor', 'Contemporary', 'Novels', 'Literature', 'Comedy']", "['Classics', 'Plays', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre', 'Literature']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Middle Grade', 'Adventure', 'Childrens']", "['Classics', 'Fiction', 'Romance', '18th Century', 'Historical Fiction', 'Literature', 'Historical']", "['Classics', 'Fiction', 'Adventure', 'Animals', 'Literature', 'Historical Fiction', 'Young Adult']", "['Young Adult', 'Fiction', 'Childrens', 'Classics', 'Middle Grade', 'Coming Of Age', 'Realistic Fiction']", "['Fiction', 'Young Adult', 'Childrens', 'Middle Grade', 'Realistic Fiction', 'Banned Books', 'Classics']", "['Childrens', 'Fiction', 'Middle Grade', 'Young Adult', 'Realistic Fiction', 'Humor', 'Classics']", "['Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Banned Books', 'Teen', 'Classics']", "['Fiction', 'Chick Lit', 'Romance', 'Adult Fiction', 'Adult', 'Contemporary', 'Novels']", "['Fiction', 'Classics', 'Historical Fiction', 'Africa', 'School', 'Literature', 'Nigeria']", "['Plays', 'Fiction', 'Drama', 'School', 'Theatre', 'Classics', 'Feminism']", "['Fiction', 'Classics', 'Humor', 'Religion', 'Short Stories', 'Essays', 'Literature']", "['Nonfiction', 'Music', 'Biography', 'Memoir', 'Autobiography', 'Biography Memoir', 'Adult']", "['Fiction', 'Urban', 'Crime', 'African American', 'Mystery', 'Classics']", "['Poetry', 'Classics', 'Fiction', 'Fantasy', 'Italian Literature', 'Epic', 'Italy']", "['Fiction', 'Science Fiction', 'Post Apocalyptic', 'Classics', 'Dystopia', 'Apocalyptic', 'Survival']", "['Fiction', 'Science Fiction', 'Classics', 'Post Apocalyptic', 'Dystopia', 'Apocalyptic', 'Australia']", "['Nonfiction', 'Philosophy', 'Spirituality', 'Self Help', 'Buddhism', 'Psychology', 'Personal Development']", "['Classics', 'Fiction', 'Literature', '18th Century', 'Historical Fiction', 'British Literature', 'Novels']", "['Classics', 'Fiction', 'Historical Fiction', 'Adventure', 'Literature', 'Historical', 'American']", "['Nonfiction', 'Economics', 'Business', 'Finance', 'Philosophy', 'Psychology', 'Science']", "['Graphic Novels', 'Comics', 'Horror', 'Fiction', 'Graphic Novels Comics', 'Science Fiction', 'Comix']", "['Horror', 'Fiction', 'Japan', 'Japanese Literature', 'Mystery', 'Thriller', 'Paranormal']", "['Science', 'Nonfiction', 'Mathematics', 'History', 'Popular Science', 'Biography', 'Historical']", "['Fiction', 'Classics', 'Dystopia', 'Science Fiction', 'Feminism', 'Fantasy', 'Adult']", "['Fiction', 'Classics', 'Queer', 'LGBT', 'African American', 'Race', 'Novels']", "['Classics', 'Fiction', 'LGBT', 'Queer', 'Romance', 'Literary Fiction', 'Gay']", "['Fiction', 'Classics', 'Romance', 'Race', 'Audiobook', 'African American', 'Historical Fiction']", "['Fiction', 'Classics', 'LGBT', 'Queer', 'Race', 'African American', 'Novels']", "['Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Historical Fiction', 'Classics', 'Juvenile']", "['Fiction', 'Novels', 'Literature', 'Poetry', 'American', 'Contemporary', 'Classics']", "['Fiction', 'Classics', 'Novels', 'Literature', 'American', 'Coming Of Age', 'Contemporary']", "['Fiction', 'Short Stories', 'Poetry', 'Classics', 'Literature', 'Essays', 'American']", "['Fiction', 'Short Stories', 'Poetry', 'Classics', 'American', 'Literature', 'The United States Of America']", "['Fiction', 'Classics', 'Novels', 'Literature', 'American', 'Humor', 'The United States Of America']", "['Romance', 'Paranormal Romance', 'Vampires', 'Paranormal', 'Fantasy', 'Fiction', 'Urban Fantasy']", "['Romance', 'Paranormal Romance', 'Vampires', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Romance', 'Vampires', 'Paranormal', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Magic', 'Vampires', 'Paranormal Romance']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Magical Realism', 'Paranormal', 'Adult Fiction', 'Adult']", "['Childrens', 'Middle Grade', 'Fiction', 'Young Adult', 'Realistic Fiction', 'School', 'Humor']", "['Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Classics', 'School', 'Realistic Fiction']", "['Nonfiction', 'Animals', 'Memoir', 'Biography', 'Classics', 'Humor', 'Autobiography']", "['Plays', 'Drama', 'Fiction', 'Literature', 'American', 'Americana', 'Theatre']", "['Fiction', 'Magical Realism', 'Spanish Literature', 'Latin American', 'Novels', 'Literature', 'Fantasy']", "['Fiction', 'Romance', 'Italian Literature', 'Novels', 'Italy', 'Contemporary', 'Literature']", "['Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Teen', 'Childrens']", "['Graphic Novels', 'Memoir', 'Comics', 'Nonfiction', 'LGBT', 'Queer', 'Biography']", "['Chick Lit', 'Fiction', 'Romance', 'Adult', 'Music', 'Adult Fiction', 'Young Adult']", "['History', 'Nonfiction', 'American History', 'Anthropology', 'Science', 'Historical', 'World History']", "['Thriller', 'Fiction', 'Mystery', 'Science Fiction', 'Adventure', 'Suspense', 'Mystery Thriller']", "['Thriller', 'Mystery', 'Horror', 'Fiction', 'Mystery Thriller', 'Suspense', 'Science Fiction']", "['Mystery', 'Thriller', 'Fiction', 'Horror', 'Mystery Thriller', 'Suspense', 'Crime']", "['Thriller', 'Mystery', 'Fiction', 'Horror', 'Mystery Thriller', 'Crime', 'Suspense']", "['Fantasy', 'Fiction', 'Classics', 'Gothic', 'Horror', 'Novels', 'Literature']", "['Fantasy', 'Fiction', 'Classics', 'Gothic', 'Science Fiction Fantasy', 'Novels', 'Literature']", "['Fiction', 'Magical Realism', 'Historical Fiction', 'Humor', 'Novels', 'Literature', 'Classics']", "['Vampires', 'Urban Fantasy', 'Paranormal', 'Fantasy', 'Horror', 'Romance', 'Fiction']", "['Horror', 'Fiction', 'Short Stories', 'Thriller', 'Mystery', 'Fantasy', 'Classics']", "['Fiction', 'Short Stories', 'Horror', 'Thriller', 'Audiobook', 'Classics', 'Crime']", "['Poetry', 'Fiction', 'American', 'Classics', '20th Century', 'The United States Of America', 'Literature']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Sweden', 'Scandinavian Literature', 'Mystery Thriller']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Sweden', 'Scandinavian Literature', 'Detective']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Sweden', 'Scandinavian Literature', 'Nordic Noir']", "['Feminism', 'Nonfiction', 'Sociology', 'Psychology', 'Womens', 'Gender', 'Gender Studies']", "['Nonfiction', 'School', 'Books About Books', 'Writing', 'Education', 'Literature', 'Read For School']", "['Writing', 'Nonfiction', 'Books About Books', 'Reference', 'Literary Criticism', 'Crafts', 'Literature']", "['Fiction', 'Childrens', 'Classics', 'Fantasy', 'Middle Grade', 'Young Adult', 'Humor']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Historical', 'Medieval']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Historical', 'Holocaust', 'War', 'World War II']", "['Historical Fiction', 'Mystery', 'Fiction', 'Thriller', 'Crime', 'Historical', 'Mystery Thriller']", "['Nonfiction', 'History', 'True Crime', 'Science', 'Crime', 'Mystery', 'Historical']", "['Fiction', 'India', 'Mystery', 'Crime', 'Thriller', 'Indian Literature', 'Mystery Thriller']", "['Nonfiction', 'Memoir', 'Biography', 'Disability', 'Autobiography', 'Biography Memoir', 'Family']", "['Nonfiction', 'Psychology', 'Business', 'Self Help', 'Science', 'Sociology', 'Audiobook']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Literature', 'Novels', 'Fantasy', 'British Literature']", "['Fiction', 'Mystery', 'Noir', 'Crime', 'Novels', 'Thriller', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Romance', 'Young Adult Fantasy', 'High Fantasy']", "['Humor', 'Nonfiction', 'Memoir', 'Comedy', 'Biography', 'Audiobook', 'Autobiography']", "['Travel', 'Nonfiction', 'Memoir', 'France', 'Biography', 'Food', 'Humor']", "['Historical Fiction', 'Fiction', 'Historical', 'Victorian', 'Romance', 'British Literature', 'Adult']", "['Fantasy', 'Romance', 'Fiction', 'Epic Fantasy', 'Erotica', 'High Fantasy', 'Science Fiction Fantasy']", "['Fantasy', 'Romance', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Erotica', 'Science Fiction Fantasy']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Aliens', 'Young Adult']", "['Fantasy', 'Fiction', 'Alternate History', 'Science Fiction', 'Historical Fiction', 'Science Fiction Fantasy', 'Historical']", "['Science Fiction', 'Fiction', 'Time Travel', 'Historical Fiction', 'Fantasy', 'Alternate History', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Fantasy', 'Apocalyptic', 'Dystopia', 'Science Fiction Fantasy']", "['Fiction', 'Horror', 'Fantasy', 'Mystery', 'Science Fiction', 'Thriller', 'Supernatural']", "['Science Fiction', 'Fantasy', 'Fiction', 'Classics', 'Adventure', 'Pulp', 'Science Fiction Fantasy']", "['Science Fiction', 'Fantasy', 'Classics', 'Fiction', 'Adventure', 'Pulp', 'Science Fiction Fantasy']", "['Classics', 'Fiction', 'Adventure', 'Fantasy', 'Africa', 'Pulp', 'Science Fiction']", "['Fiction', 'Mystery', 'Historical Fiction', 'Gothic', 'Books About Books', 'Fantasy', 'Adult']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Mystery', 'Thriller', 'Noir', 'Crime']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Thriller', 'Mystery', 'Crime', 'Audiobook']", "['Fiction', 'Westerns', 'Historical Fiction', 'Literature', 'Novels', 'Literary Fiction', 'American']", "['Fiction', 'Horror', 'Southern Gothic', 'Gothic', 'Literature', 'Novels', 'Literary Fiction']", "['Thriller', 'Mystery', 'Fiction', 'Crime', 'Suspense', 'Mystery Thriller', 'Medical']", "['Erotica', 'Fiction', 'Classics', 'BDSM', 'Romance', 'France', 'Sexuality']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Romance', 'Adventure', 'Prehistoric']", "['Classics', 'Fiction', 'Historical Fiction', 'Historical', 'Coming Of Age', 'Literature', 'British Literature']", "['Time Travel', 'Fiction', 'Science Fiction', 'Historical Fiction', 'Fantasy', 'Romance', 'Mystery']", "['Nonfiction', 'Politics', 'Humor', 'Sociology', 'Essays', 'History', 'The United States Of America']", "['Nonfiction', 'Politics', 'Humor', 'History', 'The United States Of America', 'Comedy', 'Sociology']", "['Psychology', 'Nonfiction', 'Self Help', 'Business', 'Personal Development', 'Education', 'Leadership']", "['Fantasy', 'Science Fiction', 'Fiction', 'Short Stories', 'Dying Earth', 'Classics', 'Science Fiction Fantasy']", "['Science Fiction', 'Fantasy', 'Fiction', 'Speculative Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Novels']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction', 'High Fantasy', 'Science Fiction Fantasy', 'Arthurian']", "['Fantasy', 'Fiction', 'Science Fiction', 'High Fantasy', 'Science Fiction Fantasy', 'Epic Fantasy', 'Speculative Fiction']", "['Biography', 'History', 'Nonfiction', 'Presidents', 'American History', 'Politics', 'Biography Memoir']", "['Biography', 'History', 'Nonfiction', 'Presidents', 'Politics', 'American History', 'Biography Memoir']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Classics', 'Novels']", "['Architecture', 'Nonfiction', 'Art', 'History', 'Design', 'Journalism', 'Criticism']", "['Fiction', 'Historical Fiction', 'Contemporary', 'British Literature', 'Novels', 'Coming Of Age', 'Humor']", "['Science Fiction', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Science Fiction Fantasy', 'Speculative Fiction', 'Novels']", "['Science Fiction', 'Fiction', 'Dystopia', 'Hugo Awards', 'Classics', 'Cyberpunk', 'Science Fiction Fantasy']", "['Fiction', 'Canada', 'Classics', 'Canadian Literature', 'Novels', 'Literary Fiction', 'Literature']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Literature', 'Novels', 'Family', 'Historical Fiction']", "['Fiction', 'Historical Fiction', 'Romance', 'Classics', 'Mystery', 'Literary Fiction', 'Historical']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Speculative Fiction', 'Sci Fi Fantasy']", "['Nonfiction', 'Psychology', 'Biography', 'Science', 'Memoir', 'Gender', 'LGBT']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Fiction', 'Retellings', 'Beauty and The Beast']", "['Biography', 'Self Help', 'Nonfiction', 'Memoir', 'Inspirational', 'Autobiography', 'Christian']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Science Fiction', 'Mystery', 'Historical', 'Audiobook']", "['Fiction', 'Coming Of Age', 'Classics', 'Novels', 'Literature', 'American', 'Literary Fiction']", "['Fiction', 'Young Adult', 'Classics', 'Childrens', 'Adventure', 'Middle Grade', 'Survival']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Politics', 'School', 'Novels']", "['Classics', 'Fiction', 'Childrens', 'Fantasy', 'Adventure', 'Short Stories', 'Literature']", "['Fiction', 'Historical Fiction', 'Thriller', 'Mystery', 'Espionage', 'War', 'Suspense']", "['Fiction', 'Adventure', 'Thriller', 'Action', 'Mystery', 'Suspense', 'Mystery Thriller']", "['Science Fiction', 'Fiction', 'Classics', 'Short Stories', 'Science Fiction Fantasy', 'Fantasy', 'Robots']", "['Science Fiction', 'Fiction', 'Mystery', 'Science Fiction Fantasy', 'Robots', 'Classics', 'Novels']", "['Science Fiction', 'Fiction', 'Mystery', 'Classics', 'Science Fiction Fantasy', 'Robots', 'Crime']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Hugo Awards', 'Fantasy', 'Aliens']", "['Science Fiction', 'Fiction', 'Short Stories', 'Robots', 'Classics', 'Science Fiction Fantasy', 'Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Vampires', 'Paranormal', 'Paranormal Romance']", "['Fiction', 'Science Fiction', 'Dystopia', 'Post Apocalyptic', 'Mystery', 'Thriller', 'Fantasy']", "['Fiction', 'Ireland', 'Chick Lit', 'Short Stories', 'Romance', 'Irish Literature', 'Contemporary']", "['Fiction', 'Romance', 'Chick Lit', 'Greece', 'Contemporary', 'Ireland', 'Irish Literature']", "['Fiction', 'Ireland', 'Historical Fiction', 'Chick Lit', 'Romance', 'Irish Literature', 'Womens Fiction']", "['Fiction', 'Romance', 'Ireland', 'Chick Lit', 'Contemporary', 'Irish Literature', 'Adult Fiction']", "['Fiction', 'Romance', 'Chick Lit', 'Ireland', 'Historical Fiction', 'Irish Literature', 'Contemporary']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary Romance', 'Contemporary', 'Womens Fiction', 'Audiobook']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'Romance', 'Plays', 'School']", "['Classics', 'Plays', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre', 'School']", "['Fiction', 'Fantasy', 'Magical Realism', 'Horror', 'Speculative Fiction', 'Novels', 'Contemporary']", "['Fantasy', 'Fiction', 'Horror', 'Magical Realism', 'Mystery', 'Urban Fantasy', 'Novels']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Adult Fiction', 'Adult', 'Audiobook']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Adult', 'Contemporary Romance', 'Adult Fiction']", "['Young Adult', 'Childrens', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Contemporary', 'Juvenile']", "['Christmas', 'Fiction', 'Holiday', 'Christian Fiction', 'Christian', 'Romance', 'Inspirational']", "['Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Fantasy', 'Scandinavian Literature', 'Humor']", "['History', 'Nonfiction', 'War', 'Military Fiction', 'World War II', 'Military History', 'Historical']", "['History', 'Nonfiction', 'Military Fiction', 'World War II', 'War', 'Survival', 'Military History']", "['Fiction', 'Childrens', 'Historical Fiction', 'Classics', 'Middle Grade', 'Juvenile', 'Historical']", "['Childrens', 'Historical Fiction', 'Fiction', 'Middle Grade', 'Young Adult', 'Historical', 'Juvenile']", "['History', 'Nonfiction', 'Military Fiction', 'War', 'Military History', 'American History', 'Biography']", "['Biography', 'Nonfiction', 'History', 'Autobiography', 'Politics', 'Memoir', 'Race']", "['Nonfiction', 'History', 'Memoir', 'Classics', 'Biography', 'Race', 'African American']", "['Plays', 'Fiction', 'Classics', 'Theatre', 'Romance', 'Literature', 'School']", "['Fiction', 'Russian Literature', 'Russia', 'Literature', 'Classics', '19th Century', 'Novels']", "['History', 'Nonfiction', 'World War II', 'War', 'Military History', 'Germany', 'Military Fiction']", "['Historical Fiction', 'Fiction', 'Israel', 'Historical', 'Novels', 'Jewish', 'Thriller']", "['Historical Fiction', 'Fiction', 'Holocaust', 'Historical', 'World War II', 'War', 'Jewish']", "['Historical Fiction', 'Fiction', 'Ireland', 'Historical', 'Irish Literature', 'Classics', 'War']", "['Historical Fiction', 'Fiction', 'Classics', 'Historical', 'Israel', 'Jewish', 'War']", "['Romance', 'Paranormal', 'Paranormal Romance', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Paranormal', 'Vampires', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Adult', 'Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'China', 'Asia', 'Adventure', 'Classics']", "['Historical Fiction', 'Fiction', 'Historical', 'Travel', 'Adventure', 'Novels', 'Audiobook']", "['Historical Fiction', 'Fiction', 'World War II', 'War', 'Historical', 'Classics', 'Holocaust']", "['Nonfiction', 'Memoir', 'Biography', 'War', 'History', 'Biography Memoir', 'Autobiography']", "['Fiction', 'Classics', 'Adventure', 'Animals', 'Young Adult', 'Historical Fiction', 'Literature']", "['Classics', 'Fiction', 'Short Stories', 'Adventure', 'Literature', 'Animals', 'Young Adult']", "['Classics', 'Fiction', 'Adventure', 'Literature', 'Historical Fiction', 'Novels', 'American']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Graphic Novels Comics', 'Childrens', 'Comedy']", "['Biography', 'Picture Books', 'Nonfiction', 'History', 'Holocaust', 'Childrens', 'World War II']", "['Biography', 'Nonfiction', 'History', 'Holocaust', 'Childrens', 'World War II', 'Chapter Books']", "['History', 'Nonfiction', 'Politics', 'Philosophy', 'Theory', 'Sociology', 'Political Science']", "['Nonfiction', 'Biography', 'Memoir', 'Iran', 'Biography Memoir', 'Autobiography', 'Drama']", "['Psychology']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Crime', 'Romance']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Romance', 'Mystery Thriller', 'Crime']", "['Fiction', 'Thriller', 'Mystery', 'Mystery Thriller', 'Suspense', 'Crime', 'Romance']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Romance', 'Novels']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Romance', 'Drama']", "['Mystery', 'Fiction', 'Thriller', 'Suspense', 'Mystery Thriller', 'Crime', 'Adult']", "['Mystery', 'Fiction', 'Suspense', 'Thriller', 'Mystery Thriller', 'Crime', 'Adult']", "['Nonfiction', 'Religion', 'Philosophy', 'Atheism', 'Science', 'History', 'Politics']", "['History', 'Biography', 'Nonfiction', 'Politics', 'American History', 'Presidents', 'Philosophy']", "['Short Stories', 'Fiction', 'Literature', 'American', 'Literary Fiction', '20th Century', 'Classics']", "['Fiction', 'Horror', 'Young Adult', 'Classics', 'Mystery', 'Gothic', 'Thriller']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Middle Grade', 'Childrens', 'Coming Of Age', 'Historical Fiction']", "['Fiction', 'Young Adult', 'Horror', 'Thriller', 'Romance', 'Drama', 'Gothic']", "['Fiction', 'Young Adult', 'Horror', 'Romance', 'Gothic', 'Mystery', 'Drama']", "['Fiction', 'Young Adult', 'Horror', 'Romance', 'Gothic', 'Thriller', 'Drama']", "['Classics', 'Fiction', 'Horror', 'Short Stories', 'Science Fiction', 'Gothic', 'Literature']", "['Fantasy', 'Classics', 'Fiction', 'Historical Fiction', 'Arthurian', 'Mythology', 'Young Adult']", "['Graphic Novels', 'Nonfiction', 'Graphic Novels Comics', 'Memoir', 'Biography', 'Autobiography', 'Humor']", "['Comics', 'Graphic Novels', 'Fiction', 'Graphic Novels Comics', 'Comix', 'Comic Book', 'The United States Of America']", "['Fiction', 'Magical Realism', 'Fantasy', 'Novels', 'Contemporary', 'Literature', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Romance', 'Historical', 'Adult', 'Adult Fiction', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Irish Literature', 'Ireland', 'Literary Fiction', 'Historical', 'Novels']", "['Programming', 'Computer Science', 'Technology', 'Nonfiction', 'Software', 'Technical', 'Computers']", "['Horror', 'Fantasy', 'Fiction', 'Vampires', 'Paranormal', 'Classics', 'Gothic']", "['Horror', 'Fiction', 'Fantasy', 'Vampires', 'Classics', 'Paranormal', 'Urban Fantasy']", "['Fiction', 'Historical Fiction', 'Horror', 'Fantasy', 'Historical', 'Paranormal', 'Vampires']", "['Horror', 'Fantasy', 'Vampires', 'Fiction', 'Paranormal', 'Supernatural', 'Gothic']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'British Literature', '12th Century', 'Plantagenet']", "['Self Help', 'Nonfiction', 'Philosophy', 'Spirituality', 'Personal Development', 'Psychology', 'Inspirational']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Magic', 'Epic']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Magic', 'High Fantasy', 'Adventure', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Magic', 'Adult', 'Science Fiction Fantasy', 'Science Fiction', 'Epic']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Magic', 'Adventure']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Epic', 'Audiobook']", "['Fantasy', 'Horror', 'Fiction', 'Urban Fantasy', 'Science Fiction Fantasy', 'Paranormal', 'Dark Fantasy']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Suspense', 'Mystery Thriller', 'Adult']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense', 'Audiobook']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'Audiobook']", "['Fiction', 'Historical Fiction', 'France', 'World War II', 'War', 'Classics', 'Historical']", "['Fiction', 'Classics', 'Novels', 'Literature', 'American', 'Humor', 'Jewish']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Crime', 'Suspense', 'Legal Thriller']", "['Fiction', 'Historical Fiction', 'Historical', 'Literary Fiction', 'British Literature', 'War', 'Novels']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Mythology', 'War', 'Historical Fantasy']", "['Poetry', 'Spanish Literature', 'Classics', 'Fiction', 'Latin American Literature', 'Literature', 'Latin American']", "['Classics', 'Plays', 'Drama', 'Fiction', 'Theatre', 'Literature', 'Poetry']", "['Fantasy', 'Young Adult', 'Fiction', 'Retellings', 'Adventure', 'Steampunk', 'Magic']", "['Fiction', 'Espionage', 'Thriller', 'Mystery', 'Spy Thriller', 'British Literature', 'Novels']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Crime', 'Contemporary', 'School', 'Teen']", "['Picture Books', 'Childrens', 'Fiction', 'Humor', 'Classics', 'Monsters', 'Storytime']", "['History', 'Civil War', 'Nonfiction', 'American History', 'War', 'American Civil War', 'Military History']", "['History', 'Civil War', 'Nonfiction', 'American History', 'American Civil War', 'War', 'Military Fiction']", "['Fiction', 'Ireland', 'Historical Fiction', 'Irish Literature', 'Literary Fiction', 'Historical', 'Coming Of Age']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Womens Fiction', 'Novels', 'Relationships']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Adult Fiction', 'Adult', 'British Literature']", "['Christian', 'Nonfiction', 'Religion', 'Theology', 'Christianity', 'Spirituality', 'Faith']", "['Fiction', 'Short Stories', 'Humor', 'Classics', 'Fantasy', 'British Literature', 'Adult']", "['Short Stories', 'Fantasy', 'LGBT', 'Fiction', 'Fairy Tales', 'Queer', 'Retellings']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Literary Fiction', '18th Century', 'Prostitution']", "['Fiction', 'Czech Literature', 'Novels', 'Literature', 'Classics', 'Philosophy', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Adventure', 'Magic']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Young Adult', 'Science Fiction Fantasy', 'Adventure']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Young Adult', 'Adventure']", "['Fiction', 'Classics', 'Art', 'Literature', 'Historical Fiction', 'Novels', 'British Literature']", "['Young Adult', 'Mystery', 'Fiction', 'Realistic Fiction', 'Thriller', 'Adventure', 'School']", "['Fantasy', 'Steampunk', 'Fiction', 'Mystery', 'Science Fiction', 'Historical Fiction', 'Adventure']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Historical', '19th Century', 'Audiobook']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adult', 'Adventure', 'Pirates']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Dragons', 'Adventure', 'Adult']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dragons', 'High Fantasy', 'Adventure', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Dragons', 'Science Fiction Fantasy', 'Adventure']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adventure', 'Dragons']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'British Literature', 'Suspense']", "['Historical Fiction', 'Fiction', 'LGBT', 'Historical', 'Romance', 'Queer', 'Mystery']", "['Fantasy', 'Classics', 'Childrens', 'Fiction', 'Middle Grade', 'Young Adult', 'Adventure']", "['Classics', 'Fiction', 'India', 'Historical Fiction', 'Literature', 'Novels', 'British Literature']", "['Fiction', 'Psychology', 'Classics', 'Young Adult', 'Mental Health', 'Mental Illness', 'Contemporary']", "['Science Fiction', 'Fiction', 'Space Opera', 'Fantasy', 'Science Fiction Fantasy', 'Hard Science Fiction', 'Epic']", "['Science Fiction', 'Space Opera', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Horror', 'Space']", "['Science Fiction', 'Space Opera', 'Fiction', 'Audiobook', 'Fantasy', 'Science Fiction Fantasy', 'Space']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook', 'Space']", "['Science Fiction', 'Fiction', 'Space Opera', 'Audiobook', 'Fantasy', 'Military Fiction', 'Science Fiction Fantasy']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'British Literature', 'Literary Fiction', 'Crime']", "['Fiction', 'Contemporary', 'Romance', 'Literary Fiction', 'British Literature', 'Novels', 'Literature']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Fiction', 'Dystopia', 'Middle Grade', 'Childrens']", "['Fantasy', 'Young Adult', 'Fiction', 'Paranormal', 'Middle Grade', 'Supernatural', 'Childrens']", "['History', 'Nonfiction', 'Biography', 'American History', 'Adventure', 'Historical', 'Travel']", "['Nonfiction', 'Sociology', 'Poverty', 'History', 'Politics', 'Economics', 'Journalism']", "['Classics', 'Fiction', 'Short Stories', 'Horror', 'Fantasy', 'Humor', 'Gothic']", "['Fiction', 'Short Stories', 'Literature', 'American', 'Contemporary', 'Literary Fiction', 'Americana']", "['Short Stories', 'Fiction', 'Classics', 'Southern Gothic', 'American', 'Gothic', 'Southern']", "['Nonfiction', 'Self Help', 'Leadership', 'Psychology', 'Business', 'Relationships', 'Personal Development']", "['Poetry', 'Nonfiction', 'Feminism', 'Queer', 'Theory', 'Race', 'Memoir']", "['Fiction', 'Classics', 'Novels', 'Horror', 'Literature', 'Philosophy', 'Literary Fiction']", "['Fiction', 'Classics', 'Poetry', 'Philosophy', 'Portugal', 'Literature', 'Portuguese Literature']", "['Fantasy', 'Young Adult', 'Fiction', 'Dragons', 'Adventure', 'Magic', 'High Fantasy']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'British Literature', 'Thriller']", "['Fiction', 'Historical Fiction', 'Literature', 'Classics', 'Novels', 'Holocaust', 'Fantasy']", "['Classics', 'Fiction', 'Literature', 'Novels', 'Poetry', '20th Century', 'Literary Fiction']", "['Classics', 'Fiction', 'Literature', 'Romance', 'American', 'Novels', '20th Century']", "['Classics', 'Fiction', 'Literature', 'Novels', 'American', 'Romance', 'Historical Fiction']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'War', 'Novels', 'American']", "['Classics', 'Fiction', 'Spanish Literature', 'Literature', 'Novels', 'Latin American']", "['Fiction', 'Classics', 'Poetry', 'Fantasy', 'American', 'Novels', 'Literature']", "['Relationships', 'Self Help', 'Nonfiction', 'Psychology', 'Marriage', 'Love', 'Personal Development']", "['Music', 'Nonfiction', 'Memoir', 'Biography', 'Romance', 'Biography Memoir', 'Autobiography']", "['Poetry', 'Classics', 'Nonfiction', 'Philosophy', 'Writing', 'Essays', 'German Literature']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'Fiction', 'High Fantasy', 'Adventure']", "['Fiction', 'Magical Realism', 'Contemporary', 'Novels', 'Literary Fiction', 'Adult Fiction', 'Adult']", "['Fiction', 'Westerns', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'American']", "['Fiction', 'Historical Fiction', 'African American', 'Classics', 'Literature', 'Mystery', 'Race']", "['Fiction', 'Classics', 'Novels', 'American', 'Literature', 'The United States Of America', 'Romance']", "['Poetry', 'Short Stories', 'Fiction', 'Classics', 'Humor', 'Essays', 'Literature']", "['Novels', 'Iran', 'Fiction', 'Literature', 'Historical Fiction', 'Classics', 'Romance']", "['Fiction', 'German Literature', 'Classics', 'Germany', 'Literature', 'Novels', 'Nobel Prize']", "['Poetry', 'Iran', 'Literature', 'Classics', 'Islam', 'Nonfiction', 'Spirituality']", "['Classics', 'Fantasy', 'Fiction', 'Childrens', 'Fairy Tales', 'Short Stories', 'Literature']", "['Memoir', 'Nonfiction', 'Humor', 'Biography', 'Iran', 'Biography Memoir', 'Autobiography']", "['Fiction', 'Thriller', 'Historical Fiction', 'Mystery', 'Adventure', 'Historical', 'Suspense']", "['Fiction', 'Feminism', 'Classics', 'Womens', 'Novels', 'Contemporary', 'Literature']", "['Fiction', 'Mystery', 'Thriller', 'Espionage', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Fiction', 'Espionage', 'Thriller', 'Mystery', 'Germany', 'Spy Thriller', 'Suspense']", "['Thriller', 'Crime', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense']", "['Fiction', 'Southern Gothic', 'Historical Fiction', 'Novels', 'American', 'Literature', 'Literary Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Romance', 'Prehistoric', 'Adventure']", "['Christian Fiction', 'Historical Fiction', 'Christian', 'Fiction', 'Romance', 'Historical', 'Christian Romance']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Fantasy', 'Space Opera', 'Literature']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Realistic Fiction', 'Humor', 'Kids']", "['Self Help', 'Nonfiction', 'Psychology', 'Relationships', 'Health', 'Personal Development', 'Inspirational']", "['Classics', 'History', 'Nonfiction', 'Literature', '18th Century', 'Historical', 'British Literature']", "['Fiction', 'Canada', 'Literary Fiction', 'Contemporary', 'Classics', 'Canadian Literature', 'Feminism']", "['Fiction', 'Science Fiction', 'Dystopia', 'Post Apocalyptic', 'Fantasy', 'Canada', 'Speculative Fiction']", "['Fiction', 'Erotica', 'Young Adult', 'Italian Literature', 'Romance', 'Contemporary', 'Italy']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fae', 'Romance', 'Fiction', 'Paranormal']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Novels', 'American']", "['Young Adult', 'Fiction', 'Classics', 'Contemporary', 'Mental Health', 'Realistic Fiction', 'Banned Books']", "['Nonfiction', 'Memoir', 'Psychology', 'Mental Health', 'Mental Illness', 'Biography', 'Biography Memoir']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Literature', 'American', 'Novels']", "['Fiction', 'Horror', 'Literature', 'Novels', 'Thriller', 'Dark', 'Literary Fiction']", "['Fiction', 'Classics', 'Thriller', 'Contemporary', 'Mystery', 'Literature', 'Novels']", "['Classics', 'Plays', 'Fiction', 'Drama', 'School', 'Romance', 'Literature']", "['Short Stories', 'Fiction', 'Fantasy', 'Magical Realism', 'Literary Fiction', 'Contemporary', 'Adult']", "['Dinosaurs']", "['Fantasy', 'Urban Fantasy', 'Mystery', 'Fiction', 'Paranormal', 'Magic', 'Audiobook']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Classics', 'Childrens', 'Middle Grade', 'Historical']", "['Nonfiction', 'Education', 'Memoir', 'Teaching', 'Biography', 'School', 'Inspirational']", "['Fiction', 'Contemporary', 'Romance', 'Novels', 'Family', 'Humor', 'Chick Lit']", "['Fiction', 'Romance', 'Magical Realism', 'France', 'Fantasy', 'Contemporary', 'Historical Fiction']", "['Fantasy', 'Humor', 'Writing', 'Fiction', 'Reference', 'Young Adult', 'High Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Middle Grade', 'Childrens', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Science Fiction', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Humor', 'Childrens']", "['Horror', 'Fiction', 'Fantasy', 'LGBT', 'Vampires', 'M M Romance', 'Paranormal']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Adventure', 'Childrens', 'Magic']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Science Fiction Fantasy', 'High Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'High Fantasy', 'Adventure', 'Young Adult Fantasy']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Horror']", "['History', 'Nonfiction', 'Latin American History', 'Politics', 'World History', 'School', 'Historical']", "['Picture Books', 'Childrens', 'Fantasy', 'Fiction', 'Graphic Novels', 'Humor', 'Young Adult']", "['Young Adult', 'Horror', 'Mystery', 'Fiction', 'Thriller', 'Suspense', 'Mystery Thriller']", "['Short Stories', 'Fiction', 'France', 'Contemporary', 'Romance', 'French Literature', 'Roman']", "['Fiction', 'France', 'Romance', 'Contemporary', 'Roman', 'French Literature', 'Novels']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Magic', 'Childrens', 'Adventure']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Magic', 'Adventure']", "['Fantasy', 'Young Adult', 'Mystery', 'Fiction', 'Romance', 'Paranormal', 'Ghosts']", "['Fantasy', 'Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Post Apocalyptic', 'Young Adult Fantasy']", "['Young Adult', 'LGBT', 'Romance', 'Fiction', 'Queer', 'Lesbian', 'Contemporary']", "['Fantasy', 'Romance', 'Fiction', 'Dark Fantasy', 'Magic', 'Science Fiction Fantasy', 'High Fantasy']", "['Fantasy', 'Romance', 'Fiction', 'Magic', 'Dark Fantasy', 'High Fantasy', 'Science Fiction Fantasy']", "['Fantasy', 'Romance', 'Magic', 'Fiction', 'Dark Fantasy', 'High Fantasy', 'Paranormal']", "['Fantasy', 'Romance', 'Fiction', 'Magic', 'Dark Fantasy', 'High Fantasy', 'Paranormal']", "['Science Fiction', 'Young Adult', 'Fiction', 'Fantasy', 'Adventure', 'Urban Fantasy', 'Thriller']", "['Short Stories', 'Fiction', 'Contemporary', 'Literary Fiction', 'Young Adult', 'Literature', 'American']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Time Travel', 'Science Fiction Fantasy', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Audiobook', 'High Fantasy']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Audiobook', 'Time Travel']", "['Horror', 'Gothic', 'Vampires', 'Fiction', 'Fantasy', 'LGBT', 'Queer']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Westerns', 'Audiobook', 'Thriller']", "['Nonfiction', 'Memoir', 'Biography', 'Humor', 'Animals', 'Travel', 'Classics']", "['Fiction', 'Classics', 'France', 'French Literature', 'Philosophy', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Historical Fiction', 'American', 'Literature', 'Literary Fiction', '20th Century']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'Music', 'American']", "['Fiction', 'Philosophy', 'Fantasy', 'Young Adult', 'Mystery', 'Novels', 'Magical Realism']", "['Fiction', 'Classics', 'Historical Fiction', 'Novels', 'American', 'Literature', 'Literary Fiction']", "['Fiction', 'Classics', 'American', 'Novels', 'Literary Fiction', 'The United States Of America', 'Literature']", "['Fiction', 'Classics', 'American', 'Literature', 'Novels', 'Marriage', 'The United States Of America']", "['Fiction', 'Short Stories', 'Classics', 'Literature', 'Southern Gothic', 'Essays', 'Southern']", "['Short Stories', 'Fiction', 'Classics', 'Southern Gothic', 'Literature', 'Southern', 'American']", "['Fiction', 'Classics', 'Southern Gothic', 'Novels', 'Literature', 'Southern', 'Gothic']", "['Fiction', 'Classics', 'Southern Gothic', 'Novels', 'Literature', 'Gothic', 'Southern']", "['Science Fiction', 'Fiction', 'Horror', 'Vampires', 'Aliens', 'Fantasy', 'Space']", "['Philosophy', 'Nonfiction', 'Nature', 'Spirituality', 'Psychology', 'Ecology', 'Science']", "['Politics', 'Nonfiction', 'Political Science', 'History']", "['Parenting', 'Christian', 'Christianity', 'Nonfiction']", "['Philosophy', 'Nonfiction', 'Spirituality', 'Religion', 'Self Help', 'Audiobook', 'Taoism']", "['Classics', 'Nonfiction', 'Biography', 'Memoir', 'Historical', 'Holocaust', 'Autobiography']", "['Fiction', 'Classics', 'Travel', 'Humor', 'British Literature', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Crime', 'Mystery', 'Thriller', 'Literature', 'British Literature']", "['Young Adult', 'Fiction', 'Mystery', 'Classics', 'Teen', 'School', 'Thriller']", "['Poetry', 'Fiction', 'Classics', 'Canada', 'Romance', 'Novels', '20th Century']", "['Fantasy', 'Animals', 'Fiction', 'Middle Grade', 'Childrens', 'Young Adult', 'Adventure']", "['Short Stories', 'Fantasy', 'Horror', 'Fiction', 'Gothic', 'Classics', 'Fairy Tales']", "['Fantasy', 'Young Adult', 'Romance', 'Vampires', 'Fiction', 'Paranormal', 'Paranormal Romance']", "['Biography', 'Nonfiction', 'Politics', 'History', 'Memoir', 'Autobiography', 'Presidents']", "['Science', 'Nonfiction', 'History', 'Anthropology', 'Evolution', 'Biology', 'Sociology']", "['Humor', 'Nonfiction', 'Classics', 'Reference', 'Language', 'Philosophy', 'Comedy']", "['Classics', 'Horror', 'Fiction', 'Poetry', 'Short Stories', 'Gothic', 'Mystery']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Detective', 'Mystery Thriller', 'Suspense']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Crime', 'Mystery Thriller', 'Novels']", "['Nonfiction', 'Memoir', 'Biography', 'Travel', 'Education', 'Book Club', 'Biography Memoir']", "['Fiction', 'Philosophy', 'Russia', 'Russian Literature', 'Literature', 'Classics', 'Novels']", "['Historical Fiction', 'Fiction', 'World War II', 'Holocaust', 'Historical', 'War', 'Germany']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Historical Mystery', 'Thriller', '18th Century']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Jewish', '17th Century', 'Historical Mystery']", "['Classics', 'Fiction', 'Historical Fiction', 'Gothic', '19th Century', 'Scotland', 'Romance']", "['Fiction', 'Contemporary', 'Chick Lit', 'Adult Fiction', 'Novels', 'Family', 'New York']", "['Classics', 'Fiction', 'France', 'French Literature', 'Romance', 'Historical Fiction', '18th Century']", "['Classics', 'Fiction', 'Philosophy', 'France', 'Literature', 'Novels', 'French Literature']", "['Fiction', 'Israel', 'Historical Fiction', 'Romance', 'Jewish', 'Canada', 'Drama']", "['Fiction', 'Magical Realism', 'Classics', 'Asia', 'Literary Fiction', 'Novels', 'Literature']", "['Poetry', 'Asia', 'Asian Literature', 'Literature', 'Fiction']", "['Fiction', 'Art', 'New York', 'Novels', 'Literature']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Audiobook', 'Mystery Thriller', 'Thriller']", "['Fiction', 'Science Fiction', 'Fantasy', 'Historical Fiction', 'Dystopia', 'Contemporary', 'Literary Fiction']", "['Fiction', 'Classics', 'Fantasy', 'Humor', 'Science Fiction', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Novels', 'Literary Fiction', 'Literature', 'American', '20th Century']", "['Romance', 'Gothic', 'Historical Fiction', 'Mystery', 'Fiction', 'Historical Romance', 'Historical']", "['Fiction', 'Africa', 'Short Stories', 'Literature', 'Nobel Prize', 'Classics', 'Novels']", "['Young Adult', 'Sports', 'Fiction', 'Realistic Fiction', 'Teen', 'Contemporary', 'Banned Books']", "['Young Adult', 'Fiction', 'Contemporary', 'Romance', 'Realistic Fiction', 'Teen', 'Coming Of Age']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Adventure', 'Audiobook', 'Space']", "['Science Fiction', 'Short Stories', 'Fiction', 'Fantasy', 'Classics', 'Time Travel', 'Science Fiction Fantasy']", "['Fantasy', 'Forgotten Realms', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adventure', 'Dungeons and Dragons']", "['Classics', 'Science Fiction', 'Fantasy', 'Young Adult', 'Short Stories', 'Coming Of Age', 'Magical Realism']", "['Young Adult', 'Fiction', 'Sports', 'School', 'Realistic Fiction', 'Read For School', 'Historical Fiction']", "['Science Fiction', 'Fiction', 'Short Stories', 'Classics', 'Robots', 'Science Fiction Fantasy', 'Fantasy']", "['Fiction', 'Japanese Literature', 'Short Stories', 'Contemporary', 'Asian Literature', 'Romance', 'Literary Fiction']", "['Classics', 'Fiction', 'Literature', 'Adult', 'Historical Fiction', 'Essays', 'School']", "['Fiction', 'Classics', 'Historical Fiction', 'Time Travel', 'Fantasy', 'Science Fiction', 'Mystery']", "['Fiction', 'Short Stories', 'Literature', 'American', '20th Century', 'Classics', 'Americana']", "['Fiction', 'Horror', 'Thriller', 'Dark', 'Mystery', 'Classics', 'Crime']", "['Fiction', 'Classics', 'New York', 'American', 'Novels', 'Literature', 'Contemporary']", "['Comics', 'Humor', 'Fiction', 'Graphic Novels', 'Comedy', 'Comic Strips', 'Art']", "['Fiction', 'India', 'Historical Fiction', 'Classics', 'Indian Literature', 'Romance', 'Historical']", "['Fiction', 'Music', 'India', 'Romance', 'Literary Fiction', 'Contemporary', 'Novels']", "['Classics', 'Fiction', 'Gothic', 'Historical Fiction', 'Literature', '19th Century', 'Historical']", "['Fiction', 'Short Stories', 'Poetry', 'Literature', 'American', 'Classics', 'The United States Of America']", "['Poetry', 'Fiction', 'Classics', 'Literature', 'American', '20th Century', 'Unfinished']", "['Plays', 'Drama', 'Theatre', 'Fiction', 'Classics', 'Mental Health', '20th Century']", "['Fiction', 'Czech Literature', 'Novels', 'Literature', 'Classics', 'Contemporary', '20th Century']", "['Fiction', 'Mystery', 'American', 'Contemporary', 'Novels', 'Literature', 'The United States Of America']", "['Fiction', 'Historical Fiction', 'Westerns', 'Classics', 'Humor', 'Historical', 'Adventure']", "['Fiction', 'Literature', 'American', 'Novels', 'Literary Fiction', 'The United States Of America', 'Jewish']", "['Romance', 'Paranormal', 'Paranormal Romance', 'Dragons', 'Fantasy', 'Urban Fantasy', 'Demons']", "['Vampires', 'Romance', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Humor']", "['Classics', 'Fiction', 'Literature', '19th Century', 'Victorian', 'Novels', 'British Literature']", "['Young Adult', 'Mystery', 'Fiction', 'Realistic Fiction', 'Thriller', 'Suspense', 'Crime']", "['Fiction', 'Religion', 'Spirituality', 'Philosophy', 'Christian', 'Classics', 'Young Adult']", "['Classics', 'Fiction', 'Victorian', '19th Century', 'Literature', 'Historical Fiction', 'British Literature']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Science Fiction Fantasy', 'Time Travel', 'Dystopia', 'Fantasy']", "['Science Fiction', 'Fiction', 'Young Adult', 'Adventure', 'Science Fiction Fantasy', 'Fantasy', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Time Travel', 'Speculative Fiction', 'Adventure']", "['Nonfiction', 'Food', 'Memoir', 'Humor', 'History', 'Travel', 'Audiobook']", "['Christian Fiction', 'Fiction', 'Christian', 'Religion', 'Fantasy', 'Thriller', 'Christianity']", "['Fiction', 'Contemporary', 'Literature', 'Novels', 'American', 'Literary Fiction', 'Adult Fiction']", "['Fiction', 'Contemporary', 'Canada', 'Literary Fiction', 'Classics', 'Novels', 'Feminism']", "['Fiction', 'Art', 'Fantasy', 'Romance', 'Graphic Novels', 'Novels', 'Mystery']", "['Fiction', 'Young Adult', 'Humor', 'Comedy', 'British Literature', 'Contemporary', 'Childrens']", "['Fiction', 'Young Adult', 'Humor', 'Comedy', 'Childrens', 'British Literature', 'Contemporary']", "['Fiction', 'Humor', 'Young Adult', 'Comedy', 'Contemporary', 'British Literature', 'Novels']", "['Fiction', 'India', 'Historical Fiction', 'Indian Literature', 'Magical Realism', 'Historical', 'Romance']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Short Stories', 'Erotica']", "['Essays', 'Nonfiction', 'Philosophy', 'Writing', 'Literature', 'American', 'Short Stories']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Young Adult', 'Urban Fantasy', 'Romance', 'Retellings']", "['Historical Fiction', 'Fiction', 'Japan', 'Asia', 'Historical', 'Asian Literature', 'China']", "['Historical Fiction', 'Fiction', 'China', 'Asia', 'Historical', 'Asian Literature', 'Book Club']", "['Religion', 'Spirituality', 'Philosophy', 'Nonfiction', 'Judaism', 'Jewish', 'Theology']", "['Nonfiction', 'Religion', 'Philosophy', 'Atheism', 'Politics', 'Science', 'Christianity']", "['Religion', 'Nonfiction', 'History', 'Christianity', 'Theology', 'Philosophy', 'Spirituality']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Historical', 'Fiction', 'Romance', 'Paranormal']", "['Historical Fiction', 'Fiction', 'Ireland', 'Historical', 'Irish Literature', 'Audiobook', 'Epic']", "['Horror', 'Classics', 'Gothic', 'Science Fiction', 'Mystery', 'Fantasy', 'Literature']", "['Classics', 'Horror', 'Fiction', 'Gothic', 'Science Fiction', 'Mystery', 'Fantasy']", "['Fiction', 'Philosophy', 'Novels', 'Literature', 'American', 'Literary Fiction', 'Contemporary']", "['Fiction', 'Horror', 'Queer', 'LGBT', 'Gay', 'Contemporary', 'Thriller']", "['Fiction', 'Queer', 'LGBT', 'Horror', 'Gay', 'Novels', 'Contemporary']", "['Fiction', 'Horror', 'Queer', 'LGBT', 'Gay', 'Dark', 'Novels']", "['Fiction', 'Queer', 'LGBT', 'Young Adult', 'Gay', 'Contemporary', 'Dark']", "['Fiction', 'Queer', 'LGBT', 'Gay', 'Horror', 'Dark', 'American']", "['Fiction', 'Classics', 'War', 'Historical Fiction', 'Horror', 'Literature', 'Novels']", "['Science', 'Nonfiction', 'Psychology', 'Spirituality', 'Philosophy', 'Religion', 'Biology']", "['Nonfiction', 'Philosophy', 'History', 'Science', 'Spirituality', 'Psychology', 'Anthropology']", "['Nonfiction', 'Biography', 'Politics', 'Feminism', 'History', 'Memoir', 'Autobiography']", "['Philosophy', 'Nonfiction', 'Essays', 'Theory', 'France', 'Mythology', 'Sociology']", "['Parenting', 'Nonfiction', 'Psychology', 'Education', 'Self Help', 'Gender', 'Childrens']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Chick Lit', 'Teen']", "['Philosophy', 'Nonfiction', 'Psychology', 'Self Help', 'Essays', 'Personal Development', 'Classics']", "['Philosophy', 'Science', 'Nonfiction', 'Atheism', 'History', 'Essays', 'Theology']", "['Fiction', 'Short Stories', 'Italian Literature', 'Literature', 'Classics', 'Italy', 'Historical Fiction']", "['Economics', 'Politics', 'Nonfiction', 'Philosophy', 'Business', 'History', 'Finance']", "['Philosophy', 'Classics', 'Nonfiction', 'German Literature', 'Literature', 'Religion', 'Psychology']", "['Philosophy', 'Linguistics', 'Language', 'Nonfiction', 'Academic', 'Essays', 'Theory']", "['Young Adult', 'Fiction', 'Horror', 'Crime', 'Thriller', 'Realistic Fiction', 'Teen']", "['Science Fiction', 'Fiction', 'Space Opera', 'War', 'Science Fiction Fantasy', 'Military Fiction', 'Space']", "['Philosophy', 'Nonfiction', 'France', 'Classics', 'Essays', 'Theory', 'French Literature']", "['Classics', 'Fiction', 'Philosophy', 'Spirituality', 'Religion', 'Literature', 'Buddhism']", "['History', 'Nonfiction', 'Politics', 'Russia', 'Journalism', 'Classics', 'Russian History']", "['History', 'Nonfiction', 'Philosophy', 'Politics', 'Holocaust', 'Psychology', 'Classics']", "['Nonfiction', 'Theology', 'Religion', 'History', 'Christianity', 'Philosophy', 'Faith']", "['Historical Fiction', 'Fiction', 'Classics', 'Historical', 'Literature', 'Novels', 'Roman']", "['Fiction', 'LGBT', 'Romance', 'Queer', 'Classics', 'Lesbian', 'Historical Fiction']", "['Biography', 'History', 'Nonfiction', 'Classics', 'Autobiography', 'Memoir', 'American History']", "['Fantasy', 'Science Fiction', 'Fiction', 'Historical Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Audiobook']", "['Horror', 'Fiction', 'Classics', 'Science Fiction', 'Thriller', 'Mystery', 'Feminism']", "['Poetry', 'Fiction', 'Fantasy', 'Classics', 'Mythology', 'School', 'Literature']", "['Comics', 'Graphic Novels', 'Batman', 'Dc Comics', 'Fiction', 'Graphic Novels Comics', 'Comic Book']", "['Fiction', 'Science Fiction', 'Dystopia', 'Fantasy', 'Classics', 'Post Apocalyptic', 'Speculative Fiction']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Literary Fiction', 'Novels', 'Historical', 'Contemporary']", "['Self Help', 'Nonfiction', 'Spirituality', 'Psychology', 'Philosophy', 'Personal Development', 'Inspirational']", "['Fiction', 'Literature', 'Classics', 'Novels', 'Mystery', 'American', 'Literary Fiction']", "['Horror', 'Fiction', 'Fantasy', 'Novella', 'Classics', 'Supernatural', 'Paranormal']", "['Fantasy', 'Horror', 'Fiction', 'Dark Fantasy', 'Science Fiction Fantasy', 'Science Fiction', 'Urban Fantasy']", "['Fiction', 'Ireland', 'Irish Literature', 'Contemporary', 'Literary Fiction', 'Novels', 'Literature']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', '20th Century', 'Novella']", "['Fiction', 'Classics', 'Literature', 'Africa', 'Novels', 'American', 'Literary Fiction']", "['Plays', 'Classics', 'France', 'Theatre', 'Fiction', 'School', 'French Literature']", "['Fantasy', 'Animals', 'Fiction', 'Cats', 'Childrens', 'Middle Grade', 'Adventure']", "['Fiction', 'Young Adult', 'Fantasy', 'Historical Fiction', 'Time Travel', 'Audiobook', 'Science Fiction']", "['Fiction', 'Short Stories', 'Humor', 'Literature', 'Contemporary', 'Young Adult', 'Literary Fiction']", "['Fiction', 'Short Stories', 'Literature', 'Literary Fiction', 'American', 'Contemporary', 'Humor']", "['Fiction', 'Mystery', 'Thriller', 'Novels', 'Contemporary', 'Crime', 'Literary Fiction']", "['Fiction', 'France', 'French Literature', 'Historical Fiction', 'Literature', 'War', 'Novels']", "['Poetry', 'Classics', 'Irish Literature', 'Fiction', 'Ireland', 'Literature', '20th Century']", "['Fiction', 'France', 'Classics', 'Plays', 'Romance', 'French Literature', 'Film']", "['Fiction', 'German Literature', 'Literature', 'Classics', 'Germany', 'Novels', 'LGBT']", "['Fiction', 'Classics', 'Short Stories', 'German Literature', 'Literature', 'Germany', '20th Century']", "['Fiction', 'Young Adult', 'Horror', 'Romance', 'Gothic', 'Drama', 'Mystery']", "['Fiction', 'Classics', 'Queer', 'LGBT', 'Novels', '20th Century', 'Literature']", "['Poetry', 'Classics', 'German Literature', 'Fiction', '20th Century', 'Germany', 'Literature']", "['Poetry', 'Classics', 'German Literature', 'Fiction', 'Literature', 'Germany', 'Philosophy']", "['Fiction', 'Fantasy', 'Science Fiction', 'Magical Realism', 'Post Apocalyptic', 'Novels', 'Literature']", "['Nonfiction', 'History', 'Classics', 'Politics', 'Biography', 'Essays', 'Philosophy']", "['Fiction', 'Classics', 'Spanish Literature', 'Literature', 'Novels', 'Latin American', 'Magical Realism']", "['Fiction', 'Latin American', 'Novels', 'Literature', 'Spanish Literature', 'Classics', 'Magical Realism']", "['Fiction', 'Latin American', 'Spanish Literature', 'Novels', 'Classics', 'Latin American Literature', 'Roman']", "['Short Stories', 'Fiction', 'Classics', 'Spanish Literature', 'Magical Realism', 'Literature', 'Latin American']", "['Fiction', 'Classics', 'Spanish Literature', 'Literature', 'Novels', 'Latin American', 'Latin American Literature']", "['Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Realistic Fiction', 'School', 'Classics']", "['Fiction', 'Classics', 'Philosophy', 'Greece', 'Novels', 'Literature', 'Historical Fiction']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Fantasy', 'Space Opera', 'Audiobook']", "['Science Fiction', 'Fiction', 'Horror', 'Science Fiction Fantasy', 'Dystopia', 'Fantasy', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Science Fiction Fantasy', 'Space Opera', 'Novels']", "['Fiction', 'Philosophy', 'Short Stories', 'Novels', 'Literature', 'Self Help', 'Inspirational']", "['Christian', 'Nonfiction', 'Christianity', 'Religion', 'Faith', 'Theology', 'Christian Living']", "['Christian', 'Nonfiction', 'Christianity', 'Religion', 'Theology', 'Faith', 'Christian Living']", "['Classics', 'Fiction', 'Historical Fiction', 'Romance', 'Literature', 'American', 'Historical']", "['Fiction', 'Historical Fiction', 'Literature', 'Novels', 'Latin American', 'Classics', 'Nobel Prize']", "['Fiction', 'Romance', 'Spanish Literature', 'Nobel Prize', 'Novels', 'Latin American', 'Literature']", "['Fiction', 'Historical Fiction', 'Novels', 'Spanish Literature', 'Latin American', 'Literature', 'Nobel Prize']", "['Fiction', 'Literature', 'Classics', 'Latin American', 'Novels', 'Spanish Literature', 'Latin American Literature']", "['Fiction', 'Latin American', 'Spanish Literature', 'Classics', 'Novels', 'Latin American Literature', 'Nobel Prize']", "['Plays', 'Drama', 'Fiction', 'Theatre', 'Classics', 'Literature', 'Irish Literature']", "['Fiction', 'Portugal', 'Portuguese Literature', 'Novels', 'Magical Realism', 'Literature', 'Nobel Prize']", "['Travel', 'Nonfiction', 'Religion', 'Islam', 'History', 'Iran', 'Pakistan']", "['History', 'Nonfiction', 'Biography', 'Politics', 'Philosophy', 'Autobiography', 'Classics']", "['Historical Fiction', 'Fiction', 'Historical', 'Childrens', 'Holocaust', 'War', 'Young Adult']", "['Fiction', 'Adventure', 'Classics', 'Science Fiction', 'France', 'Travel', 'Fantasy']", "['Spirituality', 'Nonfiction', 'New Age', 'Self Help', 'Paranormal', 'Metaphysics', 'Reference']", "['Classics', 'Fiction', 'Adventure', 'Historical Fiction', 'Romance', 'Fantasy', 'Novels']", "['Nonfiction', 'Memoir', 'China', 'Biography', 'History', 'Asia', 'Biography Memoir']", "['Westerns', 'Fiction', 'Historical Fiction', 'Historical', 'Adventure', 'Novels', 'Classics']", "['Fiction', 'Westerns', 'Contemporary', 'Literary Fiction', 'Literature', 'Novels', 'Southern']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Politics', 'Novels', 'American']", "['Memoir', 'Nonfiction', 'LGBT', 'Gender', 'Queer', 'Biography', 'Transgender']", "['Fiction', 'Novels', 'Polish Literature', 'Literature', 'Literary Fiction', 'Roman', 'The United States Of America']", "['Sports', 'Nonfiction', 'History', 'Biography', 'Essays', 'Psychology', 'Writing']", "['Nonfiction', 'Nature', 'Environment', 'Science', 'Essays', 'Biography', 'History']", "['Historical Fiction', 'Fiction', 'Historical', 'Spain', 'Spanish Literature', 'Medieval', 'Novels']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Detective']", "['Nonfiction', 'History', 'Humor', 'Comedy', 'Biography', 'Pop Culture', 'Tv']", "['Fiction', 'Historical Fiction', 'Asia', 'Music', 'Historical', 'Travel', 'Novels']", "['History', 'Military History', 'Military Fiction', 'Nonfiction', 'Leadership', 'War', 'Biography']", "['History', 'Philosophy', 'Biography', 'Nonfiction', 'Politics', 'Cultural', 'Essays']", "['History', 'Nonfiction', 'Politics', 'World History', 'American History', 'European History', 'Economics']", "['Biography', 'Film', 'Nonfiction', 'Media Tie In', 'Biography Memoir', 'Comedy', '20th Century']", "['Fantasy', 'Epic Fantasy', 'Fiction', 'High Fantasy', 'Epic', 'Dark Fantasy', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Epic', 'Science Fiction Fantasy', 'Dark Fantasy']", "['History', 'Nonfiction', 'Military Fiction', 'War', 'Military History', 'Africa', 'Historical']", "['Nonfiction', 'History', 'Biography', 'Memoir', 'War', 'Classics', 'World War I']", "['Horror', 'Fiction', 'Japanese Literature', 'Japan', 'Science Fiction', 'Thriller', 'Speculative Fiction']", "['Fiction', 'France', 'Literature', 'French Literature', 'Classics', 'Novels', 'Literary Fiction']", "['Biography', 'History', 'Nonfiction', 'Politics', 'World War II', 'Biography Memoir', 'War']", "['Psychology', 'Philosophy', 'Nonfiction', 'Science', 'Sociology', 'Politics', 'Classics']", "['Fiction', 'Historical Fiction', 'Mystery', 'Classics', 'Literary Fiction', 'Historical', 'Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'Romance', 'Historical', 'Literature', 'British Literature']", "['Nonfiction', 'Biography', 'Politics', 'Memoir', 'History', 'Autobiography', 'Biography Memoir']", "['Fiction', 'Classics', 'Literature', 'Historical Fiction', 'American', 'Novels', 'Politics']", "['Fiction', 'Novels', 'Literature', 'American', 'Literary Fiction', 'Jewish', 'Classics']", "['Nonfiction', 'Self Help', 'Marriage', 'Relationships', 'Psychology', 'Personal Development', 'Adult']", "['Historical Fiction', 'Fiction', 'War', 'Military Fiction', 'Historical', 'American History', 'Civil War']", "['Marriage', 'Christian', 'Nonfiction', 'Relationships', 'Self Help', 'Christian Living', 'Christianity']", "['Business', 'Nonfiction', 'Self Help', 'Leadership', 'Personal Development', 'Psychology', 'Reference']", "['Nonfiction', 'Psychology', 'Self Help', 'True Crime', 'Science', 'Audiobook', 'Crime']", "['Fiction', 'Self Help', 'Inspirational', 'Personal Development', 'Business', 'Christian', 'Leadership']", "['Christian', 'Nonfiction', 'Religion', 'Self Help', 'Spirituality', 'Christianity', 'Faith']", "['Christian', 'Nonfiction', 'Biography', 'Memoir', 'Christianity', 'Faith', 'Religion']", "['Fiction', 'Mystery', 'Noir', 'Classics', 'Crime', 'Thriller', 'Mystery Thriller']", "['Psychology', 'Nonfiction', 'Self Help', 'Science', 'Personal Development', 'Philosophy', 'Audiobook']", "['Fiction', 'Historical Fiction', 'War', 'China', 'Classics', 'Historical', 'World War II']", "['Picture Books', 'Childrens', 'Christian', 'Fiction', 'Religion', 'Inspirational', 'Christian Fiction']", "['Parenting', 'Nonfiction', 'Christian', 'Family', 'Self Help', 'Childrens', 'Faith']", "['Fiction', 'Classics', 'Literature', '19th Century', 'Victorian', 'Historical Fiction', 'Novels']", "['Fiction', 'Historical Fiction', 'Thriller', 'Alternate History', 'Mystery', 'Crime', 'Science Fiction']", "['Fiction', 'Spanish Literature', 'Classics', 'Horror', 'Magical Realism', 'Latin American', 'Literature']", "['Fiction', 'Romance', 'Spanish Literature', 'Novels', 'Latin American', 'Literature', 'Latin American Literature']", "['Science Fiction', 'Fiction', 'Space Opera', 'Hugo Awards', 'Science Fiction Fantasy', 'Space', 'Speculative Fiction']", "['Fiction', 'Historical Fiction', 'Anthropology', 'Nature', 'Read For School']", "['Historical Fiction', 'Fiction', 'Classics', 'Westerns', 'Historical', 'School', 'Literature']", "['Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Literature', 'Audiobook', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'Historical', 'Novels', 'Scandinavian Literature']", "['Fiction', 'Classics', 'Westerns', 'Adventure', 'Novels', 'Literature', 'Historical Fiction']", "['Fiction', 'Crime', 'Mystery', 'Noir', 'Thriller', 'Historical Fiction', 'Detective']", "['Biography', 'Nonfiction', 'Autobiography', 'Memoir', 'Biography Memoir', 'Humor', 'Film']", "['Philosophy', 'Nonfiction', 'Classics', 'Spirituality', 'Poetry', 'China', 'Self Help']", "['Philosophy', 'Spirituality', 'Nonfiction', 'Taoism', 'Religion', 'Self Help', 'Poetry']", "['Horror', 'Fiction', 'Dystopia', 'Science Fiction', 'Thriller', 'Young Adult', 'Japan']", "['Fiction', 'Travel', 'Classics', 'American', 'Literature', 'Short Stories', '20th Century']", "['Fiction', 'Science Fiction', 'Fantasy', 'Humor', 'Philosophy', 'Conspiracy Theories', 'Novels']", "['History', 'Nonfiction', 'Biography', 'Classics', 'War', 'Memoir', 'Philosophy']", "['Fantasy', 'Fiction', 'Sword and Sorcery', 'Short Stories', 'Classics', 'Adventure', 'Science Fiction Fantasy']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'Suspense']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Classics', 'Canada', 'Literary Fiction']", "['Mystery', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Fiction', 'Supernatural', 'Crime']", "['Fantasy', 'Young Adult', 'Animals', 'Fiction', 'Wolves', 'Childrens', 'Adventure']", "['Fantasy', 'Young Adult', 'Animals', 'Fiction', 'Childrens', 'Adventure', 'Animal Fiction']", "['Fantasy', 'Fiction', 'Young Adult', 'Animals', 'Adventure', 'Childrens', 'Middle Grade']", "['Poetry', 'Plays', 'Fiction', 'Feminism', 'Drama', 'African American', 'Race']", "['Nonfiction', 'Mental Health', 'Psychology', 'Self Help', 'Death', 'Memoir', 'Research']", "['Nonfiction', 'Memoir', 'LGBT', 'True Crime', 'Biography', 'Abuse', 'Autobiography']", "['France', 'Fiction', 'Classics', 'French Literature', 'Roman', 'Novels', '20th Century']", "['History', 'Nonfiction', 'Philosophy', 'Cultural', 'World History', 'European History', 'Art']", "['Novels', 'Fiction', 'Iran', 'Literature', 'Feminism', 'Womens', 'Contemporary']", "['Fiction', 'France', 'Literature', 'Novels', 'French Literature', 'Contemporary', 'Philosophy']", "['Classics', 'Fiction', 'Feminism', 'School', 'Literature', 'Historical Fiction', 'Read For School']", "['Fiction', 'France', 'French Literature', 'Contemporary', 'Literature', 'Novels', 'Roman']", "['Music', 'Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Poetry', 'Journal']", "['Short Stories', 'Gothic', 'Horror', 'Classics', 'Fiction', 'Victorian', 'Literature']", "['Fiction', 'Classics', 'Literature', 'Historical Fiction', '19th Century', 'Novels', 'Victorian']", "['Mystery', 'Young Adult', 'Childrens', 'Fiction', 'Juvenile', 'Mystery Thriller', 'Adventure']", "['Fiction', 'Spanish Literature', 'Spain', 'Novels', 'Literature', 'Contemporary', '21st Century']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Middle Grade', 'Childrens']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Middle Grade', 'High Fantasy']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Animals', 'Family', 'Love']", "['Classics', 'Spanish Literature', 'Fiction', 'School', 'Spain', 'Novels', 'Literature']", "['Nonfiction', 'Memoir', 'Games', 'Puzzles', 'Pop Culture', 'Words']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'Christian', 'Christian Fiction', 'Biblical Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'Novels', 'Ancient History', 'Literature']", "['Fiction', 'France', 'French Literature', '19th Century', 'Classics', 'Literature', 'Novels']", "['Classics', 'Fiction', 'France', 'French Literature', 'Literature', '19th Century', 'Novels']", "['Fiction', 'German Literature', 'Short Stories', 'Literature', 'Classics', 'Novels', 'Novella']", "['Fantasy', 'Philosophy', 'Literature', 'Short Stories', 'School', 'Horror', 'Novels']", "['Horror', 'Fiction', 'Thriller', 'Adventure', 'Mystery', 'Audiobook', 'Supernatural']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Middle Grade', 'Urban Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Urban Fantasy', 'Adventure', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Childrens', 'Adventure']", "['Horror', 'Short Stories', 'Fantasy', 'Weird Fiction', 'Fiction', 'Cthulhu Mythos', 'Classics']", "['Horror', 'Short Stories', 'Fantasy', 'Fiction', 'Weird Fiction', 'Classics', 'Gothic']", "['Fiction', 'Historical Fiction', 'Latin American', 'Literature', 'Spanish Literature', 'Novels', 'Latin American Literature']", "['Nonfiction', 'Literary Criticism', 'Literature', 'Reference', 'Mythology', 'Ireland', 'Irish Literature']", "['Fiction', 'Magical Realism', 'Spanish Literature', 'Classics', 'Latin American', 'Literature', 'Latin American Literature']", "['Fiction', 'Historical Fiction', 'Spanish Literature', 'Classics', 'Magical Realism', 'Literature', 'Novels']", "['Fiction', 'Irish Literature', 'Ireland', 'Humor', 'Classics', 'Novels', '20th Century']", "['Irish Literature', 'Fiction', 'Humor', 'Ireland', 'Essays', 'Journalism', 'Literature']", "['Nonfiction', 'History', 'Africa', 'Polish Literature', 'Biography', 'Ethiopia', 'Travel']", "['Nonfiction', 'Polish Literature', 'Travel', 'Poland']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Childrens', 'Graphic Novels Comics', 'Comedy']", "['Classics', 'Fiction', 'Literature', 'Novels', 'Feminism', '20th Century', 'Literary Fiction']", "['Fiction', 'Literature', 'American', 'Novels', 'Literary Fiction', '20th Century', 'Classics']", "['Fiction', 'Short Stories', 'Fantasy', 'Science Fiction', 'Italian Literature', 'Classics', 'Literature']", "['Romance', 'Contemporary Romance', 'Fiction', 'Fantasy', 'Contemporary', 'Paranormal', 'Ireland']", "['Romance', 'Paranormal', 'Fantasy', 'Fiction', 'Contemporary Romance', 'Paranormal Romance', 'Contemporary']", "['Romance', 'Fiction', 'Chick Lit', 'Adult', 'Contemporary', 'Drama', 'Contemporary Romance']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Contemporary Romance', 'Adult Fiction', 'Novels']", "['Romance', 'Fiction', 'Historical Fiction', 'Contemporary', 'Chick Lit', 'Paranormal', 'Historical Romance']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary Romance', 'Contemporary', 'Adult', 'Novels']", "['Romance', 'Fiction', 'Historical', 'Chick Lit', 'Historical Fiction', 'Contemporary', 'Contemporary Romance']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary Romance', 'Contemporary', 'Adult Fiction', 'Novels']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Historical Fiction', 'Contemporary Romance', 'Drama']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Contemporary Romance', 'Adult', 'Adult Fiction']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary Romance', 'Drama', 'Contemporary', 'Adult Fiction']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Mystery', 'Drama', 'Novels']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary Romance', 'Contemporary', 'Drama', 'Novels']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Drama', 'Contemporary Romance', 'Audiobook']", "['Romance', 'Fiction', 'Chick Lit', 'Historical Fiction', 'Historical', 'Contemporary', 'Drama']", "['Romance', 'Fiction', 'Historical Fiction', 'Chick Lit', 'Drama', 'Contemporary', 'Historical']", "['Science Fiction', 'Fiction', 'Fantasy', 'Speculative Fiction', 'Science Fiction Fantasy', 'Queer', 'LGBT']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary Romance', 'Contemporary', 'Adult Fiction', 'Womens Fiction']", "['Science Fiction', 'Fiction', 'Fantasy', 'Dystopia', 'Classics', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Fiction', 'Japan', 'Japanese Literature', 'Classics', 'Literature', 'Asia', 'Novels']", "['Comics', 'Graphic Novels', 'Historical Fiction', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'War']", "['Comics', 'Graphic Novels', 'Batman', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'Dc Comics']", "['Comics', 'Graphic Novels', 'Batman', 'Fiction', 'Dc Comics', 'Graphic Novels Comics', 'Comic Book']", "['Fiction', 'Spain', 'Spanish Literature', 'Novels', 'Contemporary', 'Literature', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Chick Lit', 'Romance', 'Adult Fiction', 'Historical', 'New York']", "['Fiction', 'Classics', 'Humor', 'British Literature', 'Historical Fiction', 'Comedy', 'Novels']", "['Horror', 'Short Stories', 'Fiction', 'Ghost Stories', 'Gothic', 'Ghosts', 'Classics']", "['Philosophy', 'Nonfiction', 'Classics', 'German Literature', 'School', 'Metaphysics', 'Read For School']", "['Fiction', 'Italian Literature', 'Italy', 'Literature', 'Classics', 'Short Stories', 'Novels']", "['Fiction', 'Spanish Literature', 'Classics', 'Latin American', 'Nobel Prize', 'Latin American Literature', 'Novels']", "['Fantasy', 'Classics', 'Fiction', 'Childrens', 'Young Adult', 'Adventure', 'Middle Grade']", "['Bizarro Fiction', 'Horror', 'Fantasy', 'Fiction', 'Paranormal', 'Erotica', 'Humor']", "['Fantasy', 'Fiction', 'Science Fiction', 'Horror', 'Novels', 'Science Fiction Fantasy', 'Magical Realism']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Literature', 'Novels']", "['Science Fiction', 'Fiction', 'Video Games', 'Fantasy', 'Military Fiction', 'Novels', 'Space']", "['Fiction', 'Spanish Literature', 'Spain', 'Novels', 'Classics', 'Contemporary', 'Literature']", "['Fiction', 'Humor', 'Contemporary', 'Novels', 'Literary Fiction', 'Book Club', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Middle Grade', 'Childrens', 'Young Adult Fantasy']", "['Fiction', 'Literature', 'Classics', 'Novels', 'Science Fiction', 'Catholic', 'Southern']", "['Fiction', 'Historical Fiction', 'Romance', 'Historical', 'World War II', 'British Literature', 'War']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Fiction', 'Young Adult Fantasy', 'High Fantasy']", "['Classics', 'Fiction', 'Spanish Literature', 'Spain', 'Drama', 'Novels', '20th Century']", "['Fiction', 'Spanish Literature', 'Classics', 'Spain', '20th Century', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Historical Fiction', 'Literary Fiction', 'British Literature', 'Art', 'Novels']", "['Fiction', 'Novels', 'Classics', 'Southern', 'Literary Fiction', 'Historical Fiction', 'Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Psychology', 'Autobiography', 'Abuse', 'Biography Memoir']", "['Fiction', 'Contemporary', 'Romance', 'Literary Fiction', 'Novels', 'Adult Fiction', 'Literature']", "['Horror', 'Vampires', 'Fantasy', 'Fiction', 'Paranormal', 'Supernatural', 'Science Fiction']", "['Fantasy', 'Horror', 'Fiction', 'Vampires', 'Science Fiction', 'Paranormal', 'Audiobook']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Post Apocalyptic', 'Speculative Fiction', 'Aliens']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Aliens', 'Post Apocalyptic', 'Dystopia']", "['Historical Fiction', 'Fiction', 'Science Fiction', 'Fantasy', 'Time Travel', 'Classics', 'Historical']", "['Science Fiction', 'Fiction', 'Dystopia', 'Fantasy', 'Speculative Fiction', 'Post Apocalyptic', 'Science Fiction Fantasy']", "['Fiction', 'Feminism', 'African American', 'Africa', 'Classics', 'Historical Fiction', 'Literature']", "['Fiction', 'African American', 'Classics', 'Feminism', 'Magical Realism', 'Historical Fiction', 'Literature']", "['Fiction', 'Spirituality', 'African American', 'Feminism', 'Novels', 'Contemporary', 'Travel']", "['Nonfiction', 'Philosophy', 'Environment', 'Memoir', 'Nature', 'Ecology', 'Politics']", "['Nonfiction', 'Philosophy', 'Environment', 'Politics', 'History', 'Ecology', 'Nature']", "['Nonfiction', 'Environment', 'Philosophy', 'Politics', 'Ecology', 'Nature', 'Social Justice']", "['Nonfiction', 'Memoir', 'History', 'Biography', 'Biography Memoir', 'Politics', 'Spanish Literature']", "['Poetry', 'Fiction', 'Mythology', 'Queer', 'LGBT', 'Fantasy', 'Classics']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Space Opera', 'Fantasy', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Italian Literature', 'Romance', 'Japan', 'Italy', 'Historical']", "['Fiction', 'Italian Literature', 'Classics', 'Plays', 'Italy', 'Novels', 'Audiobook']", "['Mystery', 'Fiction', 'Historical Fiction', 'Russia', 'Crime', 'Historical', 'Detective']", "['History', 'Nonfiction', 'World History', 'Historical', 'Audiobook', 'Classics', 'Childrens']", "['Science', 'Nonfiction', 'Biology', 'Evolution', 'Philosophy', 'Psychology', 'Popular Science']", "['Science', 'Nonfiction', 'Biology', 'Genetics', 'Popular Science', 'Philosophy', 'Psychology']", "['Science', 'Philosophy', 'Nonfiction', 'History', 'Sociology', 'History Of Science', 'Classics']", "['Childrens', 'Fiction', 'Classics', 'Middle Grade', 'Animals', 'Humor', 'Young Adult']", "['Philosophy', 'Politics', 'Nonfiction', 'History', 'Sociology', 'Science', 'Economics']", "['Philosophy', 'History', 'Nonfiction', 'Politics', 'Science', 'Sociology', 'Social Science']", "['Science', 'Nonfiction', 'Philosophy', 'Religion', 'Spirituality', 'Atheism', 'Physics']", "['Science', 'Nonfiction', 'Astronomy', 'Space', 'Philosophy', 'Physics', 'Popular Science']", "['Science', 'Nonfiction', 'Philosophy', 'Physics', 'Astronomy', 'Essays', 'Space']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Space', 'Novels', 'Fantasy']", "['Classics', 'Fiction', 'France', 'French Literature', 'Romance', 'Novels', 'Coming Of Age']", "['Fiction', 'Spanish Literature', 'Spain', 'Classics', 'Nobel Prize', 'Literature', 'Novels']", "['Fiction', 'Spanish Literature', 'School', 'Spain', 'Classics', 'Literature', 'Novels']", "['History', 'Nonfiction', 'Classics', 'Historical', 'Audiobook', 'Survival', 'Biography']", "['Science Fiction', 'Fiction', 'Space Opera', 'Mystery', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook']", "['Science Fiction', 'Fiction', 'Space Opera', 'Romance', 'Science Fiction Fantasy', 'Mystery', 'Fantasy']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Romance', 'Audiobook']", "['Fantasy', 'Romance', 'Fiction', 'Fantasy Romance', 'Science Fiction Fantasy', 'Magic', 'Audiobook']", "['Science Fiction', 'Romance', 'Fiction', 'Space Opera', 'Fantasy', 'Science Fiction Fantasy', 'Humor']", "['Science Fiction', 'Fiction', 'Space Opera', 'Romance', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Hugo Awards', 'Romance', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy']", "['Science Fiction', 'Fiction', 'Space Opera', 'Hugo Awards', 'Audiobook', 'Fantasy', 'Romance']", "['Science Fiction', 'Space Opera', 'Fiction', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Adventure']", "['Science Fiction', 'Fiction', 'Space Opera', 'Hugo Awards', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook']", "['Science Fiction', 'Fiction', 'Space Opera', 'Fantasy', 'Science Fiction Fantasy', 'Adventure', 'Space']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Romance', 'Aliens', 'Adventure']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Adult', 'Adventure']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Romance', 'Paranormal', 'Space Opera']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Audiobook', 'Adult']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Romance', 'Space Opera', 'Speculative Fiction']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Young Adult', 'High Fantasy']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Dark Fantasy', 'Magic']", "['Fantasy', 'Horror', 'Fiction', 'Mystery', 'Halloween', 'Humor', 'Vampires']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Contemporary', 'Chess', 'Historical', 'Literary Fiction']", "['Fantasy', 'Fiction', 'Books About Books', 'German Literature', 'Humor', 'Young Adult', 'Adventure']", "['Fantasy', 'Fiction', 'Humor', 'German Literature', 'Young Adult', 'Adventure', 'Childrens']", "['Fantasy', 'Fiction', 'Humor', 'German Literature', 'Adventure', 'Young Adult', 'Audiobook']", "['Classics', 'Fiction', 'Adventure', 'Childrens', 'Young Adult', 'Historical Fiction', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', '16th Century', 'Romance', 'Audiobook']", "['Biography', 'Nonfiction', 'Memoir', 'Nature', 'Biography Memoir', 'Autobiography', 'History']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Adult', 'Audiobook']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Heroic Fantasy', 'High Fantasy', 'Adventure', 'Science Fiction Fantasy']", "['Fiction', 'Spain', 'Spanish Literature', 'Literature', '20th Century', 'Classics', 'Novels']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Childrens', 'Adventure', 'Young Adult']", "['Fantasy', 'Forgotten Realms', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Dungeons and Dragons']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Audiobook', 'Mystery']", "['Horror', 'Fiction', 'Fantasy', 'Vampires', 'Thriller', 'Historical Fiction', 'Supernatural']", "['Politics', 'Nonfiction', 'History', 'Psychology', 'American History', 'Political Science', 'American']", "['Politics', 'Nonfiction', 'History', 'Essays', 'Philosophy', 'Economics', 'Political Science']", "['Politics', 'Nonfiction', 'Philosophy', 'History', 'Sociology', 'Theory', 'Political Science']", "['Fiction', 'Japan', 'Japanese Literature', 'Classics', 'Historical Fiction', 'Literature', 'Asia']", "['Fiction', 'Japan', 'Japanese Literature', 'LGBT', 'Queer', 'Novels', 'Literature']", "['Fiction', 'Japan', 'Short Stories', 'Japanese Literature', 'Literature', 'Historical Fiction', 'Classics']", "['Fiction', 'Japan', 'Japanese Literature', 'Classics', 'Literature', 'Historical Fiction', 'Novels']", "['Philosophy', 'Nonfiction', 'Japan', 'Japanese Literature', 'Biography', 'Essays', 'Literature']", "['Fiction', 'Japan', 'Japanese Literature', 'Classics', 'Romance', 'Literature', 'Asia']", "['Fiction', 'Japan', 'Japanese Literature', 'LGBT', 'Classics', 'Queer', 'Literature']", "['Music', 'Biography', 'Nonfiction', 'Biography Memoir', 'Music Biography', 'Autobiography', 'Memoir']", "['Fiction', 'Classics', 'Espionage', 'Thriller', 'Mystery', 'Novels', 'Literature']", "['Graphic Novels', 'Comics', 'Fiction', 'Graphic Novels Comics', 'Young Adult', 'Coming Of Age', 'Comic Book']", "['Fiction', 'Historical Fiction', 'Novels', 'Spanish Literature', 'Unfinished', 'Literature', 'Spain']", "['Science Fiction', 'Time Travel', 'Fiction', 'Steampunk', 'Adventure', 'Fantasy', 'Science Fiction Fantasy']", "['Fiction', 'Literature', 'Novels', 'Classics', 'Spanish Literature', 'Mystery', 'Literary Fiction']", "['Fiction', 'Novels', 'Spanish Literature', 'Literature', 'Latin American', 'Literary Fiction', 'Contemporary']", "['Classics', 'Fiction', 'France', 'Historical Fiction', 'French Literature', 'Literature', 'Novels']", "['Poetry', 'Portugal', 'Classics', 'Portuguese Literature', '20th Century', 'Literature', 'Fiction']", "['Poetry', 'Portugal', 'Classics', 'Portuguese Literature', 'Literature', 'Fiction', '20th Century']", "['Classics', 'Fiction', 'Spanish Literature', 'Spain', 'Philosophy', 'Novels', 'Literature']", "['Horror', 'Fiction', 'Short Stories', 'Fantasy', 'Classics', 'Lovecraftian', 'Science Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Science Fiction', 'Humor']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Space', 'Classics', 'Fantasy', 'Adventure']", "['Fiction', 'Swedish Literature', 'Humor', 'Sweden', 'Scandinavian Literature', 'Contemporary', 'Music']", "['Romance', 'Fiction', 'Historical Fiction', 'War', 'Historical', 'Chick Lit', 'Historical Romance']", "['Nonfiction', 'Psychology', 'Science', 'Medicine', 'Neuroscience', 'Medical', 'Short Stories']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Historical', 'Literary Fiction', 'Novels', 'Book Club']", "['Fiction', 'Poetry', 'Short Stories', 'Classics', 'American', 'Literature', 'Novels']", "['Christian', 'Nonfiction', 'Religion', 'Christianity', 'Faith', 'Theology', 'Spirituality']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'German Literature', 'Holocaust', 'World War II']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Magic']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Dragons', 'Science Fiction Fantasy', 'Audiobook']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Audiobook', 'Science Fiction']", "['Science Fiction', 'Young Adult', 'Fiction', 'Dystopia', 'Fantasy', 'Childrens', 'Adventure']", "['Fantasy', 'Humor', 'Fiction', 'Comedy', 'Science Fiction Fantasy', 'Magic', 'Adventure']", "['Plays', 'Classics', 'Drama', 'Fiction', 'German Literature', 'School', 'Theatre']", "['Plays', 'Classics', 'Drama', 'German Literature', 'Fiction', 'School', 'Theatre']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Mystery', 'Historical', 'Romance', 'Teen']", "['Nonfiction', 'Science', 'Psychology', 'Neuroscience', 'Medicine', 'Essays', 'Medical']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Time Travel', 'Mystery']", "['Science Fiction', 'Fiction', 'Time Travel', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook', 'Space Opera']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Post Apocalyptic', 'Apocalyptic', 'Space Opera', 'Aliens']", "['Science', 'Nonfiction', 'Physics', 'Philosophy', 'Spirituality', 'Religion', 'Metaphysics']", "['Science Fiction', 'Fiction', 'Fantasy', 'Young Adult', 'Adventure', 'Thriller', 'Urban Fantasy']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'Audiobook', 'Thriller']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Thriller', 'Audiobook', 'Detective']", "['Science Fiction', 'Fiction', 'Time Travel', 'Fantasy', 'Historical Fiction', 'Audiobook', 'Alternate History']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Supernatural']", "['Fiction', 'Science Fiction', 'Novels', 'Literature', 'American', 'Contemporary', 'Science Fiction Fantasy']", "['Short Stories', 'Fiction', 'Classics', 'German Literature', 'Literature', 'Literary Fiction', 'Germany']", "['Animals', 'Nonfiction', 'Dogs', 'Memoir', 'Biography', 'Biography Memoir', 'Adult']", "['Dogs', 'Animals', 'Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Autobiography']", "['Fantasy', 'Fairy Tales', 'Middle Grade', 'Young Adult', 'Romance', 'Magic', 'Childrens']", "['Fiction', 'Young Adult', 'Childrens', 'Middle Grade', 'Mystery', 'Fantasy', 'Adventure']", "['Fiction', 'Young Adult', 'Childrens', 'Middle Grade', 'Fantasy', 'Mystery', 'Adventure']", "['Fiction', 'Young Adult', 'Fantasy', 'Childrens', 'Mystery', 'Middle Grade', 'Adventure']", "['Italy', 'Italian Literature', 'Nonfiction', 'History', 'Memoir', 'Classics', 'Travel']", "['History', 'Biography', 'Nonfiction', 'World War II', 'War', 'Germany', 'Biography Memoir']", "['Christian Fiction', 'Romance', 'Historical Fiction', 'Christian', 'Fiction', 'Historical', 'Historical Romance']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Middle Grade', 'Christian', 'Adventure']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Christian', 'Adventure', 'Middle Grade']", "['Classics', 'Dystopia', 'Science Fiction', 'Fiction', 'Swedish Literature', 'Sweden', 'Scandinavian Literature']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Romance', 'Historical']", "['Mystery', 'Thriller', 'Fiction', 'Suspense', 'Crime', 'Mystery Thriller', 'Romantic Suspense']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Fantasy', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Civil War', 'Classics', 'Historical', 'School']", "['Amish', 'Christian Fiction', 'Fiction', 'Christian', 'Amish Fiction', 'Romance', 'Historical Fiction']", "['Amish', 'Christian Fiction', 'Fiction', 'Christian', 'Amish Fiction', 'Romance', 'Christian Romance']", "['Fiction', 'Short Stories', 'Novels', 'Humor', 'Film', 'Poetry', 'Literature']", "['Psychology', 'Nonfiction', 'Self Help', 'Personal Development', 'Productivity', 'Business', 'Science']", "['Horror', 'Fiction', 'Thriller', 'Crime', 'Novels', 'Suspense', 'Short Stories']", "['Poetry', 'Classics', 'India', 'Fiction', 'Indian Literature', 'Philosophy', 'Literature']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Horror', 'Dystopia', 'Thriller', 'Hard Science Fiction']", "['Mystery', 'Fiction', 'Romance', 'Mystery Thriller', 'Suspense', 'Humor', 'Cozy Mystery']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Crime', 'Audiobook', 'Suspense']", "['Horror', 'Vampires', 'Fantasy', 'Fiction', 'Paranormal', 'Science Fiction', 'Urban Fantasy']", "['Short Stories', 'Fantasy', 'Fiction', 'Magical Realism', 'Horror', 'Anthologies', 'Speculative Fiction']", "['Short Stories', 'Fantasy', 'Fiction', 'Horror', 'Magical Realism', 'Science Fiction', 'Anthologies']", "['Fantasy', 'Forgotten Realms', 'Fiction', 'High Fantasy', 'Dungeons and Dragons', 'Epic Fantasy', 'Science Fiction Fantasy']", "['Fantasy', 'Forgotten Realms', 'Fiction', 'High Fantasy', 'Dungeons and Dragons', 'Epic Fantasy', 'Adventure']", "['Fiction', 'Fantasy', 'Humor', 'Horror', 'Religion', 'Paranormal', 'Supernatural']", "['Science Fiction', 'Fiction', 'Evolution', 'Historical Fiction', 'Science Fiction Fantasy', 'Novels', 'Biology']", "['Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Humor', 'Biography Memoir', 'LGBT']", "['Business', 'Nonfiction', 'Management', 'Leadership', 'Biography', 'Entrepreneurship', 'Technology']", "['Fiction', 'Humor', 'Classics', 'Short Stories', 'Italy']", "['Polish Literature', 'Fiction', 'Classics', 'Poland', 'Novels', 'Literature', 'School']", "['Nonfiction', 'Politics', 'History', 'Philosophy', 'Theory', 'Race', 'Psychology']", "['Fiction', 'Thriller', 'Spanish Literature', 'Mystery', 'Classics', 'Drama', 'Novels']", "['Horror', 'Thriller', 'Mystery', 'Fiction', 'Science Fiction', 'Mystery Thriller', 'Suspense']", "['Historical Romance', 'Romance', 'Medieval', 'Historical', 'Medieval Romance', 'Historical Fiction', 'Fiction']", "['Fiction', 'Italian Literature', 'Classics', 'Italy', 'Literature', 'Novels', '20th Century']", "['Fiction', 'Young Adult', 'Contemporary', 'Poetry', 'Novels', 'Drama', 'Coming Of Age']", "['Philosophy', 'Nonfiction', 'Science', 'Essays', 'Classics', 'Sociology', 'Religion']", "['Poetry', 'Spirituality', 'Classics', 'Love', 'Romance', 'Nonfiction', 'Philosophy']", "['Fiction', 'Spanish Literature', 'Novels', 'Spain', 'Drama']", "['Nonfiction', 'Sociology', 'History', 'Economics', 'Philosophy', 'Politics', 'Science']", "['Urban Fantasy', 'Vampires', 'Paranormal', 'Fantasy', 'Paranormal Romance', 'Romance', 'Magic']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'American', '19th Century', 'Feminism']", "['Historical Fiction', 'Fiction', 'Historical', 'LGBT', 'Classics', 'Mythology', 'Greece']", "['Historical Fiction', 'Fiction', 'Historical', 'LGBT', 'Classics', 'Queer', 'Mythology']", "['Historical Fiction', 'Fiction', 'Historical', 'LGBT', 'Gay', 'Classics', 'Queer']", "['Nonfiction', 'Spirituality', 'Self Help', 'Philosophy', 'Religion', 'Christian', 'Psychology']", "['Philosophy', 'Nonfiction', 'Psychology', 'Sociology', 'Classics', 'History', 'Literature']", "['Nonfiction', 'Psychology', 'Biography', 'Mental Health', 'Mental Illness', 'Classics', 'Memoir']", "['Science Fiction', 'Short Stories', 'Fiction', 'Fantasy', 'Speculative Fiction', 'Anthologies', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Classics', 'Young Adult', 'Magic', 'High Fantasy', 'Dragons']", "['Mystery', 'Fiction', 'Italy', 'Crime', 'Mystery Thriller', 'Detective', 'Thriller']", "['History', 'Historical']", "['Science Fiction', 'Thriller', 'Fiction', 'German Literature', 'Horror', 'Fantasy', 'Mystery']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Novels', 'Literature', 'Classics', 'Audiobook']", "['Science Fiction', 'Fiction', 'Speculative Fiction', 'Dystopia', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook']", "['Fantasy', 'Dragonlance', 'Fiction', 'Dragons', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy']", "['Fantasy', 'Dragonlance', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Dragons']", "['Vampires', 'Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Fantasy', 'Forgotten Realms', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Adventure']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adult', 'Audiobook', 'Magic']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adult', 'Magic', 'Audiobook']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adult', 'Audiobook', 'Magic']", "['Fantasy', 'Fiction', 'Polish Literature', 'High Fantasy', 'Audiobook', 'Adventure', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Audiobook', 'High Fantasy', 'Polish Literature', 'Adventure', 'Magic']", "['Science Fiction', 'Space Opera', 'Fiction', 'Hugo Awards', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook']", "['Fantasy', 'Fiction', 'LGBT', 'Queer', 'Romance', 'M M Romance', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adventure', 'Adult']", "['Fantasy', 'Fiction', 'Science Fiction', 'Steampunk', 'Horror', 'Urban Fantasy', 'New Weird']", "['Fantasy', 'Young Adult', 'Fiction', 'Urban Fantasy', 'Steampunk', 'Childrens', 'Adventure']", "['Fantasy', 'Fiction', 'Science Fiction', 'Steampunk', 'New Weird', 'Weird Fiction', 'Science Fiction Fantasy']", "['Historical Fiction', 'Fantasy', 'Fiction', 'Arthurian', 'Historical', 'Mythology', 'Medieval']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Medieval', 'Adventure', 'War']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Medieval', 'Adventure', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Adventure', 'Medieval', 'War']", "['Science Fiction', 'Fiction', 'Space Opera', 'Military Fiction', 'Military Science Fiction', 'Space', 'Audiobook']", "['Fantasy', 'Fiction', 'Science Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy', 'Adventure']", "['Fiction', 'Fantasy', 'Philosophy', 'Romance', 'Novels', 'Spirituality', 'Magical Realism']", "['Fiction', 'Horror', 'Gothic', 'Novels', 'Southern Gothic', 'Music', 'Contemporary']", "['Fiction', 'Contemporary', 'Music', 'Scotland', 'Novels', 'Thriller', 'Banks']", "['Nonfiction', 'Memoir', 'Psychology', 'Mental Health', 'Biography', 'Mental Illness', 'Classics']", "['Fantasy', 'Fiction', 'Classics', 'Childrens', 'German Literature', 'Young Adult', 'Middle Grade']", "['Self Help', 'Psychology', 'Nonfiction', 'Personal Development', 'Spirituality', 'Philosophy', 'Business']", "['Fiction', 'German Literature', 'Classics', 'Novels', 'Germany', 'Literature', 'Nobel Prize']", "['Fiction', 'Young Adult', 'Realistic Fiction', 'Middle Grade', 'Childrens', 'School', 'Chapter Books']", "['Fantasy', 'Fiction', 'Young Adult', 'Horror', 'Fairy Tales', 'Books About Books', 'Adventure']", "['Picture Books', 'Graphic Novels', 'Childrens', 'Fantasy', 'Fiction', 'Art', 'Comics']", "['Business', 'Nonfiction', 'Psychology', 'Leadership', 'Self Help', 'Communication', 'Design']", "['Historical Fiction', 'Young Adult', 'Holocaust', 'Fiction', 'Historical', 'World War II', 'Middle Grade']", "['Young Adult', 'Science Fiction', 'Fiction', 'Post Apocalyptic', 'Dystopia', 'Apocalyptic', 'Survival']", "['Young Adult', 'Fiction', 'Middle Grade', 'Adventure', 'Realistic Fiction', 'Childrens', 'Juvenile']", "['Fiction', 'Historical Fiction', 'Classics', 'British Literature', 'Literary Fiction', 'Audiobook', 'Humor']", "['Fiction', 'Classics', 'Historical Fiction', 'British Literature', '20th Century', 'Novels', 'Literary Fiction']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Witches', 'Historical', 'Scotland', 'Young Adult']", "['Business', 'Finance', 'Nonfiction', 'Self Help', 'Money', 'Personal Finance', 'Personal Development']", "['Nonfiction', 'Essays', 'Memoir', 'History', 'School', 'Travel', 'Classics']", "['Fiction', 'Historical Fiction', 'Spanish Literature', 'Historical', 'Classics', 'Italy', 'Literature']", "['Fiction', 'Spanish Literature', 'Latin American', 'Latin American Literature', 'Literature', 'Classics', '20th Century']", "['Crime', 'Mystery', 'Fiction', 'Scotland', 'Thriller', 'Detective', 'Mystery Thriller']", "['Fiction', 'German Literature', 'Classics', 'Germany', 'Literature', 'Nobel Prize', 'Novels']", "['Fiction', 'German Literature', 'Germany', 'Classics', 'Literature', 'War', 'Novels']", "['Fiction', 'German Literature', 'Germany', 'Classics', 'War', 'Novels', 'Literature']", "['Fiction', 'Novels', 'Literature', 'Latin American', 'Latin American Literature', 'Romance', 'Classics']", "['Fiction', 'Humor', 'Contemporary', 'Novels', 'British Literature', 'Literature', 'Comedy']", "['Fiction', 'Classics', 'France', 'French Literature', 'Literature', 'Philosophy', 'Novels']", "['Fiction', 'France', 'Classics', 'French Literature', 'Novels', 'Literature', '20th Century']", "['Fiction', 'Mystery', 'Crime', 'Science Fiction', 'Thriller', 'Horror', 'Novels']", "['Fiction', 'Science Fiction', 'Horror', 'Novels', 'Literature', 'Classics', 'British Literature']", "['Fiction', 'Science Fiction', 'Novels', 'Dystopia', 'Thriller', 'Literature', 'British Literature']", "['Fiction', 'Mystery', 'Crime', 'Thriller', 'British Literature', 'Literature', 'Dystopia']", "['Fiction', 'Science Fiction', 'Dystopia', 'Novels', 'Literature', 'Thriller', 'Contemporary']", "['Fiction', 'Travel', 'Literature', 'Classics', 'Novels', 'American', 'Adventure']", "['Fiction', 'Humor', 'Russia', 'Novels', 'Contemporary', 'Literature', 'Literary Fiction']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Space', 'Fantasy', 'Novels']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Classics', 'Space', 'Novels', 'Fantasy']", "['History', 'Nonfiction', 'Classics', 'Russia', 'Politics', 'Biography', 'Russian Literature']", "['Fantasy', 'Historical Fiction', 'Westerns', 'Fiction', 'Historical', 'Historical Fantasy', 'Alternate History']", "['Science Fiction', 'Fiction', 'Short Stories', 'Classics', 'Robots', 'Science Fiction Fantasy', 'Collections']", "['Fiction', 'Psychology', 'Thriller', 'Novels', 'Classics', 'Contemporary', 'Philosophy']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'Middle Grade', 'Science Fiction']", "['Horror', 'Classics', 'Short Stories', 'Fiction', 'Gothic', 'Fantasy', 'Vampires']", "['Fiction', 'Classics', 'Romance', 'Coming Of Age', 'American', 'Media Tie In', '20th Century']", "['Nonfiction', 'True Crime', 'History', 'Crime', 'Biography', 'American History', 'Audiobook']", "['Fiction', 'Young Adult', 'Contemporary', 'African American', 'Abuse', 'Adult Fiction', 'Adult']", "['Fiction', 'France', 'Japan', 'Contemporary', 'French Literature', 'Novels', 'Roman']", "['History', 'American History', 'Nonfiction', 'Politics', 'American', 'United States', 'The United States Of America']", "['Poetry', 'Nature', 'Nonfiction', 'Classics', 'Spirituality', 'LGBT', 'Literature']", "['Mystery', 'Fiction', 'Italy', 'Crime', 'Mystery Thriller', 'Audiobook', 'Detective']", "['Fiction', 'Classics', 'Philosophy', 'Fantasy', 'Spirituality', 'Inspirational', 'Self Help']", "['Historical Fiction', 'Fiction', 'Historical', 'American History', 'Novels', 'Adult', 'War']", "['Historical Fiction', 'Fiction', 'Historical', 'American History', 'Adult', 'War', 'Drama']", "['Fiction', 'Christian Fiction', 'Christian', 'Adult Fiction', 'Contemporary', 'Inspirational', 'Adult']", "['Fiction', 'Christian Fiction', 'Humor', 'Contemporary', 'Religion', 'Inspirational', 'Faith']", "['Fiction', 'Christmas', 'Christian Fiction', 'Christian', 'Adult Fiction', 'Inspirational', 'Holiday']", "['Fiction', 'Christian Fiction', 'Christian', 'Adult Fiction', 'Inspirational', 'Contemporary', 'Novels']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Vampires', 'Werewolves', 'Paranormal Romance']", "['Science Fiction', 'Fiction', 'Fantasy', 'Humor', 'Novels', 'Literature', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Mystery', 'Psychology', 'Novels', 'Mental Health', 'Mental Illness']", "['Young Adult', 'Fiction', 'War', 'Dystopia', 'Australia', 'Adventure', 'Action']", "['Young Adult', 'Fiction', 'Dystopia', 'War', 'Science Fiction', 'Adventure', 'Australia']", "['Humor', 'Nonfiction', 'Audiobook', 'Comedy', 'Memoir', 'Biography', 'LGBT']", "['Humor', 'Nonfiction', 'Memoir', 'Comedy', 'Biography', 'Autobiography', 'LGBT']", "['History', 'Nonfiction', 'Politics', 'War', 'Military Fiction', 'Terrorism', 'Espionage']", "['Plays', 'Drama', 'Fiction', 'LGBT', 'Queer', 'Classics', 'Theatre']", "['Nonfiction', 'Politics', 'Technology', 'Law', 'Philosophy', 'Cultural', 'Economics']", "['Fiction', 'Historical Fiction', 'Mystery', 'Thriller', 'Espionage', 'World War II', 'Historical']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', 'American', 'School']", "['Science Fiction', 'Fantasy', 'Fiction', 'Space Opera', 'Military Fiction', 'Science Fiction Fantasy', 'Audiobook']", "['History', 'Nonfiction', 'American History', 'Historical', 'Audiobook', 'Environment', 'Nature']", "['Fiction', 'Classics', 'Literature', 'American', 'Southern', 'Novels', 'Mystery']", "['Paranormal Romance', 'Paranormal', 'Vampires', 'Romance', 'Fantasy', 'Demons', 'Urban Fantasy']", "['Nonfiction', 'Self Help', 'Inspirational', 'Design', 'Art', 'Reference', 'Spirituality']", "['Fiction', 'Historical Fiction', 'Novels', 'Literary Fiction', 'The United States Of America', 'Literature', 'Westerns']", "['Nonfiction', 'History', 'Canada', 'Nature', 'Anthropology', 'Travel', 'Memoir']", "['Nonfiction', 'Psychology', 'Science', 'True Crime', 'Sociology', 'Mental Health', 'Audiobook']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Shapeshifters', 'Werewolves', 'Urban Fantasy', 'Fantasy']", "['Romance', 'Romantic Suspense', 'Suspense', 'Contemporary', 'Contemporary Romance', 'Paranormal', 'Mystery']", "['Education', 'Nonfiction', 'Philosophy', 'Politics', 'Theory', 'Social Justice', 'Teaching']", "['Nonfiction', 'Animals', 'Nature', 'Science', 'Memoir', 'Biography', 'Canada']", "['Historical Fiction', 'Romance', 'Fiction', 'Historical', 'Historical Romance', 'Adventure', 'Adult']", "['Fiction', 'Historical Fiction', 'Historical', 'Family', 'Audiobook', 'Adult', 'Novels']", "['Poetry']", "['Historical Fiction', 'Fiction', 'LGBT', 'Historical', 'Gothic', 'Queer', 'Mystery']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', 'School', 'Literature']", "['Humor', 'Nonfiction', 'Memoir', 'Classics', 'Biography', 'Short Stories', 'Comedy']", "['Humor', 'Fiction', 'Poetry', 'Short Stories', 'Classics', 'Fantasy', 'Childrens']", "['Historical Fiction', 'Fiction', 'Romance', 'Classics', 'Historical', 'Historical Romance', 'Adult Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Sports', 'Sports Romance', 'Chick Lit', 'Fiction']", "['Biography', 'History', 'Nonfiction', 'Biography Memoir', 'Books About Books', '19th Century', 'Audiobook']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Adult', 'Humor', 'Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Sports', 'Sports Romance', 'Fiction']", "['Christian Fiction', 'Fiction', 'Christian', 'Historical Fiction', 'Romance', 'Contemporary', 'Historical']", "['Romance', 'Time Travel', 'Historical Romance', 'Historical', 'Historical Fiction', 'Fantasy', 'Fiction']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Adventure', 'Historical', 'Audiobook', 'Romance']", "['Fiction', 'Classics', 'Nobel Prize', 'Spanish Literature', 'Latin American', 'Magical Realism', 'Novels']", "['Fiction', 'Spanish Literature', 'Magical Realism', 'Classics', 'Nobel Prize', 'Latin American', 'Novels']", "['Fiction', 'Literature', 'Latin American', 'Classics', 'Mythology', 'Latin American Literature', 'Nobel Prize']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Psychology', 'True Story', 'Biography Memoir']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Retellings', 'Christian Fiction']", "['Philosophy', 'Classics', 'Nonfiction', 'History', 'Politics', 'Ancient', 'School']", "['Romance', 'Fiction', 'Classics', 'Contemporary', 'Chick Lit', 'Love', 'Novels']", "['Fiction', 'Historical Fiction', 'Religion', 'Literature', 'Classics', 'Novels', 'Spirituality']", "['Nonfiction', 'Philosophy', 'Sociology', 'Politics', 'Cultural', 'Psychology', 'Technology']", "['Mystery', 'Romance', 'Crime', 'Romantic Suspense', 'Fiction', 'Futuristic', 'Suspense']", "['Fiction', 'German Literature', 'Classics', 'Literature', 'Novels', '20th Century', 'Roman']", "['France', 'Fiction', 'Childrens', 'Classics', 'Humor', 'French Literature', 'Short Stories']", "['Fantasy', 'LGBT', 'M M Romance', 'Fiction', 'Queer', 'Romance', 'High Fantasy']", "['Fantasy', 'Fiction', 'LGBT', 'High Fantasy', 'Epic Fantasy', 'Magic', 'Science Fiction Fantasy']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Novels', 'Classics', 'Historical Romance']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Romance', 'Prehistoric', 'Adventure']", "['Fiction', 'Russia', 'Russian Literature', 'Humor', 'War', 'Literature', 'Historical Fiction']", "['Fiction', 'Fantasy', 'Canada', 'Novels', 'Literature', 'Classics', 'Mystery']", "['Fiction', 'Canada', 'Classics', 'Historical Fiction', 'Literature', 'Literary Fiction', 'Novels']", "['Fiction', 'Canada', 'Literary Fiction', 'Contemporary', 'Novels', 'Canadian Literature', 'Literature']", "['Childrens', 'Fiction', 'Fantasy', 'Middle Grade', 'Young Adult', 'Humor', 'Novels']", "['Humor', 'Fiction', 'Fantasy', 'Christmas', 'Comedy', 'Horror', 'Zombies']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Romance', 'Angels', 'Fiction']", "['Fantasy', 'Childrens', 'Fiction', 'Classics', 'Adventure', 'Young Adult', 'Magic']", "['Fiction', 'Thriller', 'Mystery', 'Historical Fiction', 'Adventure', 'Mystery Thriller', 'Suspense']", "['Nonfiction', 'War', 'Military Fiction', 'Memoir', 'History', 'Biography', 'Military History']", "['Essays', 'Nonfiction', 'Writing', 'Literature', 'Short Stories', 'Classics', 'Literary Criticism']", "['Short Stories', 'Classics', 'Fiction', 'School', 'Horror', 'Read For School', 'Gothic']", "['Islam', 'Religion', 'History', 'Nonfiction', 'Atheism', 'Politics']", "['Fiction', 'Literature', 'Novels', 'Contemporary', 'Africa', 'Nobel Prize', 'Literary Fiction']", "['Sports', 'Baseball', 'Nonfiction', 'Biography', 'History', 'Biography Memoir', 'Memoir']", "['Sports', 'Baseball', 'Nonfiction', 'History', 'American History', 'Biography', 'New York']", "['Fiction', 'Horror', 'Contemporary', 'Crime', 'Mystery', 'Thriller', 'Dark']", "['Psychoanalysis', 'Psychology', 'Philosophy', 'Nonfiction', 'Theory', 'France']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Roman', 'Mystery', 'Ancient History']", "['Fiction', 'France', 'Contemporary', 'Novels', 'French Literature', 'Roman', 'Literature']", "['Fiction', 'France', 'Contemporary', 'Japan', 'Roman', 'Novels', 'Belgium']", "['Philosophy', 'Nonfiction', 'Education', 'Politics', 'History', 'Cultural', 'Sociology']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Short Stories', 'Detective', 'Mystery Thriller']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Supernatural', 'Fantasy', 'Paranormal']", "['Fiction', 'Science Fiction', 'Classics', 'Dystopia', 'Russia', 'Russian Literature', 'Literature']", "['Spirituality', 'Nonfiction', 'Self Help', 'Philosophy', 'Psychology', 'Personal Development', 'Inspirational']", "['History', 'Nonfiction', 'American History', 'Classics', 'Historical', 'Politics', 'Race']", "['Fiction', 'Novels', 'Music', 'American', 'Literary Fiction', '20th Century', 'Contemporary']", "['Fiction', 'German Literature', 'Historical Fiction', 'Germany', 'Novels', 'Literature', 'Literary Fiction']", "['Classics', 'Fiction', 'Literature', '18th Century', 'Humor', 'Novels', 'British Literature']", "['Classics', 'Fiction', 'Fantasy', 'Young Adult', 'Animals', 'Childrens', 'Adventure']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'British Literature', 'Detective', 'Mystery Thriller']", "['Fantasy', 'Fiction', 'Science Fiction', 'Urban Fantasy', 'Science Fiction Fantasy', 'Magic', 'Death']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Space Opera', 'Fantasy', 'Hugo Awards']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Robots', 'Classics', 'Mystery', 'Novels']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Historical Mystery', 'Regency', 'British Literature']", "['Fantasy', 'Fiction', 'Ghosts', 'Romance', 'Classics', 'Paranormal', 'Urban Fantasy']", "['Poetry', 'Nature', 'Nonfiction', 'Literature', 'Classics', 'Environment', 'American']", "['Science Fiction', 'Fiction', 'Classics', 'Mystery', 'Hugo Awards', 'Science Fiction Fantasy', 'Crime']", "['Science Fiction', 'Fiction', 'Classics', 'Short Stories', 'Fantasy', 'Science Fiction Fantasy', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Christian', 'Novels', 'Classics', 'Religion', 'Christian Fiction']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Detective', 'Noir']", "['Fiction', 'Short Stories', 'Philosophy', 'Classics', 'France', 'Literature', 'French Literature']", "['Biography', 'Nonfiction', 'History', 'Biography Memoir', 'Christian', 'Audiobook', 'Literature']", "['Business', 'Nonfiction', 'Leadership', 'Management', 'Self Help', 'Buisness', 'Entrepreneurship']", "['Mystery', 'Fiction', 'Young Adult', 'Childrens', 'Adventure', 'Classics', 'Crime']", "['Historical Fiction', 'Fiction', 'Classics', 'Young Adult', 'American Revolution', 'War', 'School']", "['Classics', 'Fiction', 'Literature', 'Novels', 'American', 'School', 'Southern Gothic']", "['Fiction', 'Historical Fiction', 'Historical', 'Indian Literature', 'Novels', 'Literary Fiction', 'Literature']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Literature', 'Literary Fiction', 'Novels']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Novels', 'Literature', 'Adult Fiction', 'Book Club']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Young Adult', 'Japan', 'Historical', 'Romance']", "['Fiction', 'Historical Fiction', 'Germany', 'World War II', 'Historical', 'Holocaust', 'War']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adult', 'Magic', 'Science Fiction Fantasy']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Novels', 'Historical', 'Literature', 'Adult']", "['Historical Fiction', 'Fiction', 'Civil War', 'War', 'Classics', 'American Civil War', 'Historical']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical Mystery', 'Historical', 'India', 'Audiobook']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Adult Fiction', 'Literature', 'Adult']", "['Classics', 'Fiction', 'Childrens', 'Fantasy', 'Adventure', 'Short Stories', 'Animals']", "['Science Fiction', 'Fiction', 'Media Tie In', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'Space']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Nobel Prize', 'Novels', 'Scandinavian Literature']", "['Nonfiction', 'Memoir', 'Classics', 'Essays', 'Spirituality', 'Inspirational', 'Self Help']", "['Fiction', 'Latin American', 'Nobel Prize', 'Spanish Literature', 'Novels', 'Latin American Literature', 'Classics']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Romance', 'Young Adult', 'Retellings', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Dragons', 'Adventure', 'Romance', 'Magic']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Fiction', 'Retellings', 'Romance', 'Fairy Tale Retellings']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Historical', 'Romance']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Romance', 'Canada']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Canada', 'Historical']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Classics', 'War', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'War', 'Audiobook', 'Military Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'British Literature', '13th Century', 'Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'Fantasy', 'Romance', 'British Literature']", "['Fiction', 'Contemporary', 'Family', 'Adult Fiction', 'Book Club', 'Chick Lit', 'Adult']", "['Science Fiction', 'Fiction', 'Hugo Awards', 'Science Fiction Fantasy', 'Space', 'Speculative Fiction', 'Space Opera']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Space', 'Fantasy', 'Space Opera', 'Speculative Fiction']", "['Nonfiction', 'Science', 'Politics', 'Philosophy', 'Environment', 'History', 'Journalism']", "['Fiction', 'Canada', 'Historical Fiction', 'Literary Fiction', 'Literature', 'Novels', 'Classics']", "['Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Audiobook', 'Horror']", "['Mystery', 'Fiction', 'Crime', 'Detective', 'Classics', 'Mystery Thriller', 'Audiobook']", "['Mystery', 'Historical Fiction', 'Fiction', 'Crime', 'Historical', 'Classics', 'Mystery Thriller']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Fantasy', 'Hugo Awards']", "['Science Fiction', 'Space Opera', 'Fiction', 'Military Fiction', 'Military Science Fiction', 'Science Fiction Fantasy', 'Space']", "['Science Fiction', 'Time Travel', 'Fiction', 'Historical Fiction', 'Fantasy', 'Humor', 'Historical']", "['Fiction', 'Contemporary', 'Italy', 'Italian Literature', 'Literary Fiction', 'Novels', 'Womens']", "['Fiction', 'Africa', 'Contemporary', 'Literary Fiction', 'Literature', 'Novels', 'Historical Fiction']", "['Fiction', 'Historical Fiction', 'Africa', 'War', 'World War I', 'Historical', 'Humor']", "['Fiction', 'Africa', 'Humor', 'Historical Fiction', 'Novels', 'Comedy', 'Literature']", "['Fiction', 'Historical Fiction', 'Historical', 'Literary Fiction', 'Novels', 'Classics', 'British Literature']", "['Fiction', 'Literature', 'Literary Fiction', 'Southern', 'Novels', 'Classics', 'Religion']", "['Fiction', 'Literature', 'Classics', 'Novels', 'Literary Fiction', 'Southern', 'American']", "['Philosophy', 'Nonfiction', 'Psychology', 'Self Help', 'Religion', 'Humor', 'Literature']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Historical Fiction', 'Literature', 'War']", "['Childrens', 'Fiction', 'Middle Grade', 'Classics', 'Young Adult', 'Realistic Fiction', 'Humor']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Mystery Thriller', 'Suspense', 'Action']", "['History', 'Politics', 'Nonfiction', 'War', 'American History', 'The United States Of America', 'American']", "['Poetry', 'Classics', 'Fiction', '19th Century', 'Literature', 'Romanticism', 'British Literature']", "['Philosophy', 'Spirituality', 'Nonfiction', 'Anthropology', 'Religion', 'Psychology', 'Classics']", "['Classics', 'Fiction', 'African American', 'Historical Fiction', 'Race', 'School', 'American']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Literary Fiction', 'The United States Of America']", "['Fiction', 'Young Adult', 'Fantasy', 'Childrens', 'Middle Grade', 'Mystery', 'Adventure']", "['Finance', 'Nonfiction', 'Self Help', 'Personal Finance', 'Money', 'Business', 'Personal Development']", "['Fiction', 'Historical Fiction', 'Mystery', 'Literary Fiction', 'Canada', 'Classics', 'Contemporary']", "['History', 'Nonfiction', 'Biography', 'Adventure', 'Travel', 'Presidents', 'American History']", "['Fiction', 'Christian Fiction', 'Christian', 'Inspirational', 'Adult Fiction', 'Contemporary', 'Novels']", "['Fiction', 'Czech Literature', 'Novels', 'Literature', 'Philosophy', 'Classics', 'France']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Witches', 'Science Fiction Fantasy', 'Audiobook']", "['Fiction', 'Classics', 'Young Adult', 'Historical Fiction', 'Childrens', 'Historical', 'Literature']", "['Classics', 'Fiction', 'Romance', 'Young Adult', 'Historical Fiction', 'Childrens', 'Historical']", "['Fiction', 'Thriller', 'Mystery', 'Historical Fiction', 'Suspense', 'Drama', 'Adventure']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Mystery Thriller', 'Drama', 'Novels']", "['Fiction', 'Historical Fiction', 'Thriller', 'Drama', 'Classics', 'Historical', 'Novels']", "['Fiction', 'Historical Fiction', 'Thriller', 'Drama', 'Novels', 'Mystery', 'Historical']", "['Fiction', 'Thriller', 'Historical Fiction', 'Politics', 'Drama', 'Mystery', 'Novels']", "['Fiction', 'Historical Fiction', 'Fantasy', 'New York', 'Jewish', 'Magical Realism', 'Historical']", "['Classics', 'Short Stories', 'Fiction', 'Fantasy', 'Childrens', 'Fairy Tales', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Asia', 'Travel', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Intersex', 'Historical Romance', 'Medieval']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Regency', 'Fiction', 'Regency Romance']", "['Christian', 'Biography', 'Nonfiction', 'China', 'Christianity', 'Faith', 'Memoir']", "['True Crime', 'Nonfiction', 'Crime', 'Biography', 'History', 'Biography Memoir', 'Audiobook']", "['Fiction', 'Novels', 'Feminism', 'Italian Literature', 'Italy', 'Philosophy', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Historical Romance', 'British Literature', '18th Century']", "['Poetry', 'African American', 'The United States Of America']", "['Plays', 'Drama', 'Fiction', 'Classics', 'Theatre', 'African American', 'Race']", "['Comics', 'Graphic Novels', 'Graphic Novels Comics']", "['Fantasy', 'Fiction', 'Childrens', 'Classics', 'Finnish Literature', 'Middle Grade', 'Scandinavian Literature']", "['Fantasy', 'Childrens', 'Fiction', 'Classics', 'Finnish Literature', 'Middle Grade', 'Scandinavian Literature']", "['Fiction', 'Short Stories', 'Classics', 'Finnish Literature', 'Literary Fiction', 'Scandinavian Literature', 'Novels']", "['Fantasy', 'Fiction', 'Childrens', 'Classics', 'Finnish Literature', 'Scandinavian Literature', 'Adventure']", "['Mythology', 'Classics', 'Childrens', 'Fiction', 'Fantasy', 'Picture Books', 'Greek Mythology']", "['Nonfiction', 'Education', 'Sociology', 'Parenting', 'History', 'Psychology', 'Philosophy']", "['Fiction', 'Russia', 'Russian Literature', 'Historical Fiction', 'Classics', 'Literature', '20th Century']", "['Nonfiction', 'Memoir', 'Humor', 'Short Stories', 'Essays', 'Biography', 'Biography Memoir']", "['Biography', 'Psychology', 'Nonfiction', 'American', 'Philosophy', 'History', 'Historical']", "['Historical Fiction', 'Fiction', 'Historical', 'Archaeology', 'Greece', 'Adventure', 'Classics']", "['History', 'Nonfiction', 'Japan', 'World War II', 'War', 'Military History', 'Asia']", "['Fiction', 'Canada', 'Literary Fiction', 'Novels', 'Historical Fiction', 'Literature', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Music', 'Canada', 'Novels', 'Literature', 'Poetry']", "['Classics', 'Fiction', 'Mythology', 'Fantasy', 'Literature', 'Ancient', 'Novels']", "['Christian', 'Theology', 'Christianity', 'Christian Living', 'Nonfiction', 'Spirituality', 'Religion']", "['Theology', 'Christian', 'Philosophy', 'Christianity', 'Nonfiction', 'Religion', 'Christian Living']", "['Theology', 'Philosophy', 'Christian', 'Christianity', 'Nonfiction', 'Religion', 'Faith']", "['Fiction', 'Classics', 'Short Stories', 'Literature', 'American', 'Literary Fiction', '20th Century']", "['Sociology', 'Philosophy', 'Nonfiction', 'Theory', 'Anthropology', 'Art', 'France']", "['Philosophy', 'Nonfiction', 'History', 'Sociology', 'Theory', 'Politics', 'Psychology']", "['Poetry', 'Classics', 'Fiction', 'Literature', '20th Century', 'Philosophy', 'American']", "['Philosophy', 'Nonfiction', 'Classics', 'Psychology', 'German Literature', 'Literature', 'Religion']", "['Psychology', 'Philosophy', 'Religion', 'Nonfiction', 'Psychoanalysis', 'Science', 'Classics']", "['Fiction', 'Humor', 'Audiobook', 'Chick Lit', 'Comedy', 'Adult Fiction', 'Relationships']", "['Fiction', 'Contemporary', 'Chick Lit', 'Abuse', 'Family', 'Drama', 'Adult Fiction']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Adult Fiction', 'Audiobook', 'Book Club', 'Novels']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult Fiction', 'Adult', 'Mystery']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Psychology', 'Mental Health', 'Autobiography']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Noir', 'Mystery Thriller', 'Detective']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Legal Thriller']", "['Mystery', 'Fiction', 'Thriller', 'Suspense', 'Mystery Thriller', 'Crime', 'Horror']", "['Nonfiction', 'Food', 'Memoir', 'Biography', 'Cooking', 'Audiobook', 'Foodie']", "['Fiction', 'Contemporary', 'Thriller', 'Horror', 'Crime', 'Drama', 'Adult']", "['Fiction', 'Fantasy', 'Science Fiction', 'Spirituality', 'Dystopia', 'Feminism', 'Speculative Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'France', 'Romance', '18th Century', 'French Revolution']", "['Fantasy', 'Fiction', 'Science Fiction', 'Thriller', 'Dystopia', 'Science Fiction Fantasy', 'Urban Fantasy']", "['Graphic Novels', 'Comics', 'Nonfiction', 'Travel', 'Memoir', 'Bande Dessinée', 'Asia']", "['Classics', 'Fiction', 'German Literature', 'Germany', 'Historical Fiction', 'Literature', 'Novels']", "['Classics', 'Fiction', 'Novels', 'British Literature', 'Science Fiction', '20th Century', 'Literature']", "['Fiction', 'Animals', 'Africa', 'Canada', 'Fantasy', 'Novels', 'Canadian Literature']", "['Fantasy', 'Fiction', 'Young Adult', 'Dragons', 'Romance', 'High Fantasy', 'Magic']", "['Nonfiction', 'Politics', 'Humor', 'History', 'War', 'Comedy', 'American']", "['Politics', 'Nonfiction', 'Sociology', 'History', 'Essays', 'Philosophy', 'Economics']", "['Nonfiction', 'Memoir', 'Biography', 'Religion', 'Africa', 'Politics', 'Islam']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'Magic']", "['Fantasy', 'Fiction', 'Science Fiction', 'Literature', 'Sword and Sorcery', 'LGBT', 'Science Fiction Fantasy']", "['Philosophy', 'Classics', 'Nonfiction', 'School', 'Ancient', 'History', 'Greece']", "['Spirituality', 'Philosophy', 'Religion', 'Mysticism', 'Nonfiction', 'India']", "['Economics', 'Philosophy', 'Politics', 'Nonfiction', 'Business', 'Finance', 'Classics']", "['Self Help', 'Philosophy', 'Nonfiction', 'Personal Development', 'Psychology', 'Classics', 'Spirituality']", "['Science Fiction', 'Fiction', 'Space Opera', 'Singularity', 'Space', 'Time Travel', 'Science Fiction Fantasy']", "['Religion', 'Nonfiction', 'Philosophy', 'Occult', 'Satanism', 'Spirituality', 'Mythology']", "['Classics', 'Plays', 'Drama', 'Fiction', 'Theatre', 'Literature', 'Comedy']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Mental Health', 'Young Adult Contemporary']", "['Young Adult', 'Contemporary', 'Fiction', 'Romance', 'Australia', 'Coming Of Age', 'Realistic Fiction']", "['Nonfiction', 'Biography', 'Memoir', 'Humor', 'Audiobook', 'Autobiography', 'Biography Memoir']", "['Young Adult', 'Fantasy', 'Romance', 'Fiction', 'Mystery', 'Paranormal', 'Magic']", "['Classics', 'German Literature', 'Fiction', 'Germany', 'Short Stories', 'Literature', 'Novels']", "['Nonfiction', 'Memoir', 'Biography', 'China', 'School', 'Autobiography', 'Historical']", "['Young Adult', 'Contemporary', 'Fiction', 'Romance', 'Humor', 'Chick Lit', 'Teen']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Fantasy', 'Adult Fiction', 'Womens Fiction']", "['Nonfiction', 'Biography', 'Mental Health', 'Memoir', 'Mental Illness', 'Biography Memoir', 'Psychology']", "['Romance', 'Fiction', 'Historical Fiction', 'Historical', 'Chick Lit', 'Drama', 'Russia']", "['Classics', 'Fiction', 'Romance', 'Brazil', 'Literature', 'Portuguese Literature', '19th Century']", "['Fiction', 'Italian Literature', 'Novels', 'Italy', 'Roman', 'Classics', 'Literature']", "['Fiction', 'Ireland', 'Irish Literature', 'Classics', 'Historical Fiction', 'Literary Fiction', 'Literature']", "['Nonfiction', 'Memoir', 'Biography', 'True Crime', 'Biography Memoir', 'Autobiography', 'Adult']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Nordic Noir', 'Scandinavian Literature', 'Mystery Thriller']", "['Fiction', 'Classics', 'Italian Literature', 'Italy', 'Literature', 'Novels', 'Magical Realism']", "['Historical Fiction', 'Romance', 'Historical', 'Historical Romance', 'Fiction', 'Russia', 'War']", "['Historical Fiction', 'Romance', 'Historical', 'Historical Romance', 'Fiction', 'War', 'Russia']", "['Fiction', 'Romance', 'Chick Lit', 'Drama', 'Contemporary', 'Historical Fiction', 'Coming Of Age']", "['Romance', 'Historical Fiction', 'Fiction', 'Historical Romance', 'Historical', 'Chick Lit', 'Regency']", "['Marriage', 'Nonfiction', 'Relationships', 'Self Help', 'Christian', 'Family', 'Womens']", "['Fantasy', 'Fiction', 'Childrens', 'Classics', 'Young Adult', 'Adventure', 'Middle Grade']", "['Mystery', 'Fiction', 'Middle Grade', 'Young Adult', 'Fantasy', 'Childrens', 'Adventure']", "['Mystery', 'Fiction', 'Crime', 'Detective', 'British Literature', 'Mystery Thriller', 'Murder Mystery']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Suspense', 'British Literature']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Animals', 'Horror', 'Middle Grade']", "['Fantasy', 'Fiction', 'Childrens', 'Young Adult', 'Animals', 'Horror', 'Animal Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Animals', 'Childrens', 'Horror', 'Middle Grade']", "['Fiction', 'Romance', 'Classics', 'Chick Lit', 'Contemporary', 'Novels', 'Historical Fiction']", "['Fiction', 'Science Fiction', 'Thriller', 'Horror', 'Suspense', 'Mystery', 'Science Fiction Fantasy']", "['Spirituality', 'Occult', 'Theosophy', 'Philosophy', 'Unfinished', 'Magick', 'New Age']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'Romance', 'Novels', 'France']", "['Fiction', 'Thriller', 'Mystery', 'Romance', 'Suspense', 'Mystery Thriller', 'Contemporary']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Urban Fantasy', 'Vampires', 'Mythology']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Vampires', 'Urban Fantasy', 'Mythology']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Vampires', 'Urban Fantasy', 'Adult']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Mythology', 'Adult']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Vampires', 'Urban Fantasy', 'Shapeshifters']", "['Romance', 'Paranormal', 'Paranormal Romance', 'Fantasy', 'Vampires', 'Urban Fantasy', 'Adult']", "['Fiction', 'Fantasy', 'Spirituality', 'Paganism', 'Feminism', 'Science Fiction', 'Wicca']", "['Historical Fiction', 'Romance', 'Mystery', 'Fiction', 'Historical', 'Historical Romance', 'Chick Lit']", "['Philosophy', 'Nonfiction', 'China', 'Self Help', 'Classics', 'Spirituality', 'Essays']", "['Fantasy', 'Fiction', 'Classics', 'Young Adult', 'Childrens', 'Christian', 'Adventure']", "['Business', 'Leadership', 'Nonfiction', 'Self Help', 'Management', 'Personal Development', 'Psychology']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Mythology', 'Historical', 'Science Fiction Fantasy', 'Historical Fantasy']", "['Classics', 'Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Adventure', 'Pirates']", "['Fiction', 'Italian Literature', 'Italy', 'Literature', 'Novels', 'Classics', '20th Century']", "['Plays', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre', 'Classics', 'Music']", "['Fantasy', 'Classics', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'School']", "['Fiction', 'Crime', 'Mystery', 'Thriller', 'Historical Fiction', 'Audiobook', 'Mystery Thriller']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Literature', 'Chess', 'Speculative Fiction', 'Magical Realism']", "['Fiction', 'Short Stories', 'India', 'Contemporary', 'Literary Fiction', 'Literature', 'Indian Literature']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Audiobook', 'Adventure']", "['Philosophy', 'Nonfiction', 'Theory', 'Linguistics', 'Language', 'Literary Criticism', 'France']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Literary Fiction', 'Banned Books']", "['Fiction', 'Thriller', 'Mystery', 'Action', 'Suspense', 'Espionage', 'Mystery Thriller']", "['Sports', 'Nonfiction', 'Football', 'History', 'Biography', 'Journalism', 'Adult']", "['Fiction', 'Thriller', 'Mystery', 'Horror', 'Medical', 'Suspense', 'Science Fiction']", "['Fiction', 'Historical Fiction', 'Military Fiction', 'Southern', 'Classics', 'Literature', 'Coming Of Age']", "['Fiction', 'Southern', 'Historical Fiction', 'Contemporary', 'Military Fiction', 'Literature', 'Classics']", "['Fiction', 'China', 'Literature', 'American', 'Literary Fiction', 'Grad School', 'Unfinished']", "['Plays', 'Classics', 'Drama', 'German Literature', 'Fiction', 'Theatre', 'School']", "['Feminism', 'Nonfiction', 'Philosophy', 'Gender', 'Queer', 'Theory', 'Gender Studies']", "['Politics', 'Nonfiction', 'History', 'Humor', 'American History', 'Audiobook', 'Philosophy']", "['Politics', 'Nonfiction', 'History', 'Humor', 'Essays', 'United States', 'Philosophy']", "['Philosophy', 'Nonfiction', 'Theory', 'Sociology', 'Politics', 'History', 'German Literature']", "['Science Fiction', 'Fiction', 'Queer', 'Speculative Fiction', 'Science Fiction Fantasy', 'LGBT', 'Novels']", "['Science Fiction', 'Fiction', 'Space Opera', 'Speculative Fiction', 'Science Fiction Fantasy', 'Classics', 'Novels']", "['Fantasy', 'Fiction', 'Science Fiction', 'Short Stories', 'Queer', 'Sword and Sorcery', 'Science Fiction Fantasy']", "['Fiction', 'Historical Fiction', 'Fantasy', 'LGBT', 'Queer', 'Gay', 'Erotica']", "['Fantasy', 'Fiction', 'Science Fiction', 'LGBT', 'Queer', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Fantasy', 'Fiction', 'Science Fiction', 'Speculative Fiction', 'Science Fiction Fantasy', 'LGBT', 'Short Stories']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Romance', 'Historical', 'Novels', 'Latin American']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Romance', 'Fairy Tales']", "['Fiction', 'Classics', 'New York', 'Novels', 'Contemporary', 'American', 'Literary Fiction']", "['Fiction', 'Literature', 'Novels', 'Classics', 'Philosophy', 'Literary Fiction', 'Contemporary']", "['Fiction', 'Post Apocalyptic', 'Dystopia', 'Science Fiction', 'Young Adult', 'Apocalyptic', 'Survival']", "['Fantasy', 'Young Adult', 'Fiction', 'Dragons', 'Childrens', 'Middle Grade', 'Science Fiction Fantasy']", "['Romance', 'Fiction', 'Paranormal', 'Contemporary Romance', 'Contemporary', 'Paranormal Romance', 'Mystery']", "['Fiction', 'Chick Lit', 'Book Club', 'Womens Fiction', 'Contemporary', 'Womens', 'Adult Fiction']", "['Classics', 'Fiction', 'Hungarian Literature', 'School', 'Childrens', 'Hungary', 'Novels']", "['History', 'Nonfiction', 'Politics', 'War', 'Military Fiction', 'Military History', 'American History']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Thriller', 'Suspense', 'Crime', 'Audiobook']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Thriller', 'Adventure', 'Suspense']", "['Biography', 'History', 'Nonfiction', 'Politics', 'American History', 'Presidents', 'Biography Memoir']", "['Biography', 'History', 'Politics', 'Nonfiction', 'Presidents', 'American History', 'Us Presidents']", "['Poetry', 'Classics', 'Philosophy', 'Fiction', 'Literature', 'Iran', 'Spirituality']", "['Nonfiction', 'History', 'Politics', 'Philosophy', 'Theory', 'Race', 'Essays']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Historical Mystery', 'Medieval', 'Crime']", "['Fiction', 'Classics', 'Literature', 'Mystery', 'Espionage', 'Novels', 'Crime']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Time Travel', 'Fiction', 'Historical', 'Adventure']", "['Nonfiction', 'Memoir', 'Biography', 'Chick Lit', 'Autobiography', 'Erotica', 'Sexuality']", "['Classics', 'Fiction', 'Brazil', 'Literature', 'Romance', 'Novels', 'Portuguese Literature']", "['Fiction', 'Czech Literature', 'Classics', 'Novels', 'Literature', 'Books About Books', 'Novella']", "['Czech Literature', 'Fiction', 'Literature', 'Classics', 'Novels']", "['Plays', 'Classics', 'Drama', 'Russia', 'Fiction', 'Russian Literature', 'Theatre']", "['Comics', 'Graphic Novels', 'Bande Dessinée', 'Fiction', 'Adventure', 'France', 'Graphic Novels Comics']", "['Comics', 'Graphic Novels', 'Adventure', 'Bande Dessinée', 'Fiction', 'Childrens', 'Graphic Novels Comics']", "['Classics', 'Fiction', 'Gothic', 'Horror', 'Scotland', '19th Century', 'Literature']", "['Horror', 'Fiction', 'Short Stories', 'Anthologies', 'Young Adult', 'Fantasy', 'Mystery']", "['Nonfiction', 'Art', 'Humor', 'Memoir', 'Psychology', 'Adult', 'Biography']", "['Theology', 'Religion', 'Christian', 'Philosophy', 'Nonfiction', 'Christianity', 'Classics']", "['Fiction', 'Historical Fiction', 'Mystery', 'Thriller', 'Historical', 'Drama', 'Family']", "['Fiction', 'Spanish Literature', 'Spain', 'Historical Fiction', 'Literature', 'Novels', 'Contemporary']", "['History', 'Nonfiction', 'European History', 'Politics', 'War', 'World History', '19th Century']", "['Fiction', 'Historical Fiction', 'War', 'Italy', 'World War I', 'Historical', 'Literature']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Novels', 'Literature', 'Historical Fiction']", "['Nonfiction', 'Biography', 'Memoir', 'Politics', 'Autobiography', 'Audiobook', 'History']", "['Science Fiction', 'Humor', 'Fiction', 'Audiobook', 'Fantasy', 'Aliens', 'Science Fiction Fantasy']", "['Fiction', 'Classics', 'German Literature', 'Historical Fiction', 'Literature', 'Religion', 'Germany']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Philosophy', 'Novels', 'Germany']", "['Philosophy', 'Nonfiction', 'Religion', 'Theology', 'Spirituality', 'Essays', 'Christianity']", "['Nonfiction', 'History', 'Nature', 'Canada', 'Environment', 'Science', 'True Crime']", "['Fiction', 'Chick Lit', 'Contemporary', 'Marriage', 'Adult Fiction', 'Drama', 'Adult']", "['Fiction', 'Historical Fiction', 'Dutch Literature', 'Classics', 'School', 'Literature', 'War']", "['Fiction', 'Dutch Literature', 'Classics', 'Literature', 'Philosophy', 'Roman', 'Fantasy']", "['Fiction', 'Literature', 'Dutch Literature', 'Roman']", "['Fiction', 'Classics', 'Russia', 'Historical Fiction', 'Russian Literature', 'War', 'Literature']", "['Fiction', 'Historical Fiction', 'German Literature', 'Germany', 'Novels', 'Literature', 'Holocaust']", "['Fiction', 'Russia', 'Russian Literature', 'Historical Fiction', 'Classics', 'Literature', 'Novels']", "['Young Adult', 'Fantasy', 'Paranormal', 'Horror', 'Romance', 'Fiction', 'Urban Fantasy']", "['Fiction', 'France', 'Novels', 'Literature', 'French Literature', 'Contemporary', 'Roman']", "['Nonfiction', 'Picture Books', 'Politics', 'Childrens', 'Parenting', 'Education', 'Biography']", "['Politics', 'History', 'Nonfiction', 'Philosophy', 'Political Science', 'Economics', 'American History']", "['Nonfiction', 'Paganism', 'Spirituality', 'Mythology', 'Ireland', 'Folklore', 'History']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Literature', 'Asia', 'School']", "['Fiction', 'Science Fiction', 'Religion', 'American', 'Novels', 'Literary Fiction', 'Dystopia']", "['Fiction', 'Contemporary', 'British Literature', 'Novels', 'Romance', 'Psychology', 'Literature']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult Fiction', 'Womens Fiction', 'Adult']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Audiobook', 'British Literature', 'Detective']", "['Mystery', 'Romance', 'Crime', 'Fiction', 'Romantic Suspense', 'Futuristic', 'Suspense']", "['Science Fiction', 'Fiction', 'Space Opera', 'Space', 'Hard Science Fiction', 'Audiobook', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Space Opera', 'Space', 'Mystery', 'Audiobook', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Space Opera', 'Audiobook', 'Space', 'Aliens', 'Hard Science Fiction']", "['Science Fiction', 'Fiction', 'Space Opera', 'Space', 'Science Fiction Fantasy', 'Audiobook', 'Hard Science Fiction']", "['Science Fiction', 'Fiction', 'Space Opera', 'Audiobook', 'Space', 'Hard Science Fiction', 'Science Fiction Fantasy']", "['Fiction', 'Scotland', 'Novels', 'British Literature', '20th Century', 'Modern', 'Literature']", "['Historical Fiction', 'Fiction', 'Classics', 'Historical', 'Literature', 'Novels', 'American']", "['Fiction', 'Literary Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Audiobook', 'Novella']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Westerns', 'Disability', 'Western Romance', 'Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Westerns', 'Disability', 'Fiction', 'Western Romance']", "['Romance', 'Historical Romance', 'Historical', 'Westerns', 'Western Romance', 'Contemporary Romance', 'Historical Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Paranormal', 'Westerns', 'Adult', 'Western Romance']", "['Philosophy', 'Nonfiction', 'Spirituality', 'Religion', 'Taoism', 'Self Help', 'Psychology']", "['Christian', 'Nonfiction', 'Religion', 'Spirituality', 'Biography', 'Memoir', 'Inspirational']", "['Christian', 'Theology', 'Nonfiction', 'Christianity', 'Faith', 'Religion', 'Christian Living']", "['Fiction', 'Historical Fiction', 'Romance', 'Historical', 'Chick Lit', 'Contemporary', 'Adult Fiction']", "['Childrens', 'Fiction', 'Classics', 'Middle Grade', 'Juvenile', 'Young Adult', 'Humor']", "['Horror', 'Fiction', 'Short Stories', 'Gothic', 'Anthologies']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Feminism', 'Aliens', 'Gender']", "['Horror', 'Vampires', 'Gothic', 'Fiction', 'Fantasy', 'Supernatural', 'Historical Fiction']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Audiobook', 'Detective', 'Thriller']", "['Fiction', 'Mystery', 'Animals', 'Dogs', 'Contemporary', 'Literary Fiction', 'Adult']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Historical', 'Realistic Fiction']", "['Horror', 'Fiction', 'Gothic', 'Mystery', 'Paranormal', 'Classics', 'Audiobook']", "['Short Stories', 'Horror', 'Fiction', 'Classics', 'Gothic', 'Fantasy', 'Essays']", "['Short Stories', 'Horror', 'Fiction', 'Classics', 'Gothic', 'Literature', 'Audiobook']", "['Horror', 'Fiction', 'Gothic', 'Mystery', 'Audiobook', 'Thriller', 'Classics']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Childrens', 'Historical']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Sports', 'School', 'Middle Grade', 'Read For School']", "['Historical Fiction', 'Middle Grade', 'Young Adult', 'Fiction', 'Childrens', 'School', 'Historical']", "['Historical Fiction', 'Fiction', 'Historical', 'Art', 'France', 'Romance', 'Medieval']", "['Horror', 'Young Adult', 'Fiction', 'Thriller', 'Mystery', 'Childrens', 'Teen']", "['Fiction', 'Historical Fiction', 'Egypt', 'Novels', 'Africa', 'Romance', 'Literature']", "['Biography', 'Nonfiction', 'France', 'History', 'Biography Memoir', 'Queer', 'Literature']", "['Fiction', 'Classics', 'France', 'LGBT', 'French Literature', 'Queer', 'Literature']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Literature', 'Novels', 'Adult Fiction', 'Relationships']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Classics', 'Literature']", "['Fiction', 'Book Club', 'Contemporary', 'Literary Fiction', 'Adult Fiction', 'Scotland', 'Novels']", "['Classics', 'Fiction', 'Gothic', 'Literature', 'Historical Fiction', 'American', 'Horror']", "['Fiction', 'American', 'Novels', 'Classics', 'Americana', 'The United States Of America', 'Literature']", "['Historical Fiction', 'Fiction', 'Ireland', 'Irish Literature', 'Historical', 'Travel', 'Audiobook']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Teen', 'Young Adult Contemporary']", "['History', 'Nonfiction', 'Politics', 'American History', 'War', 'The United States Of America', 'International Relations']", "['Horror', 'Zombies', 'Apocalyptic', 'Fiction', 'Post Apocalyptic', 'Thriller', 'Science Fiction']", "['Fantasy', 'Fiction', 'Magical Realism', 'Novels', 'Science Fiction Fantasy', 'Science Fiction', 'Unfinished']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Magical Realism', 'Science Fiction', 'Literature', 'Novels']", "['Poetry', 'Fiction', 'Literature', 'Essays', 'American', 'The United States Of America', 'Literary Fiction']", "['Fiction', 'Poetry', 'Fantasy', 'Romance', 'Novels', 'Literature', 'Literary Fiction']", "['Poetry', 'Fiction', 'School', 'Art', 'Contemporary', 'Literature', 'Feminism']", "['Fiction', 'Novels', 'Literature', 'Literary Fiction', 'British Literature', '20th Century', 'Classics']", "['Science Fiction', 'Alternate History', 'Fiction', 'Time Travel', 'Historical Fiction', 'Civil War', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Science Fiction Fantasy', 'Speculative Fiction', 'Classics', 'Fantasy']", "['Fiction', 'Romance', 'Classics', 'School', 'Literature', 'Brazil', 'Young Adult']", "['Fiction', 'Romance', 'Medical', 'Medicine', 'Drama', 'Contemporary', 'Novels']", "['Classics', 'Fiction', 'German Literature', 'Historical Fiction', 'War', 'Germany', 'Romance']", "['Childrens', 'Fiction', 'Middle Grade', 'Classics', 'Realistic Fiction', 'Young Adult', 'Humor']", "['Childrens', 'Fiction', 'Middle Grade', 'Classics', 'Realistic Fiction', 'Chapter Books', 'Young Adult']", "['Childrens', 'Fiction', 'Middle Grade', 'Classics', 'Realistic Fiction', 'Young Adult', 'Chapter Books']", "['Childrens', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Classics', 'Young Adult', 'Chapter Books']", "['Science', 'Biology', 'Nonfiction', 'Evolution', 'Genetics', 'Philosophy', 'Ecology']", "['Science', 'Biology', 'Nonfiction', 'Evolution', 'Nature', 'Ecology', 'Philosophy']", "['Historical Fiction', 'Fiction', 'Magical Realism', 'Historical', 'Latin American', 'Novels', 'Religion']", "['Music', 'Nonfiction', 'Adult', 'History']", "['Historical Fiction', 'Young Adult', 'Holocaust', 'Fiction', 'Historical', 'World War II', 'Time Travel']", "['Nonfiction', 'History', 'Politics', 'Social Justice', 'True Crime', 'Audiobook', 'Journalism']", "['Nonfiction', 'Science', 'Animals', 'Nature', 'Adventure', 'Memoir', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Novels', 'Literature', 'American', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Short Stories', 'Literary Fiction', 'Novels', 'Classics', 'Literature']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'Suspense', 'British Literature']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', '20th Century', 'Novels', 'Literature']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'British Literature', 'Literature', 'Contemporary', 'Novels']", "['Horror', 'Japan', 'Short Stories', 'Fiction', 'Fantasy', 'Japanese Literature', 'Classics']", "['Mystery', 'Fiction', 'Historical Fiction', 'Historical', 'Mystery Thriller', 'Crime', 'Historical Mystery']", "['Nonfiction', 'History', 'Politics', 'Biography', 'Race', 'Memoir', 'Theory']", "['Biography', 'Art', 'Nonfiction', 'History', 'Biography Memoir', 'Feminism', 'Art History']", "['Fiction', 'Historical Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Historical Fiction', 'Adventure', 'Historical', 'Romance']", "['Memoir', 'Nonfiction', 'Queer', 'Feminism', 'LGBT', 'Biography', 'Biography Memoir']", "['Short Stories', 'Science Fiction', 'Fiction', 'Classics', 'Fantasy', 'Science Fiction Fantasy', 'Young Adult']", "['Nonfiction', 'Death', 'Science', 'History', 'Reference', 'Humor', 'True Crime']", "['Philosophy', 'Nonfiction', 'France', 'Essays', 'French Literature', 'Literature', 'Classics']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Dragons', 'Adventure']", "['Fantasy', 'Dragons', 'Historical Fiction', 'Fiction', 'Alternate History', 'Historical', 'Historical Fantasy']", "['Nonfiction', 'Biography', 'History', 'Memoir', 'Autobiography', 'Race', 'Classics']", "['Fantasy', 'Fiction', 'Science Fiction', 'Science Fiction Fantasy', 'Classics', 'Epic Fantasy', 'High Fantasy']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Adventure', 'Comic Book']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Action', 'Suspense', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Novels', 'Travel', 'Unfinished']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Epic', 'Audiobook', 'Novels']", "['Plays', 'Drama', 'LGBT', 'Fiction', 'Theatre', 'Queer', 'Classics']", "['Classics', 'Plays', 'Fiction', 'Drama', 'Humor', 'School', 'Literature']", "['Philosophy', 'Nonfiction', 'Classics', 'Psychology', 'Theory', 'German Literature', 'Science']", "['Classics', 'Plays', 'Fiction', 'Drama', 'Literature', 'Humor', 'Theatre']", "['Fiction', 'Historical Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'War']", "['Fiction', 'LGBT', 'Queer', 'Contemporary', 'Gay', 'Mystery', 'Young Adult']", "['Fiction', 'Thriller', 'Historical Fiction', 'Mystery', 'Suspense', 'Espionage', 'Adventure']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Science Fiction', 'Crime', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Thriller', 'War', 'World War II', 'Historical', 'Suspense']", "['Fantasy', 'Graphic Novels', 'Short Stories', 'Fiction', 'Comics', 'Horror', 'Anthologies']", "['Fiction', 'War', 'Historical Fiction', 'World War II', 'Military Fiction', 'Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Hungary', 'Travel', 'Literature', 'Novels', 'Historical']", "['Science Fiction', 'Fiction', 'Dystopia', 'Fantasy', 'Novels', 'Science Fiction Fantasy', 'Adventure']", "['Plays', 'Classics', 'Fiction', 'Drama', 'School', 'Theatre', 'Literature']", "['Fiction', 'Post Apocalyptic', 'Science Fiction', 'Dystopia', 'Apocalyptic', 'Novels', 'Literature']", "['Fiction', 'Historical Fiction', 'Religion', 'Literary Fiction', 'Literature', 'Novels', 'British Literature']", "['Science Fiction', 'Fiction', 'Short Stories', 'Fantasy', 'Speculative Fiction', 'Science Fiction Fantasy', 'Anthologies']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Classics', 'Speculative Fiction', 'Space Opera']", "['Short Stories', 'Fiction', 'Classics', 'Fantasy', 'Science Fiction', 'Philosophy', 'Dystopia']", "['Fiction', 'Historical Fiction', 'Jewish', 'Art', 'Magical Realism', 'Judaism', 'Historical']", "['Fantasy', 'Young Adult', 'Vampires', 'Romance', 'Fiction', 'Paranormal', 'Young Adult Fantasy']", "['Fantasy', 'Fiction', 'High Fantasy', 'Young Adult', 'Science Fiction Fantasy', 'Magic', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Magic', 'Young Adult', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Young Adult', 'Magic', 'Epic Fantasy']", "['Fiction', 'Classics', 'Humor', 'Historical Fiction', 'British Literature', 'Comedy', 'Literature']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Audiobook', 'Speculative Fiction', 'Adult']", "['Fiction', 'France', 'French Literature', 'Classics', '19th Century', 'Literature', 'Historical Fiction']", "['Fiction', 'Fantasy', 'Classics', 'Short Stories', 'Literature', 'Mythology', 'Fairy Tales']", "['Classics', 'Fiction', 'Fantasy', 'Short Stories', 'Literature', 'Childrens', 'Magic']", "['Fiction', 'France', 'Classics', 'French Literature', 'Literature', 'Poetry', 'Art']", "['Classics', 'Gothic', 'Fiction', 'Horror', 'Mystery', 'Romance', '18th Century']", "['Classics', 'Gothic', 'Fiction', 'Horror', 'Romance', '18th Century', 'Literature']", "['Classics', 'Gothic', 'Horror', 'Fiction', '18th Century', 'Fantasy', 'Literature']", "['Fiction', 'Classics', 'Fantasy', 'Gothic', 'Polish Literature', 'Horror', 'Poland']", "['Gothic', 'Classics', 'Fiction', 'Horror', '18th Century', 'Mystery', 'Historical Fiction']", "['Fiction', 'Short Stories', 'American', 'Literary Fiction', 'Southern', 'Southern Gothic', 'Literature']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Science Fiction', 'Classics', 'Halloween']", "['Classics', 'Horror', 'Fiction', 'Short Stories', 'Fantasy', 'Gothic', 'Audiobook']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Apocalyptic', 'Dystopia', 'Classics', 'Science Fiction Fantasy']", "['Classics', 'Fantasy', 'Fiction', 'Arthurian', 'Mythology', 'Historical Fiction', 'Adventure']", "['Fiction', 'Fantasy', 'Classics', 'Arthurian', 'Historical Fiction', 'Mythology', 'Literature']", "['Manga', 'Comics', 'Graphic Novels', 'Science Fiction', 'Fiction', 'Cyberpunk', 'Japan']", "['Manga', 'Comics', 'Graphic Novels', 'Science Fiction', 'Fiction', 'Cyberpunk', 'Dystopia']", "['Film', 'Biography', 'Nonfiction', 'Japan', 'Autobiography', 'Memoir', 'Media Tie In']", "['Fiction', 'Classics', 'German Literature', 'Poetry', 'Literature', 'Novels', 'Philosophy']", "['Fiction', 'Fantasy', 'Science Fiction', 'Mystery', 'Magical Realism', 'Contemporary', 'Books About Books']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Horror', 'Dystopia', 'Fantasy', 'Science Fiction Fantasy']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Magic', 'Shapeshifters']", "['Historical Fiction', 'Fiction', 'China', 'Classics', 'Asia', 'War', 'Historical']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Mystery Thriller', 'British Literature', 'Detective']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'Humor']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Contemporary Romance', 'Adult', 'Humor']", "['Young Adult', 'Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Teen', 'Humor']", "['Historical Fiction', 'Young Adult', 'Historical', 'Middle Grade', 'Fiction', 'Childrens', 'Russia']", "['Fantasy', 'Dragonlance', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy', 'Dragons']", "['Young Adult', 'Fiction', 'Mystery', 'Realistic Fiction', 'Medical', 'Thriller', 'Horror']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'Mystery Thriller', 'Spy Thriller']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Mystery Thriller', 'Suspense', 'Spy Thriller']", "['Poetry', 'Nobel Prize', 'Fiction', 'Post Colonial', '20th Century', 'School', 'Literature']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical Mystery', 'Historical', 'Crime', 'Audiobook']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Historical Mystery', 'Crime', 'Audiobook']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Suspense', 'Mystery Thriller', 'Audiobook']", "['Psychology', 'Nonfiction', 'Philosophy', 'Classics', 'Science', 'Psychoanalysis', 'Theory']", "['History', 'Biography', 'Nonfiction', 'World War II', 'Germany', 'War', 'Politics']", "['Historical Fiction', 'Fiction', 'Historical', 'Italian Literature', 'Novels', 'Italy', 'Mystery']", "['Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Adult', 'Contemporary Romance', 'Suspense']", "['China', 'Nonfiction', 'Travel', 'Memoir', 'Asia', 'History', 'Biography']", "['Young Adult', 'LGBT', 'Fiction', 'Romance', 'Queer', 'Gay', 'Realistic Fiction']", "['Young Adult', 'LGBT', 'Fiction', 'Queer', 'Gay', 'Contemporary', 'Romance']", "['Food', 'Nonfiction', 'Food Writing', 'Cooking', 'Essays', 'Memoir']", "['Romance', 'Historical Romance', 'Historical', 'Mystery', 'Fiction', 'Historical Fiction', 'Suspense']", "['Spirituality', 'Philosophy', 'Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Religion']", "['Young Adult', 'Fiction', 'Adventure', 'Mystery', 'Espionage', 'Action', 'Thriller']", "['Fiction', 'Latin American', 'Novels', 'Spanish Literature', 'Mystery', 'Historical Fiction', 'Literature']", "['Fiction', 'Science Fiction', 'Classics', 'Latin American', 'Spanish Literature', 'Literature', 'Fantasy']", "['History', 'France', 'War', 'Classics', 'French Literature', 'Historical', 'World War II']", "['Travel', 'History', 'Nonfiction', 'Biography', 'Adventure', 'Memoir', 'Australia']", "['Philosophy', 'Nonfiction', 'Classics', 'German Literature', 'Poetry', 'Psychology', 'Religion']", "['Historical Fiction', 'Fiction', 'India', 'Romance', 'Historical', 'Book Club', 'Asia']", "['History', 'Nonfiction', 'World War II', 'War', 'Military Fiction', 'Military History', 'American History']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Animals', 'Fantasy', 'Chapter Books']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Contemporary Romance', 'Adult', 'Drama']", "['Romance', 'Fiction', 'Love']", "['Fiction', 'India', 'Historical Fiction', 'Indian Literature', 'Literary Fiction', 'Asia', 'Literature']", "['History', 'American History', 'Nonfiction', 'American', '18th Century', 'American Revolution', 'Historical']", "['Comics', 'Graphic Novels', 'Fantasy', 'Fiction', 'Comic Book', 'Graphic Novels Comics', 'Horror']", "['Nonfiction', 'Memoir', 'Business', 'Education', 'Biography', 'Travel', 'Entrepreneurship']", "['Memoir', 'Nonfiction', 'Humor', 'Comedy', 'Biography', 'Essays', 'Biography Memoir']", "['Science Fiction', 'Fiction', 'Classics', 'Polish Literature', 'Philosophy', 'Science Fiction Fantasy', 'Fantasy']", "['Christian Fiction', 'Christian', 'Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Christian Historical Fiction']", "['Christian Fiction', 'Historical Fiction', 'Christian', 'Fiction', 'Romance', 'Historical', 'Historical Romance']", "['Christian Fiction', 'Fiction', 'Christian', 'Historical Fiction', 'Historical', 'Adult', 'Novels']", "['Travel', 'Nonfiction', 'Memoir', 'History', 'Biography', 'Adventure', 'Politics']", "['Classics', 'Romance', 'Fiction', 'Historical Fiction', 'Young Adult', 'Historical', 'Canada']", "['Self Help', 'Christian', 'Nonfiction', 'Inspirational', 'Religion', 'Spirituality', 'Christianity']", "['Buddhism', 'Nonfiction', 'Self Help', 'Spirituality', 'Philosophy', 'Psychology', 'Religion']", "['History', 'Nonfiction', 'China', 'War', 'Japan', 'World War II', 'Historical']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'American', '20th Century', 'Anthologies']", "['Plays', 'Drama', 'Classics', 'Fiction', 'Theatre', 'School', 'Historical Fiction']", "['Fiction', 'Chick Lit', 'Romance', 'Humor', 'Politics', 'Contemporary', 'Adult Fiction']", "['Science Fiction', 'Fiction', 'Autistic Spectrum Disorder', 'Speculative Fiction', 'Science Fiction Fantasy', 'Disability', 'Fantasy']", "['Fiction', 'Historical Fiction', 'Chick Lit', 'Romance', 'Historical', 'Contemporary', 'Novels']", "['History', 'Nonfiction', 'War', 'Military Fiction', 'Military History', 'American History', 'Politics']", "['History', 'Nonfiction', 'Politics', 'Journalism', 'American History', 'True Crime', 'Classics']", "['Fiction', 'LGBT', 'Historical Fiction', 'Queer', 'Gay', 'Historical', 'Ireland']", "['Poetry', 'LGBT', 'Queer', 'Romance', 'Contemporary', 'Fiction', 'Gay']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adventure', 'Military Fiction', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adventure', 'Military Fiction']", "['Fiction', 'Africa', 'South Africa', 'Nobel Prize', 'Contemporary', 'Novels', 'Literature']", "['Graphic Novels', 'Batman', 'Fiction', 'Dc Comics', 'Graphic Novels Comics', 'Comic Book', 'Superheroes']", "['Fiction', 'Classics', 'Novels', 'New York', 'Contemporary', 'Literary Fiction', 'American']", "['Fiction', 'Novels', 'Classics', 'Egypt', 'Literature', 'Egyptian Literature', 'Africa']", "['Fiction', 'Childrens', 'Inspirational', 'Philosophy', 'Classics', 'Picture Books', 'Spirituality']", "['Music', 'Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Biography Memoir', 'Audiobook']", "['Fiction', 'Book Club', 'Contemporary', 'Adult Fiction', 'Holocaust', 'Chick Lit', 'Adult']", "['Humor', 'Nonfiction', 'Reference', 'Tv', 'Comics', 'Comedy', 'Graphic Novels']", "['Nonfiction', 'True Crime', 'Biography', 'Memoir', 'Autobiography']", "['Psychology', 'Nonfiction', 'Philosophy', 'Self Help', 'Science', 'Personal Development', 'Audiobook']", "['Comics', 'Graphic Novels', 'Horror', 'Fiction', 'Humor', 'Graphic Novels Comics', 'Comic Book']", "['Fiction', 'Humor', 'Comedy', 'Mystery', 'Contemporary', 'Novels', 'Crime']", "['Fiction', 'Novels', 'Contemporary', 'Literature', 'Travel', 'Female Authors']", "['Fiction', 'Ireland', 'Classics', 'Irish Literature', 'Novels', 'Humor', 'Literature']", "['History', 'Russia', 'Nonfiction', 'Russian History', 'Art', 'Cultural', 'European History']", "['Philosophy', 'Nonfiction', 'Classics', 'History', 'Self Help', 'Psychology', 'Personal Development']", "['Philosophy', 'Nonfiction', 'Classics', 'Self Help', 'Essays', 'Psychology', 'Personal Development']", "['History', 'Nonfiction', 'Race', 'American History', 'Politics', 'African American', 'Social Justice']", "['Graphic Novels', 'Comics', 'Horror', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Comic Book']", "['Nonfiction', 'Business', 'Self Help', 'Feminism', 'Personal Development', 'Leadership', 'Womens']", "['Fiction', 'Humor', 'Contemporary', 'Novels', 'Literary Fiction', 'Adult', 'Literature']", "['Christian Fiction', 'Christian', 'Fiction', 'Romance', 'Historical Fiction', 'Adult Fiction', 'Contemporary']", "['Nonfiction', 'Africa', 'Biography', 'Memoir', 'History', 'Rwanda', 'Autobiography']", "['Fantasy', 'Romance', 'Science Fiction', 'Fiction', 'Angels', 'Science Fiction Fantasy', 'Adult']", "['Fantasy', 'Romance', 'Magic', 'Fiction', 'Fantasy Romance', 'Adult', 'High Fantasy']", "['Science Fiction', 'Space Opera', 'Fiction', 'Cyberpunk', 'Space', 'Science Fiction Fantasy', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Art', 'Italy', 'Historical', 'Art History', 'Womens']", "['Fiction', 'Mystery', 'Thriller', 'Suspense', 'Crime', 'Mystery Thriller', 'Military Fiction']", "['Feminism', 'Nonfiction', 'Philosophy', 'Politics', 'Womens', 'Gender', 'Classics']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Fantasy', 'Art', 'Kids']", "['Fiction', 'Novels', 'American', 'Literature', 'Literary Fiction', 'Humor', 'Contemporary']", "['Historical Fiction', 'Young Adult', 'Historical', 'Middle Grade', 'Childrens', 'Fiction', 'France']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Science Fiction', 'Mystery', 'Suspense']", "['Short Stories', 'Fiction', 'Classics', 'American', 'Feminism']", "['Business', 'Finance', 'Nonfiction', 'Self Help', 'Money', 'Personal Development', 'Economics']", "['Fiction', 'Historical Fiction', 'Novels', 'Turkish Literature', 'Contemporary', 'Turkish', 'Literary Fiction']", "['Nonfiction', 'Biography', 'Memoir', 'Classics', 'Religion', 'Autobiography', 'Literature']", "['Fiction', 'Russia', 'Science Fiction', 'Russian Literature', 'Novels', 'Literature', 'Contemporary']", "['Childrens', 'Fiction', 'Classics', 'Fantasy', 'Animals', 'Middle Grade', 'Audiobook']", "['Classics', 'Childrens', 'Fiction', 'Poetry', 'Fantasy', 'Picture Books', 'Short Stories']", "['Classics', 'Childrens', 'Fiction', 'Fantasy', 'Picture Books', 'Animals', 'Juvenile']", "['Fiction', 'Nature', 'Environment', 'Classics', 'Humor', 'Politics', 'Novels']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'Audiobook', 'Novels']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'Classics', 'Space']", "['Fantasy', 'Fiction', 'Young Adult', 'Magic', 'Adventure', 'Childrens', 'Classics']", "['Classics', 'Short Stories', 'Fiction', 'Feminism', 'Horror', 'Literature', 'Gothic']", "['Nonfiction', 'Psychology', 'Business', 'Self Help', 'Education', 'Science', 'Personal Development']", "['Classics', 'Fiction', 'Literature', '18th Century', 'Humor', 'British Literature', 'Novels']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Mystery', 'Paranormal', 'Magic', 'Vampires']", "['Nonfiction', 'Science', 'Nature', 'Plants', 'Spirituality', 'Gardening', 'Biology']", "['Fiction', 'Classics', 'German Literature', 'Germany', 'Literature', '20th Century', 'Novels']", "['Historical Fiction', 'Fiction', 'Historical', 'France', 'Classics', 'Fantasy', 'Medieval']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'France', 'Medieval', 'Classics']", "['Young Adult', 'Fiction', 'Contemporary', 'Romance', 'Realistic Fiction', 'Coming Of Age', 'Teen']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Romance', 'Crime']", "['Fiction', 'Mystery', 'LGBT', 'Horror', 'Thriller', 'Gay', 'Queer']", "['Classics', 'Fiction', 'Historical Fiction', 'Romance', 'China', 'Literature', 'British Literature']", "['Science Fiction', 'Alternate History', 'Time Travel', 'Fantasy', 'Fiction', 'Historical Fiction', 'Science Fiction Fantasy']", "['Horror', 'Fiction', 'Classics', 'Fantasy', 'Gothic', 'German Literature', 'Literature']", "['Fiction', 'Thriller', 'Horror', 'Science Fiction', 'Mystery', 'Historical Fiction', 'Classics']", "['Religion', 'Philosophy', 'Classics', 'Spirituality', 'Poetry', 'Nonfiction', 'Hinduism']", "['Philosophy', 'Nonfiction', 'Politics', 'Classics', 'Biography', 'Psychology', 'Economics']", "['Historical Fiction', 'Fiction', 'Jewish', 'Judaism', 'Judaica', 'Religion', 'Philosophy']", "['Classics', 'Fiction', 'Fantasy', 'China', 'Mythology', 'Chinese Literature', 'Asia']", "['Nonfiction', 'Self Help', 'Essays', 'Memoir', 'Inspirational', 'Philosophy', 'Psychology']", "['Nonfiction', 'Memoir', 'Biography', 'History', 'Race', 'Feminism', 'Politics']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Novels', 'Aliens']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Fantasy', 'Aliens', 'Audiobook']", "['Fantasy', 'Dragons', 'Fiction', 'Young Adult', 'Middle Grade', 'Historical Fiction', 'Childrens']", "['Fantasy', 'Horror', 'Fiction', 'Science Fiction', 'Literature', 'German Literature']", "['Fantasy', 'Dragons', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Mythology', 'Historical Fiction', 'Adventure', 'Middle Grade']", "['Fantasy', 'Fiction', 'Finnish Literature', 'LGBT', 'Queer', 'Urban Fantasy', 'Magical Realism']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction', 'Dystopia', 'Fantasy']", "['History', 'Nonfiction', 'World War I', 'War', 'Military History', 'Military Fiction', 'Audiobook']", "['History', 'World War I', 'Nonfiction', 'War', 'Military History', 'Military Fiction', '20th Century']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Classics', 'Middle Grade', 'Adventure']", "['Science Fiction', 'Fiction', 'Fantasy', 'Christian', 'Classics', 'Christian Fiction', 'Science Fiction Fantasy']", "['Fiction', 'Science Fiction', 'Fantasy', 'Christian', 'Classics', 'Christian Fiction', 'Science Fiction Fantasy']", "['Fiction', 'Chick Lit', 'Literary Fiction', 'Contemporary', 'Novels', 'New York', 'Womens']", "['Mystery', 'Young Adult', 'Fiction', 'Childrens', 'Classics', 'Middle Grade', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'British Literature', 'Prehistory', 'Adventure']", "['Fiction', 'Africa', 'Magical Realism', 'Fantasy', 'Nigeria', 'Literary Fiction', 'African Literature']", "['Fiction', 'Humor', 'Literature', 'Comedy', 'Novels']", "['Fiction', 'Classics', 'Novels', 'Film', 'Literature', 'Philosophy', 'American']", "['Cookbooks', 'Cooking', 'Nonfiction', 'Food', 'Reference', 'Food and Drink', 'How To']", "['Romance', 'Historical Romance', 'Historical', 'Regency', 'Historical Fiction', 'Mystery', 'Fiction']", "['Fiction', 'Historical Fiction', 'Classics', 'German Literature', 'Romance', 'Holocaust', 'Historical']", "['Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary', 'British Literature', '21st Century']", "['Humor', 'Food', 'Nonfiction', 'Cooking', 'History', 'Cookbooks', 'Pop Culture']", "['Fiction', 'Contemporary', 'India', 'Asia', 'Chick Lit', 'Cultural', 'Romance']", "['Fiction', 'Classics', 'India', 'Historical Fiction', 'School', 'Read For School', 'Indian Literature']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Alternate History', 'Humor', 'Mystery', 'Science Fiction']", "['Science Fiction', 'Fiction', 'Fantasy']", "['Fiction', 'Philosophy', 'France', 'Novels', 'French Literature', 'Classics', 'Literature']", "['Historical Fiction', 'Fiction', 'Classics', 'Adventure', 'Novels', 'Literature', 'Historical']", "['Science Fiction', 'Fantasy', 'Horror', 'Fiction', 'Urban Fantasy', 'Humor', 'Lovecraftian']", "['Historical Fiction', 'Fiction', 'France', 'Historical', 'French Revolution', 'Literary Fiction', 'Literature']", "['Fantasy', 'Horror', 'Sword and Sorcery', 'Fiction', 'Science Fiction', 'Science Fiction Fantasy', 'Dark']", "['Fiction', 'France', 'Mystery', 'French Literature', 'Literature', 'Novels', '20th Century']", "['Fiction', 'France', 'Novels', 'Literature', 'French Literature', 'Literary Fiction', '20th Century']", "['Fiction', 'France', 'Classics', 'French Literature', 'Literature', 'Novels', '20th Century']", "['Fiction', 'Historical Fiction', 'Japan', 'Classics', 'Japanese Literature', 'Historical', 'Novels']", "['Horror', 'Fantasy', 'Fiction', 'Short Stories', 'Weird Fiction', 'Lovecraftian', 'Classics']", "['Mystery', 'Horror', 'Fiction', 'Thriller', 'Historical Fiction', 'Crime', 'Mystery Thriller']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Noir', 'Humor', 'Mystery Thriller']", "['Horror', 'Fantasy', 'Fiction', 'Urban Fantasy', 'Science Fiction', 'Paranormal', 'Dark Fantasy']", "['History', 'Nonfiction', 'War', 'Military Fiction', 'World War II', 'Biography', 'Military History']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Detective', 'Mystery Thriller', 'Thriller']", "['Comics', 'Graphic Novels', 'Horror', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Comic Book']", "['Science Fiction', 'Fiction', 'Military Fiction', 'War', 'Fantasy', 'Military Science Fiction', 'Science Fiction Fantasy']", "['Mystery', 'Fiction', 'Crime', 'British Literature', 'Mystery Thriller', 'Cozy Mystery', 'Detective']", "['Fiction', 'Classics', 'Fantasy', 'Short Stories', 'Literature', 'American', 'Philosophy']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Historical Mystery', 'Crime', 'Roman']", "['Nonfiction', 'Africa', 'History', 'Journalism', 'Angola', 'Travel', 'War']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'Audiobook', 'Historical Fiction']", "['Historical Fiction', 'Westerns', 'Adventure']", "['Comics', 'Graphic Novels', 'Nonfiction', 'Art', 'Design', 'Graphic Novels Comics', 'Writing']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Comic Book', 'Graphic Novels Comics', 'Horror']", "['Graphic Novels', 'Comics', 'Fiction', 'Comic Book', 'Graphic Novels Comics', 'Horror', 'Fantasy']", "['Horror', 'Fiction', 'Fantasy', 'Short Stories', 'Dark Fantasy', 'Novels', 'Thriller']", "['Historical Fiction', 'Fiction', 'Historical', '17th Century', 'British Literature', 'Literary Fiction', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Classics', 'British Literature', 'Literature', 'Romance', 'Historical']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Germany', 'Adult Fiction', 'Historical', 'Novels']", "['Nonfiction', 'Memoir', 'Biography', 'Africa', 'Morocco', 'Biography Memoir', 'History']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'British Literature', 'Poetry', 'Literature']", "['Fantasy', 'Childrens', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Magic']", "['Fiction', 'Contemporary', 'Romance', 'France', 'Novels', 'Adult Fiction', 'Drama']", "['Nonfiction', 'Biography', 'Memoir', 'Mental Health', 'Biography Memoir', 'Contemporary', 'British Literature']", "['Christian', 'Nonfiction', 'Religion', 'Christianity', 'Prayer', 'Spirituality', 'Christian Living']", "['Science', 'Philosophy', 'Nonfiction', 'Physics', 'Psychology']", "['Memoir', 'Nonfiction', 'Biography', 'Autobiography', 'Coming Of Age', 'Biography Memoir', 'Classics']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Animals', 'Comic Book', 'Comic Strips']", "['Writing', 'Nonfiction', 'Essays', 'Memoir', 'Reference', 'Philosophy', 'Art']", "['Dystopia', 'Young Adult', 'Science Fiction', 'Fiction', 'Middle Grade', 'Childrens', 'Fantasy']", "['Young Adult', 'Fiction', 'Adventure', 'Espionage', 'Mystery', 'Action', 'Thriller']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Historical Fantasy', 'Historical', 'Science Fiction Fantasy', 'Canada']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Canada', 'Magic']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Historical Fiction', 'Historical Fantasy']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical Fantasy', 'Historical', 'Epic Fantasy', 'Science Fiction Fantasy']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Horror', 'Vampires', 'Russia', 'Paranormal']", "['Nonfiction', 'Memoir', 'Christian', 'Biography', 'Inspirational', 'Book Club', 'Faith']", "['Psychology', 'Nonfiction', 'Self Help', 'Reference', 'Business', 'Philosophy', 'Relationships']", "['Fiction', 'Southern', 'Historical Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult Fiction']", "['Horror', 'Fiction', 'Gothic', 'Mystery', 'Paranormal', 'Supernatural', 'Suspense']", "['Fiction', 'Southern', 'Chick Lit', 'Italy', 'Romance', 'Drama', 'Contemporary']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Dystopia', 'Aliens']", "['Feminism', 'Nonfiction', 'Plays', 'Drama', 'Womens', 'Theatre', 'Gender']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Historical Mystery', 'Crime', 'Mystery Thriller']", "['Classics', 'Plays', 'Drama', 'Fiction', 'Historical Fiction', 'Theatre', 'Romance']", "['Nonfiction', 'Poetry', 'Biography', 'Romance', 'Literature', 'Lebanon', 'Philosophy']", "['Spirituality', 'Nonfiction', 'Religion', 'Philosophy', 'Self Help', 'Psychology', 'Metaphysics']", "['Spirituality', 'Nonfiction', 'Psychology', 'Self Help', 'Philosophy', 'Religion', 'New Age']", "['Fiction', 'British Literature', 'Literary Fiction', 'Novels', '20th Century', 'Asia', 'Literature']", "['Fiction', 'Spanish Literature', 'Literature', 'Latin American', 'School', 'Adventure', 'Latin American Literature']", "['Fiction', 'Classics', 'France', 'French Literature', 'Literature', 'Novels', 'Nobel Prize']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Poetry', 'Fantasy', 'Humor']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Humor', 'Fantasy']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Kids', 'Animals']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Regency', 'Fiction', 'Adult']", "['Fiction', 'Indian Literature', 'India', 'Romance', 'Contemporary', 'Novels', 'Young Adult']", "['Fiction', 'Indian Literature', 'India', 'Romance', 'Contemporary', 'Novels', 'Drama']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure', 'Steampunk']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult Fiction', 'Audiobook', 'Southern']", "['Fiction', 'Mystery', 'Crime', 'Classics', 'Noir', 'Detective', 'Literature']", "['Comics', 'Graphic Novels', 'Dc Comics', 'Batman', 'Superheroes', 'Graphic Novels Comics', 'Comic Book']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Adventure', 'Action', 'Animals']", "['True Crime', 'Nonfiction', 'Crime', 'History', 'Horror', 'Biography', 'Audiobook']", "['Fiction', 'Childrens', 'Middle Grade', 'Realistic Fiction', 'Young Adult', 'Classics', 'Juvenile']", "['Comics', 'Graphic Novels', 'Batman', 'Dc Comics', 'Fiction', 'Comic Book', 'Graphic Novels Comics']", "['Comics', 'Graphic Novels', 'Batman', 'Dc Comics', 'Comic Book', 'Graphic Novels Comics', 'Fiction']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Supernatural', 'Angels']", "['Fiction', 'Young Adult', 'Contemporary', 'Novels', 'Coming Of Age', 'Literature', 'Literary Fiction']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Adventure', 'Young Adult', 'Humor']", "['Historical Fiction', 'Childrens', 'Fiction', 'Classics', 'Middle Grade', 'Young Adult', 'Historical']", "['History', 'American History', 'Nonfiction', 'Politics', 'World War II', 'American', 'Economics']", "['Nonfiction', 'Sociology', 'Politics', 'History', 'Cultural', 'Economics', 'Humor']", "['Poetry', 'Classics', 'Humor', 'Fiction', 'Short Stories', 'American', '20th Century']", "['Fiction', 'African American', 'Urban', 'Young Adult', 'Contemporary', 'Adult', 'Adult Fiction']", "['Science Fiction', 'Fiction', 'Philosophy', 'Religion', 'Novels', 'Science Fiction Fantasy', 'Literature']", "['Biography', 'History', 'Nonfiction', 'Christian', 'Christianity', 'Religion', 'Biography Memoir']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Science Fiction', 'Novels']", "['Architecture', 'Design', 'Nonfiction', 'Philosophy', 'Art', 'Urbanism', 'Urban Planning']", "['Finance', 'Business', 'Nonfiction', 'Economics', 'Money', 'Personal Finance', 'Self Help']", "['Graphic Novels', 'Comics', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'Bande Dessinée', 'Comix']", "['Comics', 'Graphic Novels', 'Fantasy', 'Fiction', 'Steampunk', 'Science Fiction', 'Graphic Novels Comics']", "['Comics', 'Graphic Novels', 'Fantasy', 'Fiction', 'Comic Book', 'Science Fiction', 'Graphic Novels Comics']", "['Comics', 'Graphic Novels', 'Batman', 'Dc Comics', 'Comic Book', 'Graphic Novels Comics', 'Superheroes']", "['Comics', 'Batman', 'Graphic Novels', 'Fiction', 'Dc Comics', 'Superheroes', 'Comic Book']", "['Comics', 'Graphic Novels', 'Batman', 'Dc Comics', 'Superheroes', 'Fiction', 'Comic Book']", "['Comics', 'Graphic Novels', 'Dc Comics', 'Batman', 'Superheroes', 'Graphic Novels Comics', 'Crime']", "['Christian', 'Nonfiction', 'Relationships', 'Christianity', 'Christian Living', 'Religion', 'Marriage']", "['Fiction', 'Historical Fiction', 'Classics', 'Australia', 'Romance', 'War', 'Historical']", "['History', 'American History', 'Nonfiction', 'Childrens', 'Picture Books', 'School', 'American']", "['Fantasy', 'Young Adult', 'Horror', 'Fiction', 'Adventure', 'Paranormal', 'Supernatural']", "['Fantasy', 'Young Adult', 'Horror', 'Fiction', 'Adventure', 'Supernatural', 'Paranormal']", "['Historical Romance', 'Romance', 'Historical', 'Medieval', 'Historical Fiction', 'Medieval Romance', 'Fiction']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Medieval', 'Fiction', 'Scotland']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Medieval', 'Fiction', 'Adult']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Regency', 'Fiction', 'Regency Romance']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Novels', 'Literature', 'Coming Of Age']", "['Fiction', 'Classics', 'Literature', '20th Century', 'Philosophy', 'Literary Fiction', 'Novels']", "['Fiction', 'Historical Fiction', 'Classics', 'Historical']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Historical', 'School']", "['Poetry', 'Biography', 'Diary', 'History']", "['Poetry', 'Classics', 'Fiction', '19th Century', 'Womens', 'American', 'Literature']", "['Plays', 'Drama', 'Fiction', 'Theatre', 'Classics', 'Historical Fiction', 'Literature']", "['Horror', 'Fiction', 'Paranormal', 'Fantasy', 'Thriller', 'Supernatural', 'Ghosts']", "['Parenting']", "['Fiction', 'Historical Fiction', 'Russia', 'Literary Fiction', 'British Literature', 'Classics', 'Novels']", "['History', 'Nonfiction', 'Israel', 'Jewish', 'War', 'Politics', 'Historical']", "['Fiction', 'India', 'Historical Fiction', 'Indian Literature', 'Historical', 'Literature', 'Novels']", "['Plays', 'LGBT', 'Drama', 'Gay', 'Theatre', 'Queer', 'Romance']", "['History', 'Nonfiction', 'American History', 'Biography', 'Westerns', 'Native Americans', 'War']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'Crime', 'Adventure']", "['Fiction', 'Historical Fiction', 'Romance', 'Thriller', 'Mystery', 'Historical', 'Fantasy']", "['Fiction', 'Thriller', 'Short Stories', 'Crime', 'Mystery', 'Suspense', 'Espionage']", "['Memoir', 'Nonfiction', 'LGBT', 'Humor', 'Biography', 'Queer', 'Biography Memoir']", "['History', 'Russia', 'Short Stories', 'Nonfiction', 'Russian Literature', 'Classics', 'Literature']", "['Fiction', 'Historical Fiction', 'Australia', 'Historical', 'Crime', 'Literature', 'Literary Fiction']", "['Historical Fiction', 'Romance', 'Fiction', 'Historical', 'Regency', 'Historical Romance', 'Classics']", "['Westerns', 'Fiction', 'Historical Fiction', 'Adventure', 'Historical', 'Nature', 'Survival']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Fiction', 'Audiobook', 'Regency']", "['Historical Romance', 'Historical Fiction', 'Historical', 'Fiction', 'Audiobook', 'Adult', 'Regency']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Fiction', 'Regency', 'Audiobook']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Fiction', 'Regency', 'Adult']", "['Fiction', 'Italian Literature', 'Italy', 'Mystery', 'Thriller', 'Contemporary', 'Crime']", "['Fantasy', 'Vampires', 'Paranormal', 'Urban Fantasy', 'Romance', 'Fiction', 'Mystery']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy', 'Adventure', 'Magic']", "['Nonfiction', 'History', 'Biography', 'Sports', 'Animals', 'Horses', 'Historical']", "['Religion', 'Catholic', 'Theology', 'Reference', 'Nonfiction', 'Christianity', 'Faith']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Classics', 'British Literature', 'Regency']", "['Fiction', 'France', 'French Literature', 'Classics', '19th Century', 'Literature', 'Novels']", "['History', 'Nonfiction', 'Politics', 'Terrorism', 'War', 'Religion', 'American History']", "['Short Stories', 'Fiction', 'Irish Literature', 'Ireland', 'Literature', 'Psychology', 'Novels']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'Literary Fiction', 'American']", "['Short Stories', 'Fiction', 'Africa', 'Nobel Prize', 'South Africa']", "['Fiction', 'Africa', 'Classics', 'Historical Fiction', 'Nigeria', 'African Literature', 'Literature']", "['Short Stories', 'Fiction', 'Anthologies', 'Fantasy', 'Science Fiction', 'Adventure', 'American']", "['Short Stories', 'Fiction', 'Australia', 'Fantasy', 'Novels', 'Anthologies', 'Science Fiction']", "['Short Stories', 'Fiction', 'Canada', 'Literary Fiction', 'Contemporary', 'Nobel Prize', 'Literature']", "['Short Stories', 'Fiction', 'Canada', 'Contemporary', 'Literary Fiction', 'Canadian Literature', 'Literature']", "['Fiction', 'Contemporary', 'Chick Lit', 'Drama', 'Adult Fiction', 'Adult', 'Mystery']", "['Historical Fiction', 'Fiction', 'Historical', 'Tudor Period', 'British Literature', '16th Century', 'Adult']", "['Fiction', 'Classics', 'Literature', 'American', 'Novels', 'Literary Fiction', 'Nobel Prize']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Magic', 'Middle Grade', 'Audiobook']", "['Fiction', 'Historical Fiction', 'War', 'Classics', 'Historical', 'World War II', 'Novels']", "['Historical Fiction', 'Historical', 'Fiction', 'Scotland', 'Romance', 'Adventure', '16th Century']", "['Historical Fiction', 'Fiction', 'Historical', 'Scotland', 'Fantasy', 'Adventure', 'Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Italy', 'Belgium', '15th Century']", "['Historical Fiction', 'Historical', 'Fiction', 'Scotland', 'France', 'Adventure', '16th Century']", "['Historical Fiction', 'Historical', 'Fiction', 'Scotland', 'Audiobook', 'Literature', 'Adventure']", "['Fiction', 'Contemporary', 'Novels', 'Audiobook', 'Book Club', 'Adult Fiction', 'Mental Illness']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'American', '19th Century', 'Classic Literature']", "['Computer Science', 'Programming', 'Technology', 'Technical', 'Science', 'Reference', 'Computers']", "['Programming', 'Computer Science', 'Technology', 'Nonfiction', 'Technical', 'Science', 'Software']", "['Fiction', 'Southern', 'Historical Fiction', 'Humor', 'Historical', 'Literary Fiction', 'Coming Of Age']", "['Nonfiction', 'History', 'Holocaust', 'Memoir', 'World War II', 'Biography', 'Jewish']", "['Science Fiction', 'Space Opera', 'Fiction', 'Military Fiction', 'Military Science Fiction', 'Space', 'War']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Adult Fiction', 'American', 'Family']", "['Fiction', 'Historical Fiction', 'Russia', 'Historical', 'War', 'Literary Fiction', 'Novels']", "['Classics', 'Fiction', 'Fantasy', 'Italian Literature', 'Italy', 'Novels', 'Literature']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Aliens', 'Fantasy', 'Novels', 'Space']", "['Fiction', 'Mystery', 'Contemporary', 'Crime', 'Audiobook', 'Literary Fiction', 'Adult Fiction']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Space', 'Classics', 'Novels', 'Aliens']", "['Fiction', 'Historical Fiction', 'Africa', 'Uganda', 'Historical', 'War', 'Thriller']", "['Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Drama', 'Novels', 'Adult Fiction']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Romance', 'Fae', 'Paranormal Romance', 'Adult']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Time Travel', 'Fantasy', 'Historical Romance', 'Historical']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Time Travel', 'Historical Romance', 'Historical']", "['Romance', 'Time Travel', 'Historical Romance', 'Paranormal Romance', 'Fantasy', 'Paranormal', 'Historical']", "['Romance', 'Time Travel', 'Paranormal Romance', 'Paranormal', 'Historical Romance', 'Fantasy', 'Historical']", "['Romance', 'Historical Romance', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Historical', 'Time Travel']", "['Theology', 'Philosophy', 'Religion', 'Christian', 'Nonfiction', 'Christianity', 'Classics']", "['Biography', 'Nonfiction', 'History', 'Autobiography', 'India', 'Philosophy', 'Memoir']", "['Fantasy', 'Mystery', 'Middle Grade', 'Fairy Tales', 'Fiction', 'Childrens', 'Young Adult']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Thriller', 'Audiobook', 'Romance']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Historical Fiction', 'American', 'Literary Fiction']", "['Fiction', 'Thriller', 'Action', 'War', 'Adventure', 'Military Fiction', 'Classics']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Crime', 'Mystery Thriller', 'Adventure']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Science Fiction', 'Literature', 'Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure', 'Mystery']", "['Fiction', 'Mystery', 'Historical Fiction', 'Thriller', 'Fantasy', 'Historical', 'Adventure']", "['Short Stories', 'Fiction', 'Contemporary', 'Literary Fiction', 'American', 'Adult Fiction', 'Literature']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', '20th Century', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Sports', 'Young Adult', 'Baseball', 'Humor', 'Historical']", "['Romance', 'Contemporary', 'Music', 'New Adult', 'Fiction', 'Contemporary Romance', 'Chick Lit']", "['Short Stories', 'Fiction', 'Poetry', 'American', 'Contemporary', 'Literature', 'Literary Fiction']", "['Business', 'Nonfiction', 'Management', 'Leadership', 'Self Help', 'Buisness', 'Productivity']", "['Childrens', 'Picture Books', 'Christmas', 'Classics', 'Fiction', 'Poetry', 'Fantasy']", "['Fiction', 'Mystery', 'Contemporary', 'Romance', 'Drama', 'Thriller', 'Adult Fiction']", "['Romance', 'Fiction', 'Mystery', 'Paranormal', 'Romantic Suspense', 'Contemporary Romance', 'Contemporary']", "['Romance', 'Romantic Suspense', 'Mystery', 'Fiction', 'Suspense', 'Contemporary Romance', 'Contemporary']", "['Romance', 'Fiction', 'Paranormal', 'Contemporary Romance', 'Contemporary', 'Mystery', 'Fantasy']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Fiction', 'Regency', 'Adult']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Anthologies', 'Chick Lit', 'Adult']", "['Nonfiction', 'History', 'Race', 'Science', 'Medicine', 'Social Justice', 'Medical']", "['Fiction', 'Short Stories', 'Literature', 'Classics', 'American', '19th Century', 'School']", "['Fiction', 'Canada', 'Classics', 'Literature', 'Novels', 'Literary Fiction', 'Canadian Literature']", "['Fiction', 'Classics', 'Novels', 'Erotica', 'Literary Fiction', 'Literature', 'France']", "['History', 'Nonfiction', 'American History', 'Politics', 'Sociology', 'Southern', 'American']", "['Short Stories', 'Classics', 'Fiction', 'Russian Literature', 'Russia', 'Literature', '19th Century']", "['Art', 'Nonfiction', 'Politics', 'Street Art', 'Art Design', 'Photography', 'Design']", "['Fantasy', 'Dragons', 'Fiction', 'Humor', 'Science Fiction', 'Science Fiction Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Science Fiction', 'Childrens', 'Adventure']", "['Mystery', 'Young Adult', 'Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Adventure']", "['Queer', 'Fiction', 'LGBT', 'Lesbian', 'Feminism', 'Gay', 'Novels']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult Fiction', 'Adult', 'Book Club']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Historical Fiction', 'Adventure', '20th Century']", "['Religion', 'Reference', 'Catholic', 'Nonfiction', 'Christianity', 'Faith', 'Theology']", "['Romance', 'Romantic Suspense', 'Mystery', 'Fiction', 'Contemporary Romance', 'Contemporary', 'Suspense']", "['Classics', 'Philosophy', 'Nonfiction', 'Essays', 'Nature', 'Politics', 'Literature']", "['Fiction', 'Romance', 'Scotland', 'Historical Fiction', 'Chick Lit', 'Contemporary', 'British Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'World War II', 'Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Young Adult', 'Classics', 'Childrens', 'Coming Of Age', 'American']", "['Fiction', 'Historical Fiction', 'Science Fiction', 'Fantasy', 'Historical', 'Speculative Fiction', 'Literature']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Audiobook', 'Adult']", "['Nonfiction', 'Books About Books', 'Reference', 'Writing', 'Literature', 'Librarianship', 'Essays']", "['Science Fiction', 'Fantasy', 'Post Apocalyptic', 'Fiction', 'Alternate History', 'Dystopia', 'Apocalyptic']", "['Fantasy', 'Childrens', 'Fiction', 'Adventure', 'Young Adult', 'Dragons', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Urban Fantasy', 'Middle Grade', 'Childrens']", "['Fiction', 'Short Stories', 'Novels', 'Humor', 'Contemporary', 'Literature', 'Literary Fiction']", "['Science', 'Nonfiction', 'Biology', 'Philosophy', 'Religion', 'Atheism', 'Popular Science']", "['Classics', 'Plays', 'Fiction', 'Drama', 'Literature', 'School', 'Theatre']", "['Fiction', 'Dogs', 'Animals', 'Humor', 'Chick Lit', 'Contemporary', 'Fantasy']", "['Politics', 'Nonfiction', 'History', 'Humor', 'Biography', 'Political Science', 'Autobiography']", "['Philosophy', 'Nonfiction', 'Classics', 'Essays', 'Romania', 'France', 'Psychology']", "['Philosophy', 'Nonfiction', 'Essays', 'Romanian Literature', 'Classics', 'Romania', '20th Century']", "['Fiction', 'Dinosaurs', 'Science Fiction', 'Historical Fiction', 'Fantasy', 'Animals', 'Historical']", "['Fiction', 'Russia', 'Fantasy', 'Russian Literature', 'Magical Realism', 'Literature', 'Novels']", "['Science Fiction', 'Fiction', 'Speculative Fiction', 'Novels', 'Science Fiction Fantasy', 'Fantasy', 'Space']", "['Russia', 'Fiction', 'Russian Literature', 'Classics', 'Literature', 'Humor', 'Novels']", "['Fantasy', 'Fiction', 'Childrens', 'Animals', 'Classics', 'Juvenile', 'Family']", "['Fiction', 'Young Adult', 'Classics', 'Historical Fiction', 'Childrens', 'Banned Books', 'Coming Of Age']", "['Classics', 'Mythology', 'Religion', 'India', 'Fiction', 'Philosophy', 'Poetry']", "['Philosophy', 'Nonfiction', 'Theory', 'France', 'Science', 'Art', 'Collections']", "['Short Stories', 'Fiction', 'Literature', 'American', 'Classics', 'Literary Fiction', '20th Century']", "['Fiction', 'Novels', 'Literature', 'American', '20th Century', 'Fantasy', 'Literary Fiction']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'School', '20th Century', 'American']", "['Poetry', 'Russia', 'Russian Literature', 'Classics', 'Plays', 'Fiction', 'Drama']", "['Fiction', 'Novels', 'Nature', 'Environment', 'Travel', 'Literature', 'Contemporary']", "['History', 'Military Fiction', 'Nonfiction', 'War', 'Military History', 'American History', 'Asia']", "['Historical Fiction', 'Young Adult', 'Romance', 'Historical', 'Fiction', 'Fantasy', 'Historical Romance']", "['Fiction', 'Fantasy', 'Contemporary', 'Mystery', 'Magical Realism', 'Thriller', 'Suspense']", "['Dystopia', 'Fiction', 'Science Fiction', 'Mental Illness', 'Speculative Fiction', 'Politics']", "['Biography', 'Nonfiction', 'History', 'Business', 'Film', 'Biography Memoir', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Mystery', 'Crime', 'Thriller', 'Noir', 'Germany']", "['Christian Fiction', 'Amish', 'Fiction', 'Christian', 'Romance', 'Amish Fiction', 'Adult']", "['Graphic Novels', 'Young Adult', 'Comics', 'Fiction', 'Fantasy', 'School', 'Graphic Novels Comics']", "['Mystery', 'Fiction', 'LGBT', 'Thriller', 'Gay', 'Crime', 'Queer']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Literature', 'Italy', 'Italian Literature']", "['Nonfiction', 'Sports', 'Memoir', 'Biography', 'Basketball', 'Biography Memoir', 'Autobiography']", "['Childrens', 'Fiction', 'Historical Fiction', 'Young Adult', 'Middle Grade', 'Classics', 'Humor']", "['Fiction', 'Novels', 'Contemporary', 'Romance', 'Book Club', 'Literary Fiction', 'Short Stories']", "['Fiction', 'Thriller', 'Mystery', 'Romance', 'Suspense', 'Mystery Thriller', 'Crime']", "['Fiction', 'Horror', 'Mystery', 'Thriller', 'Film', 'Crime', 'Fantasy']", "['Fantasy', 'Fiction', 'Adventure', 'Childrens', 'Young Adult', 'Middle Grade', 'Magic']", "['Dogs', 'Nonfiction', 'Animals', 'Psychology', 'Science', 'Audiobook', 'Nature']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'British Literature', '15th Century', 'Plantagenet']", "['Science', 'Nonfiction', 'Health', 'Medicine', 'Medical', 'Biology', 'Evolution']", "['Fiction', 'Classics', 'Literary Fiction', 'Novels', 'Literature', '20th Century', 'British Literature']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Gothic', 'Suspense', 'Contemporary']", "['Picture Books', 'Childrens', 'Fiction', 'Poetry', 'Classics', 'Fantasy', 'Juvenile']", "['Fiction', 'France', 'Classics', 'School', 'Contemporary', 'French Literature', 'Novels']", "['Film', 'Biography', 'Nonfiction', 'Memoir', 'Art', 'Autobiography', 'Spain']", "['Picture Books', 'Childrens', 'Fiction', 'Fantasy', 'Animals', 'Classics', 'Young Adult']", "['Art', 'Poetry', 'Nonfiction', 'Music', 'Philosophy', 'Womens', 'Japan']", "['Young Adult', 'Romance', 'African American', 'Teen', 'Realistic Fiction', 'Fiction', 'Contemporary']", "['Fiction', 'Africa', 'Kenya', 'African Literature', 'Classics', 'Historical Fiction', 'Literature']", "['Young Adult', 'Fiction', 'Childrens', 'Family', 'Middle Grade', 'Chapter Books', 'Historical Fiction']", "['Historical Fiction', 'Fiction', 'Childrens', 'Middle Grade', 'Historical', 'Classics', 'Young Adult']", "['Nonfiction', 'Adventure', 'Survival', 'Memoir', 'Biography', 'Travel', 'Biography Memoir']", "['Childrens', 'Fiction', 'Young Adult', 'Realistic Fiction', 'Chapter Books', 'Juvenile']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Short Stories', 'Speculative Fiction', 'Collections']", "['Science Fiction', 'Fiction', 'Feminism', 'Fantasy', 'Science Fiction Fantasy', 'LGBT', 'Queer']", "['Mystery', 'Fiction', 'Historical Fiction', 'Crime', 'Classics', 'Egypt', 'Historical']", "['Christian', 'Biography', 'Nonfiction', 'Religion', 'Christianity', 'Memoir', 'Theology']", "['Fantasy', 'Classics', 'Fiction', 'Young Adult', 'Childrens', 'Adventure', 'Middle Grade']", "['Science Fiction', 'Young Adult', 'Fiction', 'Fantasy', 'Adventure', 'Survival', 'Time Travel']", "['Lds Fiction', 'Lds', 'Fantasy', 'Young Adult', 'Fiction', 'Religion', 'Historical Fiction']", "['Fiction', 'Young Adult', 'Animals', 'Childrens', 'Middle Grade', 'Adventure', 'Wolves']", "['Plays', 'Fiction', 'Drama', 'Classics', 'Theatre', '19th Century', 'Literature']", "['Classics', 'Plays', 'Fiction', 'Drama', 'Theatre', '19th Century', 'Humor']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Classics', 'School', 'War']", "['Travel', 'Nonfiction', 'Memoir', 'Adventure', 'Biography', 'Outdoors', 'Nature']", "['Historical Fiction', 'Gothic', 'Fiction', 'Romance', 'Classics', 'Historical', 'Historical Romance']", "['Fantasy', 'Historical Fiction', 'Young Adult', 'Mystery', 'Fiction', 'Middle Grade', 'Childrens']", "['Fantasy', 'Christian Fiction', 'Christian', 'Fiction', 'Christian Fantasy', 'Romance', 'Adventure']", "['Christian', 'Nonfiction', 'Christian Living', 'Faith', 'Christianity', 'Theology', 'Religion']", "['Horror', 'Fiction', 'Mystery', 'Gothic', 'Historical Fiction', 'Ghosts', 'Paranormal']", "['Fiction', 'Contemporary', 'Short Stories', 'LGBT', 'Literary Fiction', 'Novels', 'Queer']", "['Fiction', 'Horror', 'Science Fiction', 'Fantasy', 'Thriller', 'Mystery', 'Scotland']", "['Short Stories', 'Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'France', 'Classics', 'Dutch Literature']", "['Writing', 'Nonfiction', 'Memoir', 'Biography', 'Autobiography']", "['Christian', 'Theology', 'Nonfiction', 'Christianity', 'Faith', 'Christian Living', 'Religion']", "['Mystery', 'Fiction', 'Thriller', 'Audiobook', 'Crime', 'Mystery Thriller', 'Suspense']", "['Occult', 'Philosophy', 'Nonfiction', 'Poetry', 'Religion', 'Thelema', 'Spirituality']", "['Science Fiction', 'Fiction', 'Hugo Awards', 'Religion', 'Science Fiction Fantasy', 'Speculative Fiction', 'Fantasy']", "['Africa', 'France', 'Nonfiction', 'Memoir', 'Guinea', 'African Literature', 'Classics']", "['Africa', 'Fiction', 'Guinea', 'African Literature', 'Classics', 'Literature', 'Novels']", "['Philosophy', 'Essays', 'Classics', 'Nonfiction', 'Literature', '19th Century', 'American']", "['Plays', 'Philosophy', 'Classics', 'Fiction', 'Drama', 'France', 'Theatre']", "['Biography', 'Nonfiction', 'Classics', 'Literary Fiction', 'American']", "['Classics', 'Fiction', 'Literature', 'American', 'Romance', 'Historical Fiction', 'Novels']", "['History', 'India', 'Nonfiction', 'Biography', 'Asia', 'Historical', 'Indian Literature']", "['History', 'India', 'Nonfiction', 'Biography', 'Historical', 'Travel', 'Indian Literature']", "['Fiction', 'Mystery', 'Crime', 'Thriller', 'Denmark', 'Scandinavian Literature', 'Mystery Thriller']", "['Marriage', 'Nonfiction', 'Christian', 'Christianity', 'Christian Living', 'Self Help', 'Religion']", "['Historical Romance', 'Romance', 'Historical', 'Regency', 'Historical Fiction', 'Regency Romance', 'Fiction']", "['LGBT', 'Fiction', 'Romance', 'Lesbian', 'Queer', 'Contemporary', 'Literary Fiction']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Mystery Thriller', 'Espionage', 'Adventure']", "['Fiction', 'Thriller', 'Adventure', 'Suspense', 'Mystery', 'Novels', 'Crime']", "['Fiction', 'Thriller', 'Medical', 'Medicine', 'Suspense', 'Classics', 'Drama']", "['Classics', 'Fiction', 'Childrens', 'Adventure', 'Young Adult', 'Middle Grade', 'Historical Fiction']", "['Poetry', 'Classics', 'Plays', 'Drama', 'Fiction', 'American', 'Literature']", "['Science Fiction', 'Young Adult', 'Fiction', 'Fantasy', 'Childrens', 'Aliens', 'Middle Grade']", "['Fantasy', 'Childrens', 'Fiction', 'Young Adult', 'Classics', 'Middle Grade', 'Juvenile']", "['Fantasy', 'Fiction', 'Childrens', 'Adventure', 'Young Adult', 'School', 'Classics']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'German Literature', 'Novels', 'Germany']", "['Fiction', 'Contemporary', 'Art', 'Literary Fiction', 'The United States Of America', 'Novels', 'New York']", "['Picture Books', 'Childrens', 'Fiction', 'Humor', 'Animals', 'Fantasy', 'Fairy Tales']", "['Fiction', 'Scandinavian Literature', 'Novels', 'Contemporary', 'Literature', 'Roman', 'Historical Fiction']", "['Horror', 'Childrens', 'Middle Grade', 'Fiction', 'Young Adult', 'Fantasy', 'Mystery']", "['Horror', 'Childrens', 'Fiction', 'Middle Grade', 'Young Adult', 'Fantasy', 'Paranormal']", "['Horror', 'Childrens', 'Fiction', 'Young Adult', 'Middle Grade', 'Fantasy', 'Mystery']", "['Horror', 'Mystery', 'Fantasy', 'Short Stories', 'Fiction', 'Anthologies', 'Lovecraftian']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Witches', 'Magic']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Witches', 'Paranormal Romance', 'Magic']", "['Fantasy', 'Christian Fiction', 'Fiction', 'Christian', 'Thriller', 'Science Fiction', 'Adult']", "['Fantasy', 'Fiction', 'Christian Fiction', 'Christian', 'Thriller', 'Science Fiction', 'Mystery']", "['Christian Fiction', 'Fiction', 'Thriller', 'Christian', 'Horror', 'Mystery', 'Fantasy']", "['Christian Fiction', 'Fiction', 'Christian', 'Thriller', 'Mystery', 'Fantasy', 'Suspense']", "['Fiction', 'Christian Fiction', 'Thriller', 'Mystery', 'Christian', 'Suspense', 'Horror']", "['Horror', 'Fiction', 'Thriller', 'Zombies', 'Halloween', 'Audiobook', 'Paranormal']", "['Christian', 'Nonfiction', 'Spirituality', 'Inspirational', 'Self Help', 'Religion']", "['Nonfiction', 'Christian', 'Inspirational', 'Self Help', 'Religion', 'Psychology', 'Spirituality']", "['Travel', 'Nonfiction', 'Humor', 'Politics', 'Journalism', 'Comedy', 'Essays']", "['Historical Fiction', 'Fiction', 'Historical', 'World War I', 'War', 'Literary Fiction', 'Adult']", "['Nonfiction', 'Africa', 'Memoir', 'Biography', 'History', 'South Africa', 'Autobiography']", "['Christmas', 'Fiction', 'Romance', 'Mystery', 'Holiday', 'Audiobook', 'Contemporary']", "['Fantasy', 'Fiction', 'Mythology', 'Horror', 'Urban Fantasy', 'Classics', 'Science Fiction Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Classics', 'Adventure', 'Suspense', 'Audiobook']", "['Fiction', 'Africa', 'Historical Fiction', 'Nigeria', 'Contemporary', 'Literary Fiction', 'African Literature']", "['Fantasy', 'Fiction', 'Humor', 'Science Fiction Fantasy', 'Science Fiction', 'Magic', 'High Fantasy']", "['Mystery', 'China', 'Fiction', 'Crime', 'Asia', 'Mystery Thriller', 'Thriller']", "['Classics', 'Fiction', 'Literature', 'American', 'Historical Fiction', 'Novels', 'Classic Literature']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'British Literature', 'Detective']", "['Fiction', 'Mystery', 'Contemporary', 'Book Club', 'Adult Fiction', 'Adult', 'Mental Illness']", "['Fiction', 'Classics', 'Humor', 'Ireland', 'Literature', 'Irish Literature', 'Novels']", "['Science Fiction', 'Horror', 'Fiction', 'Classics', 'Audiobook', 'Thriller', 'Aliens']", "['Fantasy', 'Science Fiction', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Young Adult', 'Adventure']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'British Literature', '21st Century', 'Literature']", "['Thriller', 'Fiction', 'Mystery', 'Action', 'Mystery Thriller', 'Suspense', 'Military Fiction']", "['Fiction', 'Historical Fiction', 'Adventure', 'Survival', 'Historical', 'Mythology', 'Folklore']", "['Fiction', 'Historical Fiction', 'New York', 'Historical', 'Romance', 'Adult Fiction', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Historical', 'Novels', 'Classics', 'War', 'Adult']", "['Historical Fiction', 'Fiction', 'Classics', 'Young Adult', 'Childrens', 'Historical', 'School']", "['Nonfiction', 'History', 'Biography', 'Holocaust', 'Memoir', 'War', 'World War II']", "['Young Adult', 'Fiction', 'Classics', 'School', 'Realistic Fiction', 'Read For School', 'Teen']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Historical', 'Novels', 'Literature', 'Contemporary']", "['Spirituality', 'Nonfiction', 'Paranormal', 'Religion']", "['Islam']", "['Poetry', 'Classics', 'France', 'Fiction', 'Literature', 'French Literature', '19th Century']", "['Fiction', 'Egypt', 'Africa', 'Novels', 'Literature', 'Historical Fiction', 'Contemporary']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'Southern', 'American']", "['Mystery', 'Fiction', 'Humor', 'Mystery Thriller', 'Chick Lit', 'Adult', 'Contemporary']", "['Classics', 'Fiction', 'LGBT', 'Queer', 'Lesbian', 'Romance', 'Historical Fiction']", "['Horror', 'Fiction', 'Classics', 'Fantasy', 'Lovecraftian', 'Mystery', 'Science Fiction']", "['Health', 'Nonfiction', 'Parenting', 'Self Help', 'Reference', 'Feminism', 'Science']", "['Historical Fiction', 'Childrens', 'Fiction', 'Historical', 'Classics', 'Middle Grade', 'Scotland']", "['Biography', 'Nonfiction', 'Memoir', 'Autobiography', 'Biography Memoir']", "['Fiction', 'Chick Lit', 'Book Club', 'Humor', 'Contemporary', 'Adult Fiction', 'Womens']", "['Self Help', 'Nonfiction', 'Spirituality', 'Health', 'Psychology', 'Personal Development', 'Inspirational']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Historical Romance', 'Chick Lit', 'Adult']", "['Cookbooks', 'Cooking', 'Food', 'Nonfiction', 'Reference', 'Culinary', 'France']", "['Fiction', 'India', 'Fantasy', 'Magical Realism', 'Indian Literature', 'Literature', 'Asia']", "['Horror', 'Fiction', 'Short Stories', 'Fantasy', 'Classics', 'Gothic', 'Weird Fiction']", "['Psychology', 'Nonfiction', 'Mental Health', 'Science', 'Social Work', 'Parenting', 'Education']", "['Fiction', 'China', 'Historical Fiction', 'Short Stories', 'Asian Literature', 'Historical', 'Literature']", "['Memoir', 'Nonfiction', 'Biography', 'Education', 'Southern', 'Biography Memoir', 'Teaching']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Classics', 'War', 'British Literature', 'Novels']", "['Philosophy', 'Nonfiction', 'Classics', 'Psychology', 'Science', '18th Century', 'School']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Classics', 'African American', 'Biography Memoir']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Horror', 'Mystery Thriller', 'Suspense']", "['Fantasy', 'Young Adult', 'Fiction', 'Animals', 'Adventure', 'Childrens', 'Middle Grade']", "['History', 'Biography', 'Nonfiction', 'Russia', 'Russian History', 'Biography Memoir', 'European History']", "['Poetry', 'Ireland', 'Irish Literature', '20th Century', 'Nonfiction', 'Classics', 'Literature']", "['Fiction', 'Historical Fiction', 'Russia', 'Russian Literature', 'Classics', 'Romance', 'Literature']", "['Fiction', 'Adventure', 'Travel', 'Classics', 'Novels', 'Literary Fiction', 'Literature']", "['Classics', 'Fiction', 'Young Adult', 'Animals', 'Childrens', 'Historical Fiction', 'Dogs']", "['Design', 'Nonfiction', 'Business', 'Art', 'Reference', 'Architecture', 'Art Design']", "['Romantic Suspense', 'Romance', 'Suspense', 'Crime', 'Thriller', 'Mystery', 'Fiction']", "['Fiction', 'Humor', 'Mystery', 'Historical Fiction', 'Fantasy', 'Comedy', 'Steampunk']", "['Horror', 'Fiction', 'Classics', 'Gothic', 'Mystery', '20th Century', 'Novels']", "['Horror', 'Fiction', 'Classics', 'Gothic', 'Mental Health', 'Psychology', 'Thriller']", "['Horror', 'Fiction', 'Classics', 'Gothic', 'Humor', 'Mystery', '20th Century']", "['Nonfiction', 'Memoir', 'Humor', 'Classics', 'Biography', 'Biography Memoir', 'Parenting']", "['Fiction', 'Mystery', 'Literary Fiction', 'Novels', 'Family', 'Contemporary', 'British Literature']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Crime', '20th Century']", "['Fiction', 'Historical Fiction', 'Historical', 'Egypt', 'Fantasy', 'Literature', 'Novels']", "['Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Realistic Fiction', 'Coming Of Age', 'School']", "['Poetry', 'Music', 'Fiction', 'Nobel Prize', 'American', '20th Century', 'Classics']", "['Psychology', 'Nonfiction', 'Psychoanalysis', 'Philosophy', 'Science', 'Classics', 'Essays']", "['Psychology', 'Philosophy', 'Nonfiction', 'Psychoanalysis', 'Anthropology', 'Religion', 'Classics']", "['Philosophy', 'Nonfiction', 'Classics', 'German Literature', 'Psychology', 'Theory', 'History']", "['Nonfiction', 'Spirituality', 'Philosophy', 'Personal Development']", "['Christian', 'Nonfiction', 'Christian Living', 'Christianity', 'Relationships', 'Self Help', 'Spirituality']", "['Parenting', 'Nonfiction', 'Spirituality', 'Self Help', 'Personal Development', 'Psychology', 'Childrens']", "['Classics', 'Fiction', 'War', 'Historical Fiction', 'German Literature', 'Germany', 'Romance']", "['Comics', 'Humor', 'Comic Strips', 'Fiction', 'Cartoon', 'Graphic Novels', 'Comedy']", "['Fiction', 'Literature', 'Classics', '20th Century', 'Religion', 'The United States Of America', 'Novels']", "['Fiction', 'Classics', 'Mystery', 'British Literature', 'Crime', 'Noir', 'Novels']", "['Historical Romance', 'Romance', 'Historical', 'Medieval', 'Historical Fiction', 'Fiction', 'Medieval Romance']", "['Horror', 'Fiction', 'Short Stories', 'Thriller', 'Fantasy', 'Mystery', 'Suspense']", "['Fiction', 'Espionage', 'Humor', 'Mystery', 'Thriller', 'Literature', 'Novels']", "['Historical Fiction', 'Fiction', 'Westerns', 'Historical', 'Classics', 'Adventure', 'Novels']", "['Fiction', 'Feminism', 'Canada', 'Classics', 'Literary Fiction', 'Contemporary', 'Novels']", "['Fiction', 'Young Adult', 'Fantasy', 'Magical Realism', 'Mythology', 'Middle Grade', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Classics', 'War', 'Short Stories', 'School', 'Historical']", "['Picture Books', 'Childrens', 'Nonfiction', 'Humor', 'Animals', 'Science', 'Health']", "['Short Stories', 'Fiction', 'Literature', 'American', 'Classics', 'Literary Fiction', 'The United States Of America']", "['Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Biography Memoir', 'Audiobook', 'Inspirational']", "['Graphic Novels', 'Comics', 'Science Fiction', 'Fiction', 'Graphic Novels Comics', 'Fantasy', 'Comic Book']", "['Christian Fiction', 'Christian', 'Fiction', 'Religion', 'Fantasy', 'Faith', 'Thriller']", "['Nonfiction', 'History', 'Holocaust', 'Philosophy', 'Religion', 'Memoir', 'World War II']", "['Fiction', 'Romance', 'Christian Fiction', 'Chick Lit', 'Adult', 'Adult Fiction', 'Contemporary']", "['Poetry', 'Classics', 'African American', 'Fiction', 'Race', 'Literature', 'African American Literature']", "['Historical Fiction', 'Fiction', 'War', 'France', 'Historical', 'World War II', 'Romance']", "['Classics', 'Fiction', '19th Century', 'Literature', 'American', 'Historical Fiction', 'Romance']", "['Biography', 'Nonfiction', 'Picture Books', 'Memoir', 'Autobiography', 'Childrens', 'Art']", "['Fiction', 'Humor', 'Contemporary', 'Comedy', 'Literature', 'Adult', 'Adult Fiction']", "['Politics', 'Nonfiction', 'History', 'Political Science']", "['Fiction', 'Feminism', 'Humor', 'Classics', 'Contemporary', 'Literary Fiction', 'British Literature']", "['Spirituality', 'Self Help', 'Nonfiction', 'Metaphysics', 'Inspirational', 'Psychology', 'New Age']", "['Music', 'Nonfiction', 'Self Help', 'Art', 'How To', 'Teaching', 'Education']", "['Fiction', 'Classics', 'Science Fiction', 'Humor', 'Literature', 'Novels', 'Dystopia']", "['Nonfiction', 'Science', 'Animals', 'Nature', 'Anthropology', 'Africa', 'Memoir']", "['Nonfiction', 'Biography', 'History', 'Audiobook', 'Historical', 'Biography Memoir', 'Humor']", "['Fiction', 'Short Stories', 'Contemporary', 'British Literature', 'Scotland', 'Literature', 'Novels']", "['Classics', 'Historical Fiction', 'Fiction', 'Adventure', 'Historical', 'Mystery', 'France']", "['Fiction', 'Thriller', 'Mystery', 'Romance', 'Suspense', 'Mystery Thriller', 'Novels']", "['Biography', 'Nonfiction', 'History', 'School', 'Childrens', 'Classics', 'Historical']", "['Fiction', 'Historical Fiction', 'Romance', 'Adult Fiction', 'Literary Fiction', 'Novels', 'Adult']", "['Fiction', 'Religion', 'Spirituality', 'Literature', 'Faith', 'Novels', 'Contemporary']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Childrens', 'Adventure', 'Audiobook']", "['Thriller', 'Fiction', 'Mystery', 'Adventure', 'Horror', 'Mystery Thriller', 'Suspense']", "['Thriller', 'Fiction', 'Mystery', 'Adventure', 'Science Fiction', 'Suspense', 'Mystery Thriller']", "['Manga', 'Comics', 'Graphic Novels', 'Horror', 'Science Fiction', 'Japan', 'Fiction']", "['Young Adult', 'Fiction', 'Adventure', 'Mystery', 'Thriller', 'Action', 'Espionage']", "['Nonfiction', 'Buddhism', 'Spirituality', 'Self Help', 'Philosophy', 'Psychology', 'Religion']", "['Buddhism', 'Self Help', 'Nonfiction', 'Spirituality', 'Psychology', 'Audiobook', 'Philosophy']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Humor', 'Contemporary Romance', 'British Literature']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Classics', 'Childrens', 'Thriller', 'Novels']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Drama', 'Adult', 'Mystery']", "['Biography', 'Nonfiction', 'History', 'Literature', 'Literary Criticism', 'Biography Memoir', 'British Literature']", "['Horror', 'Short Stories', 'Fiction', 'Anthologies', 'Gothic', 'Classics', 'Ghost Stories']", "['Fiction', 'Chick Lit', 'Contemporary', 'Adult Fiction', 'Southern', 'Adult', 'Historical Fiction']", "['Historical Fiction', 'Fiction', 'Australia', 'Historical', 'Audiobook', 'Adventure', 'Adult']", "['Horror', 'Young Adult', 'Fiction', 'Mystery', 'Paranormal', 'Fantasy', 'Thriller']", "['Young Adult', 'Vampires', 'Horror', 'Fantasy', 'Paranormal', 'Fiction', 'Romance']", "['Horror', 'Fiction', 'Science Fiction', 'Young Adult', 'Vampires', 'Fantasy', 'Paranormal']", "['Young Adult', 'Horror', 'Fiction', 'Teen', 'Thriller', 'Paranormal', 'Fantasy']", "['Horror', 'Fiction', 'Young Adult', 'Thriller', 'Fantasy', 'Paranormal', 'Science Fiction']", "['Young Adult', 'Romance', 'Chick Lit', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Teen']", "['Nonfiction', 'Biography', 'Memoir', 'True Crime', 'Crime', 'Audiobook', 'Autobiography']", "['History', 'Nonfiction', 'Russia', 'Asia', 'Politics', 'World History', 'India']", "['Graphic Novels', 'Comics', 'Horror', 'Zombies', 'Fiction', 'Graphic Novels Comics', 'Post Apocalyptic']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Contemporary Romance', 'Womens Fiction', 'Drama']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Crime', 'Historical Mystery', 'Tudor Period']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Crime', 'Historical Mystery', 'Mystery Thriller']", "['History', 'Nonfiction', 'Russia', 'War', 'Military History', 'France', 'European History']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Survival', 'American History', 'Westerns']", "['Nonfiction', 'Spirituality', 'Self Help', 'Personal Development', 'Money', 'Philosophy', 'Psychology']", "['Spirituality', 'Nonfiction', 'Self Help', 'Philosophy', 'Religion', 'Inspirational', 'Psychology']", "['Health', 'Nonfiction', 'Spirituality', 'Self Help', 'Psychology', 'Science', 'Medicine']", "['Spirituality', 'Self Help', 'Nonfiction', 'Philosophy', 'Love', 'Psychology', 'Relationships']", "['Classics', 'Childrens', 'Fiction', 'Fantasy', 'Animals', 'Middle Grade', 'Young Adult']", "['Fiction', 'Classics', 'Religion', 'Spain', 'Literature', 'Novels', 'Literary Fiction']", "['School', 'Fiction', 'Drama', 'Contemporary', 'Spanish Literature', 'Young Adult', 'Novels']", "['Nonfiction', 'History', 'Adventure', 'Biography', 'Audiobook', 'Travel', 'Survival']", "['Fiction', 'LGBT', 'Queer', 'Gay', 'Literary Fiction', 'Historical Fiction', 'Contemporary']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Audiobook', 'Crime', 'Mystery Thriller', 'British Literature']", "['Fiction', 'Classics', 'Young Adult', 'Short Stories', 'School', 'Contemporary', 'Coming Of Age']", "['Historical Fiction', 'Fiction', 'China', 'Historical', 'Asia', 'Asian Literature', 'Romance']", "['Science Fiction', 'Dystopia', 'Fiction', 'Horror', 'Classics', 'Novels', 'Science Fiction Fantasy']", "['Young Adult', 'Vampires', 'Fantasy', 'Romance', 'Paranormal', 'Fiction', 'Horror']", "['Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Realistic Fiction', 'School', 'Classics']", "['Queer', 'Fiction', 'LGBT', 'Feminism', 'Classics', 'Gender', 'Historical Fiction']", "['Fiction', 'Fantasy', 'Horror', 'Magical Realism', 'Africa', 'Contemporary', 'Literary Fiction']", "['Christian', 'Theology', 'Christianity', 'Nonfiction', 'Christian Living', 'Faith', 'Religion']", "['Poetry', 'Classics', 'Queer', 'LGBT', 'American', 'Fiction', 'Literature']", "['Poetry', 'Classics', 'Queer', 'LGBT', 'New York', 'American', 'Fiction']", "['Science Fiction', 'Fantasy', 'Fiction', 'Hugo Awards', 'Space Opera', 'Science Fiction Fantasy', 'Fairy Tales']", "['Fantasy', 'Vampires', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Romance', 'Mystery']", "['Mystery', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Fiction', 'Supernatural', 'Romance']", "['Spirituality', 'Nonfiction', 'Self Help', 'Metaphysics', 'New Age', 'Philosophy', 'Paranormal']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Science Fiction', 'Epic Fantasy', 'Sword and Sorcery']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Adventure', 'Christian', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Horror', 'Steampunk', 'Fiction', 'Paranormal', 'Supernatural']", "['Horror', 'Comics', 'Graphic Novels', 'Anthologies', 'Fiction', 'Fantasy', 'Supernatural']", "['Mystery', 'Fiction', 'Crime', 'Detective', 'Mystery Thriller', 'Audiobook', 'British Literature']", "['Fiction', 'Mystery', 'Classics', 'Romance', 'Historical Fiction', 'British Literature', 'Crime']", "['Fiction', 'Historical Fiction', 'German Literature', 'Adventure', 'Travel', 'Novels', 'Historical']", "['Fantasy', 'Fiction', 'Dark Fantasy', 'Epic Fantasy', 'High Fantasy', 'Military Fiction', 'War']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'American', 'Historical', 'Novels']", "['Classics', 'Mythology', 'India', 'Religion', 'Poetry', 'Fiction', 'Epic']", "['Classics', 'Mystery', 'Fiction', 'Crime', 'France', 'Short Stories', 'Mystery Thriller']", "['Short Stories', 'Classics', 'Fiction', 'Literature', 'Philosophy', 'German Literature', 'Literary Fiction']", "['Fiction', 'Feminism', 'Classics', 'Short Stories', 'Philosophy', 'France', 'Womens']", "['Fiction', 'Africa', 'Historical Fiction', 'Rwanda', 'Canada', 'War', 'France']", "['History', 'Nonfiction', 'Space', 'Science', 'Biography', 'Memoir', 'Audiobook']", "['Fiction', 'Novels', 'Classics', 'American', 'Mystery', 'Literature', 'Crime']", "['Music', 'Nonfiction', 'Science', 'Psychology', 'Neuroscience', 'Art', 'Brain']", "['Science Fiction', 'Fiction', 'Space Opera', 'Speculative Fiction', 'Science Fiction Fantasy', 'Collections', 'Classics']", "['Fiction', 'France', 'Novels', 'Classics', 'French Literature', '20th Century', 'Literature']", "['Fiction', 'France', 'Classics', 'French Literature', 'Romance', 'Roman', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Literary Fiction', 'Literature', 'Travel']", "['Poetry', 'Classics', 'Literature', 'Fiction', 'American', '20th Century', 'British Literature']", "['Science Fiction', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Classics', 'Plays', 'Russia', 'Fiction', 'Russian Literature', 'Theatre', 'Humor']", "['Fantasy', 'Science Fiction', 'Steampunk', 'Fiction', 'Time Travel', 'Historical Fiction', 'Historical']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Historical', 'France', 'Roman']", "['Historical Fiction', 'Fiction', 'Humor', 'Adventure', 'Historical', 'Comedy', 'War']", "['Historical Fiction', 'Fiction', 'Historical', 'Humor', 'Adventure', 'Comedy', 'India']", "['Historical Fiction', 'Fiction', 'Historical', 'Humor', 'Adventure', 'Comedy', 'War']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Fiction', 'Fairy Tales', 'Historical Fiction']", "['Fiction', 'Historical Fiction', 'Historical', 'Literary Fiction', 'Book Club', 'War', 'Novels']", "['Fiction', 'Historical Fiction', 'Australia', 'Japan', 'War', 'Literary Fiction', 'Historical']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Childrens', 'Young Adult Historical Fiction', 'Teen']", "['Fantasy', 'Fiction', 'Classics', 'Childrens', 'Humor', 'Young Adult', 'Fairy Tales']", "['Fantasy', 'Fiction', 'Mystery', 'Christian', 'Classics', 'Christian Fiction', 'Christianity']", "['Fiction', 'Fantasy', 'Classics', 'Christian', 'Literature', 'Novels', 'Christian Fiction']", "['Classics', 'Short Stories', 'Fiction', 'Christmas', 'Romance', 'Holiday', 'Literature']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Childrens', 'Contemporary', 'Teen', 'Coming Of Age']", "['Biography', 'History', 'Nonfiction', 'Politics', 'Biography Memoir', 'World War II', 'Leadership']", "['Thriller', 'Mystery', 'Crime', 'Fiction', 'Mystery Thriller', 'Suspense', 'Horror']", "['Historical Fiction', 'Young Adult', 'Pirates', 'Fiction', 'Historical', 'Adventure', 'Romance']", "['Fiction', 'France', 'Historical Fiction', 'Classics', 'French Literature', 'Adventure', 'Novels']", "['Philosophy', 'Spirituality', 'Nonfiction', 'Psychology', 'Self Help', 'Religion', 'Personal Development']", "['Africa', 'Nonfiction', 'Memoir', 'History', 'Biography', 'Zimbabwe', 'Travel']", "['Guides', 'Games', 'Reference', 'Gaming', 'Nonfiction', 'Video Games']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Fiction', 'British Literature', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Middle Grade', 'Young Adult Fantasy', 'Action']", "['Fiction', 'Classics', 'Novels', 'American', 'Literature', 'Literary Fiction', 'Americana']", "['Historical Fiction', 'Christian Fiction', 'Christian', 'Fiction', 'Romance', 'Historical', 'Civil War']", "['Thriller', 'Fiction', 'Action', 'Science Fiction', 'Adventure', 'Fantasy', 'Suspense']", "['Thriller', 'Fiction', 'Action', 'Adventure', 'Mystery', 'Military Fiction', 'Mystery Thriller']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Mystery', 'Fantasy', 'Mystery Thriller']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Mystery', 'Suspense', 'Mystery Thriller']", "['Thriller', 'Fiction', 'Action', 'Adventure', 'Military Fiction', 'Suspense', 'Mystery Thriller']", "['Fiction', 'Fantasy', 'Science Fiction', 'Mystery', 'Horror', 'Thriller', 'Novels']", "['Classics', 'Childrens', 'Fiction', 'Picture Books', 'Fantasy', 'Animals', 'Young Adult']", "['Horror', 'Fiction', 'Splatterpunk', 'Thriller', 'Mystery', 'Fantasy', 'Monsters']", "['Horror', 'Fiction', 'Thriller', 'Splatterpunk', 'Mystery', 'Suspense', 'Crime']", "['Horror', 'Short Stories', 'Fiction', 'Gothic', 'Classics', 'Ghost Stories', 'Fantasy']", "['Fiction', 'Jewish', 'Poland', 'Nobel Prize', 'Literature', 'Classics', 'Historical Fiction']", "['Fiction', 'Science Fiction', 'Thriller', 'Roman', 'Novels', 'Mystery', 'American']", "['Business', 'Finance', 'Nonfiction', 'Economics', 'Money', 'Personal Finance', 'Buisness']", "['Fiction', 'Historical Fiction', 'Coming Of Age', 'Jewish', 'Humor', 'Young Adult', 'Contemporary']", "['Memoir', 'Nonfiction', 'Religion', 'Biography', 'Biography Memoir', 'Autobiography', 'Cults']", "['Comics', 'Graphic Novels', 'Bande Dessinée', 'Adventure', 'Fiction', 'Childrens', 'Comic Book']", "['Nonfiction', 'Food', 'Agriculture', 'Nature', 'History', 'Environment', 'Essays']", "['Fiction', 'Historical Fiction', 'Literature', 'Literary Fiction', 'New York', 'Novels', 'American']", "['History', 'Nonfiction', 'Civil War', 'Biography', 'American History', 'True Crime', 'American Civil War']", "['History', 'Nonfiction', 'Civil War', 'True Crime', 'American History', 'Crime', 'Historical']", "['Fiction', 'Short Stories', 'Classics', 'Magical Realism', 'Literature', 'Fantasy', 'Latin American']", "['Poetry', 'Short Stories', 'Fiction', 'Magical Realism', 'Literature', 'Classics', 'Spanish Literature']", "['Plays', 'Theatre', 'Drama', 'Poetry', 'Fiction', 'Mental Health', 'Psychology']", "['Historical Fiction', 'Fiction', 'Historical', 'Roman', 'Mystery']", "['Historical Fiction', 'Fiction', 'India', 'Classics', 'Historical', 'Literature', '20th Century']", "['Science Fiction', 'Fantasy', 'Fiction', 'Humor', 'Short Stories', 'Time Travel', 'Science Fiction Fantasy']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'School', 'Adventure', 'Middle Grade', 'Survival']", "['Historical Fiction', 'Fiction', 'Mystery', 'World War II', 'Thriller', 'Germany', 'Historical']", "['History', 'Biography', 'Nonfiction', 'World War II', 'Presidents', 'American History', 'Politics']", "['Picture Books', 'Childrens', 'Fiction', 'School', 'Humor', 'Classics', 'Mystery']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Adventure', 'Childrens', 'Middle Grade']", "['Fantasy', 'Fiction', 'High Fantasy', 'Magic', 'Adventure', 'Epic Fantasy', 'Young Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'High Fantasy', 'Magic', 'Adventure', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Magic', 'High Fantasy', 'Adventure', 'Young Adult', 'Epic Fantasy']", "['Historical Fiction', 'Fiction', 'Ireland', 'Irish Literature', 'Historical', 'Mystery', 'Book Club']", "['Romance', 'Chick Lit', 'Contemporary', 'Fiction', 'Adult', 'Young Adult', 'Contemporary Romance']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adult', 'Dragons', 'Adventure']", "['Mystery', 'Fiction', 'Thriller', 'Suspense', 'Gothic', 'Mystery Thriller', 'Art']", "['Poetry', 'Danish', 'Denmark', 'Scandinavian Literature', 'Classics', 'Fiction', 'Literature']", "['Philosophy', 'Theology', 'Christian', 'Nonfiction', 'Christianity', 'Cultural', 'Religion']", "['Mystery', 'Humor', 'Fiction', 'Romance', 'Chick Lit', 'Cozy Mystery', 'Contemporary Romance']", "['Mystery', 'Humor', 'Fiction', 'Chick Lit', 'Romance', 'Contemporary']", "['Poetry', 'Nonfiction', 'Religion', 'Spirituality', 'Unfinished', 'The United States Of America', 'American']", "['Philosophy', 'Religion', 'Theology', 'Nonfiction', 'Atheism', 'Christianity', 'Classics']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'British Literature', 'Literature', 'Novels', 'Contemporary']", "['Fantasy', 'Mystery', 'Fiction', 'Humor', 'Crime', 'Comedy', 'Fairy Tales']", "['Science Fiction', 'Fiction', 'Hugo Awards', 'Classics', 'Science Fiction Fantasy', 'Space', 'Fantasy']", "['Science Fiction', 'Short Stories', 'Fiction', 'Fantasy', 'Humor', 'Collections', 'Anthologies']", "['Science Fiction', 'Fiction', 'Classics', 'Fantasy', 'Space', 'Novels', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Short Stories', 'Collections', 'Anthologies', 'Speculative Fiction', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Short Stories', 'Classics', 'Science Fiction Fantasy', 'Collections', 'Speculative Fiction']", "['Fiction', 'Classics', 'Historical Fiction', 'American', 'Literature', 'Novels', 'Literary Fiction']", "['Fiction', 'Science Fiction', 'Humor', 'Classics', 'Film', 'Russia', 'Novels']", "['Mystery', 'Fiction', 'Historical Fiction', 'Crime', 'Historical Mystery', 'Historical', 'Thriller']", "['Fiction', 'Magical Realism', 'Historical Fiction', 'Classics', 'Romance', 'Spanish Literature', 'Latin American']", "['Spirituality', 'Psychology', 'Nonfiction', 'Philosophy', 'Science', 'Self Help', 'Religion']", "['Horror', 'Fiction', 'Fantasy', 'Science Fiction', 'Post Apocalyptic', 'Thriller', 'Dystopia']", "['Mystery', 'Fiction', 'Cozy Mystery', 'Adventure', 'Audiobook', 'Espionage', 'Suspense']", "['Fiction', 'American', 'American Fiction', 'Literary Fiction', 'Thriller', 'The United States Of America', '20th Century']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Historical', 'Classics', 'Adventure', 'Childrens']", "['Fiction', 'Thriller', 'Historical Fiction', 'Espionage', 'Mystery', 'Suspense', 'Crime']", "['Fiction', 'Thriller', 'Adventure', 'Mystery', 'Crime', 'Action', 'Suspense']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Action', 'Suspense', 'Crime']", "['Fiction', 'Thriller', 'Adventure', 'Mystery', 'Espionage', 'Action', 'Suspense']", "['Fiction', 'Historical Fiction', 'Thriller', 'War', 'Adventure', 'World War II', 'Military Fiction']", "['Historical Fiction', 'Classics', 'Fiction', 'Historical', 'Romance', 'Gothic', 'British Literature']", "['Poetry', 'American', 'Literature', 'Classics', '20th Century', 'Collections', 'United States']", "['Poetry', 'Classics', 'American', 'Literature', 'The United States Of America', '20th Century', 'Unfinished']", "['Poetry', 'Essays', 'Nonfiction', 'Canada', 'Short Stories', 'Classics', 'Female Authors']", "['Poetry', 'Fiction', 'Essays', 'Canada', 'Classics', 'Canadian Literature', 'Contemporary']", "['Poetry', 'Classics', 'LGBT', 'Queer', 'Lesbian', 'Mythology', 'Fiction']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'British Literature', '20th Century', 'English Literature']", "['Plays', 'Drama', 'Theatre', 'Fiction', 'School', 'Read For School', 'Contemporary']", "['Nonfiction', 'Australia', 'History', 'Biography', 'Historical', 'Memoir', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Dragons', 'Fiction', 'Middle Grade', 'Childrens', 'Magic']", "['Historical Fiction', 'Fiction', 'Classics', 'Civil War', 'United States', 'Race', 'American History']", "['History', 'Nonfiction', 'Germany', 'European History', 'Politics', 'Art', 'German Literature']", "['Fantasy', 'Fiction', 'Classics', 'Gothic', 'Science Fiction', 'Novels', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Childrens', 'Classics', 'Time Travel']", "['Fiction', 'Africa', 'Senegal', 'Feminism', 'African Literature', 'France', 'Classics']", "['Science', 'Nonfiction', 'Astronomy', 'Physics', 'Philosophy', 'Space', 'Popular Science']", "['Historical Fiction', 'Fantasy', 'Fiction', 'Arthurian', 'Historical', 'Mythology', 'Historical Fantasy']", "['Fiction', 'Noir', 'Classics', 'Crime', 'Mystery', 'Novels', 'American']", "['Fiction', 'Philosophy', 'Classics', 'France', 'Feminism', 'Literature', 'French Literature']", "['Classics', 'Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Audiobook', 'Young Adult']", "['Philosophy', 'Anthropology', 'Psychology', 'Nonfiction', 'Science', 'Ecology', 'Sociology']", "['Nonfiction', 'History', 'Classics', 'Memoir', 'Biography', 'African American', 'Autobiography']", "['Fiction', 'Classics', 'Young Adult', 'Contemporary', 'Coming Of Age', 'Media Tie In', 'Novels']", "['Fiction', 'Art', 'Historical Fiction', 'Latin American', 'Literature', 'Spanish Literature', 'Novels']", "['Fiction', 'Ukraine', 'Mystery', 'Russia', 'Crime', 'Contemporary', 'Novels']", "['Fantasy', 'Romance', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'Erotica', 'High Fantasy']", "['Fantasy', 'Romance', 'Fiction', 'Erotica', 'Epic Fantasy', 'Adult', 'High Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Paranormal', 'Ghosts', 'Fantasy', 'Supernatural']", "['Fantasy', 'Romance', 'Dark Fantasy', 'Epic Fantasy', 'High Fantasy', 'Fiction', 'Fantasy Romance']", "['Fantasy', 'Dark Fantasy', 'Romance', 'Epic Fantasy', 'Fiction', 'High Fantasy', 'Sword and Sorcery']", "['Fiction', 'Classics', 'Philosophy', 'Brazil', 'Novels', 'Literature', 'Latin American']", "['Fiction', 'German Literature', 'Germany', 'Classics', 'Literature', '20th Century', 'Novels']", "['Mythology', 'Fiction', 'Historical Fiction', 'Classics', 'Greek Mythology', 'German Literature', 'Retellings']", "['Fiction', 'Classics', 'Mystery', 'Thriller', 'Adventure', 'Crime', 'Espionage']", "['Historical Fiction', 'Fiction', 'Novels', 'France', 'Literature', 'Historical', 'Roman']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Fantasy', 'Juvenile', 'Family']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Juvenile', 'Kids', 'Transport']", "['Japan', 'Japanese Literature', 'Fiction']", "['Fiction', 'Australia', 'Contemporary', 'Literature', 'Literary Fiction', 'Novels', 'Book Club']", "['Classics', 'Fiction', 'Literature', 'Adventure', 'Historical Fiction', 'Novels', 'American']", "['Nonfiction', 'History', 'Travel', 'Africa', 'Journalism', 'Polish Literature', 'War']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Mystery', 'Young Adult Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Magic', 'Fiction', 'Young Adult Fantasy', 'High Fantasy', 'Teen']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Magic', 'Adventure', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Adventure', 'Young Adult Fantasy', 'Childrens']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Magic', 'Adventure', 'High Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Science Fiction Fantasy', 'Adventure', 'High Fantasy']", "['Fiction', 'German Literature', 'Novels', 'Germany', 'Classics', 'Nobel Prize', 'Literature']", "['Science Fiction', 'Cyberpunk', 'Fiction', 'Science Fiction Fantasy', 'Dystopia', 'Novels', 'Speculative Fiction']", "['History', 'India', 'Nonfiction', 'Politics', 'Indian Literature', 'Biography', 'Classics']", "['Philosophy', 'Nonfiction', 'Politics', 'Modern', 'History', 'Essays', 'The United States Of America']", "['Fiction', 'Classics', 'Novels', 'American', 'Literature', '20th Century', 'Literary Fiction']", "['Fiction', 'Thriller', 'Action', 'Espionage', 'Mystery', 'Suspense', 'Spy Thriller']", "['Fiction', 'Scandinavian Literature', 'Sweden', 'Nobel Prize', 'Historical Fiction', 'Classics', 'Literature']", "['Comics', 'Graphic Novels', 'Dc Comics', 'Fiction', 'Comic Book', 'Superman', 'Graphic Novels Comics']", "['Science Fiction', 'Young Adult', 'Mystery', 'Fiction', 'Middle Grade', 'Fantasy', 'Childrens']", "['Urban Fantasy', 'Fantasy', 'Mystery', 'Paranormal', 'Fiction', 'Horror', 'Supernatural']", "['Fiction', 'LGBT', 'Lebanon', 'Queer', 'Historical Fiction', 'Novels', 'Historical']", "['Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary', 'American', 'Magical Realism']", "['Historical Fiction', 'Fiction', 'Romance', 'Classics', 'Canada', 'Historical', 'Young Adult']", "['Reference', 'Nonfiction', 'Nature', 'Birds', 'Science', 'Field Guides', 'Animals']", "['Horror', 'Fiction', 'Post Apocalyptic', 'Science Fiction', 'Apocalyptic', 'Monsters', 'Lovecraftian']", "['Classics', 'Horror', 'Fiction', 'Short Stories', 'Mystery', 'Gothic', 'Fantasy']", "['Mystery', 'Historical Fiction', 'Fiction', 'Christian', 'Childrens', 'Christian Fiction', 'Young Adult']", "['Fiction', 'Novels', 'American', 'Literature', 'Literary Fiction', '20th Century', 'Classics']", "['Baseball', 'Fiction', 'Sports', 'Novels', 'Literature', 'American', '20th Century']", "['Fiction', 'Historical Fiction', 'Novels', 'Literature', 'Politics', '20th Century', 'American']", "['Fiction', 'Ireland', 'Irish Literature', 'Historical Fiction', 'Novels', 'Contemporary', 'Historical']", "['Biography', 'Nonfiction', 'Classics', 'History', 'Historical', 'Drama', 'School']", "['Nonfiction', 'Biography', 'History', 'Biography Memoir', 'Medical', 'Science', 'Drama']", "['Fiction', 'Classics', 'Historical Fiction', 'Literary Fiction', 'Westerns', 'Novels', 'Literature']", "['Horror', 'Classics', 'Fiction', 'Thriller', 'Mystery', 'Crime', 'Audiobook']", "['Fantasy', 'Fiction', 'LGBT', 'High Fantasy', 'Science Fiction Fantasy', 'Magic', 'Queer']", "['Graphic Novels', 'Comics', 'Science Fiction', 'Fiction', 'Graphic Novels Comics', 'Dystopia', 'Comic Book']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', 'Historical', '19th Century', 'Victorian']", "['Romance', 'Romantic Suspense', 'Mystery', 'Suspense', 'Fiction', 'Contemporary Romance', 'Contemporary']", "['Science Fiction', 'Fiction', 'Speculative Fiction', 'Novels', 'Time Travel', 'Fantasy', 'Religion']", "['Science Fiction', 'Short Stories', 'Fiction', 'Science Fiction Fantasy', 'American', 'Classics', 'Crime']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Hard Science Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Novels']", "['Science Fiction', 'Fiction', 'Speculative Fiction', 'Hard Science Fiction', 'Audiobook', 'Mystery', 'Near Future']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Middle Grade', 'Fiction', 'Humor']", "['Classics', 'Short Stories', 'Fiction', 'Horror', 'School', 'Thriller', 'Adventure']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Novella', '20th Century', 'Novels']", "['Short Stories', 'Fiction', 'African American', 'Classics', 'Race', 'Literature', 'Womens']", "['Poetry', 'Classics', 'History', 'Mythology', 'Literature', 'Epic', 'Medieval']", "['Fiction', 'Fantasy', 'Childrens', 'France', 'Philosophy', 'Young Adult', 'Literature']", "['Chick Lit', 'Romance', 'Fiction', 'Fantasy', 'Contemporary', 'Magical Realism', 'Adult']", "['Nonfiction', 'True Crime', 'Crime', 'Biography', 'History', 'Memoir', 'Mystery']", "['Fiction', 'Hungarian Literature', 'Hungary', 'Classics', 'Mystery', 'Fantasy', 'Gothic']", "['Historical Fiction', 'Fiction', 'Historical']", "['Self Help', 'Nonfiction', 'Psychology', 'Spirituality', 'Reference', 'Health', 'Religion']", "['Classics', 'Historical Fiction', 'Adventure', 'Fiction', 'Pirates', 'Historical', 'Romance']", "['Fiction', 'Russia', 'Classics', 'Russian Literature', 'Humor', 'Adventure', 'Literature']", "['Classics', 'Fiction', 'China', 'Historical Fiction', 'Literature', 'Chinese Literature', 'Historical']", "['Classics', 'Fiction', 'Historical Fiction', 'China', 'Chinese Literature', 'Fantasy', 'Literature']", "['Christian Fiction', 'Historical Fiction', 'Fiction', 'Christian', 'Romance', 'Historical', 'Chick Lit']", "['Fiction', 'Classics', 'Literature', 'Literary Fiction', 'Nobel Prize', 'Novels', 'Historical Fiction']", "['Historical Fiction', 'Fiction', 'Civil War', 'Historical', 'War', 'Romance', 'Classics']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Animals', 'Childrens', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Tudor Period', 'British Literature', '16th Century', 'Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'Tudor Period', 'British Literature', '16th Century', 'Adult Fiction']", "['Buddhism', 'Philosophy', 'Spirituality', 'Nonfiction', 'Classics', 'Poetry', 'Eastern Philosophy']", "['Nonfiction', 'Sociology', 'College', 'Womens', 'Memoir', 'Feminism', 'Adult']", "['Horror', 'Fiction', 'Classics', 'Short Stories', 'Fantasy', 'Science Fiction', 'Gothic']", "['Fiction', 'Classics', 'Contemporary', 'Psychology', 'Young Adult', 'Novels', 'Literature']", "['Manga', 'Fiction', 'Fantasy', 'Comics', 'Graphic Novels', 'Adventure', 'Childrens']", "['Childrens', 'Classics', 'Fiction', 'Fantasy', 'Animals', 'Picture Books', 'Middle Grade']", "['Fantasy', 'Fiction', 'High Fantasy', 'Science Fiction Fantasy', 'Adventure', 'Science Fiction', 'Epic Fantasy']", "['Fiction', 'Adventure', 'Classics', 'Thriller', 'Mystery', 'Historical Fiction', 'Espionage']", "['Fiction', 'Fantasy', 'Scotland', 'Classics', 'Science Fiction', 'Novels', 'Literature']", "['Historical Fiction', 'Fiction', 'Classics', 'Childrens', 'Young Adult', 'Historical', 'War']", "['Nonfiction', 'Memoir', 'Medicine', 'Medical', 'Biography', 'Science', 'Biography Memoir']", "['Nonfiction', 'Reference', 'Essays', 'Literature']", "['Fiction', 'Classics', 'Short Stories', 'Literature', 'American', '20th Century', 'Novels']", "['Young Adult', 'Fiction', 'Dystopia', 'Romance', 'War', 'Science Fiction', 'Teen']", "['Fantasy', 'Middle Grade', 'Mermaids', 'Childrens', 'Fiction', 'Young Adult', 'Adventure']", "['Fantasy', 'Mermaids', 'Middle Grade', 'Childrens', 'Fiction', 'Adventure', 'Young Adult']", "['History', 'Nonfiction', 'Classics', 'Philosophy', 'Politics', 'American History', 'Essays']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Historical Mystery', '18th Century', 'Mystery Thriller']", "['Science Fiction', 'Horror', 'Fiction', 'Classics', 'Fantasy', 'Science Fiction Fantasy', 'British Literature']", "['Science Fiction', 'Fiction', 'Classics', 'Fantasy', 'Young Adult', 'Science Fiction Fantasy', 'Novels']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Retellings', 'Fiction', 'Middle Grade']", "['Young Adult', 'Mystery', 'Fiction', 'Contemporary', 'Romance', 'Chick Lit', 'Thriller']", "['Young Adult', 'Fiction', 'Abuse', 'Contemporary', 'Realistic Fiction', 'Teen', 'Dark']", "['Fiction', 'Japan', 'Japanese Literature', 'Literature', 'Novels', 'Literary Fiction', 'Asia']", "['Fiction', 'German Literature', 'Classics', 'Literature', 'Novels', 'Literary Fiction', '20th Century']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Romance', 'Retellings', 'Fiction', 'Middle Grade']", "['Classics', 'Mystery', 'Fiction', 'Short Stories', 'Crime', 'Detective', 'Audiobook']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Classics', 'Humor', 'Time Travel', 'Literature']", "['Mythology', 'India', 'Fiction', 'Philosophy', 'Religion', 'Hinduism', 'Spirituality']", "['Mystery', 'Crime', 'Fiction', 'Italy', 'Italian Literature', 'Detective', 'Audiobook']", "['History', 'Feminism', 'Nonfiction', 'Race', 'Politics', 'Sociology', 'Social Justice']", "['Nonfiction', 'Memoir', 'Holocaust', 'History', 'World War II', 'Biography', 'War']", "['Horror', 'Young Adult', 'Fantasy', 'Thriller', 'Fiction', 'Adventure', 'Mystery']", "['Fiction', 'Classics', 'Literature', 'Historical Fiction', 'Novels', 'American', '20th Century']", "['Nonfiction', 'Feminism', 'Memoir', 'Biography', 'Classics', 'Philosophy', 'France']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Classics', 'Dystopia', 'Fantasy', 'Science Fiction Fantasy']", "['Classics', 'Childrens', 'Fiction', 'Middle Grade', 'Historical Fiction', 'Adventure', 'Young Adult']", "['Horror', 'Fantasy', 'Young Adult', 'Fiction', 'Demons', 'Paranormal', 'Supernatural']", "['Horror', 'Fantasy', 'Young Adult', 'Fiction', 'Paranormal', 'Demons', 'Supernatural']", "['Psychology', 'Nonfiction', 'Reference', 'Mental Health', 'Counselling', 'Science', 'Social Work']", "['Fantasy', 'Young Adult', 'Vampires', 'Horror', 'Fiction', 'Paranormal', 'Urban Fantasy']", "['Historical Fiction', 'Fiction', 'Asia', 'Historical', 'India', 'Asian Literature', 'Magical Realism']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Ireland', 'Adult', 'Contemporary Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'Westerns', 'Romance', 'Historical Romance', 'Native Americans']", "['Science Fiction', 'Fiction', 'Novels', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'American']", "['Fiction', 'Science Fiction', 'American', 'Contemporary', 'Collections', 'Novels', 'Fantasy']", "['Computer Science', 'Technology', 'Technical', 'Nonfiction', 'Reference', 'Programming', 'Computers']", "['Nonfiction', 'Biography', 'Memoir', 'Adventure', 'Survival', 'Autobiography', 'Outdoors']", "['Graphic Novels', 'Fantasy', 'Comics', 'Fiction', 'Graphic Novels Comics', 'Mythology', 'Horror']", "['Poetry', 'Spanish Literature', 'Fiction', 'Classics', 'Latin American Literature', 'Latin American', 'Literature']", "['Poetry', 'Spanish Literature', 'Classics', 'Literature', '20th Century', 'College', 'Fiction']", "['Science Fiction', 'Fiction', 'Time Travel', 'Singularity', 'Cyberpunk', 'Science Fiction Fantasy', 'Short Stories']", "['Fiction', 'Fantasy', 'Classics']", "['Poetry', 'Classics', 'France', 'Fiction', 'French Literature', 'Literature', 'Queer']", "['Fantasy', 'Mythology', 'Fiction', 'Classics', 'Historical Fiction', 'Arthurian', 'Folklore']", "['Nonfiction', 'Classics', 'True Crime', 'Crime', 'Mystery', 'History', 'Thriller']", "['Fiction', 'Historical Fiction', 'Classics', 'War', 'Humor', 'Literature', 'Novels']", "['Classics', 'Polish Literature', 'School', 'Fiction', 'Adventure', 'Childrens', 'Young Adult']", "['Historical Fiction', 'Fiction', 'Middle Grade', 'Historical', 'Childrens', 'Young Adult', 'American Revolution']", "['History', 'Nonfiction', 'Economics', 'Business', 'Politics', 'Science', 'World History']", "['Japan', 'Fiction', 'Japanese Literature', 'Classics', 'Novels', 'Literature', 'Asian Literature']", "['Fiction', 'Classics', 'British Literature', 'Modern Classics', 'Literature', '20th Century', 'Literary Fiction']", "['Nonfiction', 'Biography', 'Iran', 'Memoir', 'History', 'Islam', 'Biography Memoir']", "['Politics', 'Nonfiction', 'Humor', 'History', 'Essays', 'Biography', 'American History']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', '20th Century', 'Historical Fiction']", "['Westerns', 'Fiction', 'Classics', 'Historical Fiction', 'Romance', 'Adventure', 'Historical']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Teen', 'Fantasy', 'Audiobook']", "['Fiction', 'Contemporary', 'Roman', 'Historical Fiction', 'Novels', 'The United States Of America', 'France']", "['Self Help', 'Nonfiction', 'Marriage', 'Relationships', 'Psychology', 'Love', 'Education']", "['Spirituality', 'Nonfiction', 'Philosophy', 'Self Help', 'New Age', 'Metaphysics', 'Paranormal']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Philosophy', 'Inspirational', 'Business']", "['Mystery', 'Fiction', 'Suspense', 'Mystery Thriller', 'Thriller', 'Crime', 'Adult']", "['Fiction', 'Czech Literature', 'Novels', '20th Century', 'European Literature', 'Literature', 'Literary Fiction']", "['Young Adult', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Contemporary', 'Childrens', 'Coming Of Age']", "['Fiction', 'Japanese Literature', 'Japan', 'Classics', 'Literature', 'Historical Fiction', 'Asia']", "['Historical Fiction', 'Fiction', 'Canada', 'Historical', 'Book Club', 'Adult Fiction', 'Adult']", "['Plays', 'Drama', 'Fiction', 'Theatre', 'School', 'Medicine', 'Contemporary']", "['Fiction', 'Spanish Literature', 'Romance', 'Crime', 'Latin American', 'Literature', 'Latin American Literature']", "['Poetry', 'Classics', 'Fiction', '18th Century', 'Literature', 'Romanticism', 'Art']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Crime', 'Spy Thriller', 'Novels']", "['Fiction', 'Historical Fiction', 'War', 'World War II', 'Aviation', 'Military Fiction', 'Thriller']", "['Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Historical', 'Literature', 'Philosophy']", "['Fiction', 'Spanish Literature', 'Latin American', 'Classics', 'Latin American Literature', 'Literature', 'Novels']", "['Fiction', 'Short Stories', 'Classics', 'Philosophy', 'Fantasy', 'Magical Realism', 'Books About Books']", "['Nonfiction', 'Travel', 'Biography', 'History', 'Memoir', 'Politics', 'Autobiography']", "['Urban Fantasy', 'Paranormal', 'Vampires', 'Paranormal Romance', 'Fantasy', 'Romance', 'Werewolves']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Suspense', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Ireland', 'Humor', 'Audiobook', 'Irish Literature', 'Historical']", "['History', 'Nonfiction', 'Medieval', 'Science', 'Medieval History', 'European History', 'Historical']", "['Christian', 'Theology', 'Nonfiction', 'Christian Living', 'Christianity', 'Spirituality', 'Religion']", "['Christian', 'Nonfiction', 'Faith', 'Christianity', 'Religion', 'Christian Living', 'Theology']", "['Spirituality', 'Nonfiction', 'Self Help', 'Philosophy', 'Religion', 'Personal Development', 'Psychology']", "['History', 'Nonfiction', 'Biography', 'Adventure', 'Travel', 'World History', 'Historical']", "['Nonfiction', 'Biography', 'Memoir', 'History', 'Autobiography', 'Crime', 'True Crime']", "['Fiction', 'Novels', 'Indonesian Literature', 'Historical Fiction', 'Literature', 'Classics', 'Asia']", "['Fiction', 'Classics', 'Italian Literature', 'Fantasy', 'Italy', 'Novels', 'Literature']", "['Parenting', 'Nonfiction', 'Self Help', 'Health', 'Reference', 'Family', 'Adult']", "['Christian', 'Theology', 'Christianity', 'Religion', 'Nonfiction', 'Faith', 'Christian Living']", "['Young Adult', 'Fiction', 'Adventure', 'Mystery', 'Espionage', 'Thriller', 'Action']", "['Spirituality', 'Biography', 'Nonfiction', 'Memoir', 'Christianity', 'Theology', 'Christian']", "['Christian', 'Religion', 'Theology', 'Spirituality', 'Nonfiction', 'Faith', 'Christianity']", "['Christian', 'Nonfiction', 'Christianity', 'Faith', 'Religion', 'Christian Living', 'Theology']", "['Classics', 'Horror', 'Short Stories', 'Poetry', 'Fiction', 'Gothic', 'Literature']", "['Classics', 'Horror', 'Short Stories', 'Fiction', 'Gothic', 'Mystery', 'School']", "['Fiction', 'Turkish Literature', 'Turkish', 'Classics', 'Historical Fiction', 'Literature', 'Novels']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Magic', 'High Fantasy', 'Epic Fantasy', 'Adventure']", "['Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Literature', 'Historical', 'American']", "['History', 'India', 'Biography', 'Nonfiction']", "['Nonfiction', 'Nature', 'History', 'Travel', 'Science', 'Environment', 'American History']", "['Childrens', 'France', 'Fiction', 'Humor', 'Short Stories', 'Classics', 'French Literature']", "['Fantasy', 'Middle Grade', 'Mystery', 'Fairy Tales', 'Fiction', 'Young Adult', 'Childrens']", "['Fantasy', 'Mystery', 'Middle Grade', 'Fiction', 'Childrens', 'Fairy Tales', 'Young Adult']", "['Fantasy', 'Horror', 'Fiction', 'Witches', 'Paranormal', 'Magical Realism', 'Supernatural']", "['Fantasy', 'Fiction', 'Young Adult', 'Cats', 'Urban Fantasy', 'Animals', 'Magic']", "['Star Trek', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Media Tie In', 'Novels', 'Space']", "['Horror', 'Young Adult', 'Fiction', 'Thriller', 'Childrens', 'Mystery', 'Teen']", "['Fantasy', 'Science Fiction', 'Fiction', 'Queer', 'LGBT', 'M M Romance', 'Gay']", "['Fantasy', 'Fairy Tales', 'Fiction', 'Romance', 'Retellings', 'Magic', 'Science Fiction Fantasy']", "['Fiction', 'Contemporary', 'Adult Fiction', 'Chick Lit', 'Family', 'Adult', 'Novels']", "['Fiction', 'Classics', 'British Literature', 'Historical Fiction', 'War', 'Literature', 'World War II']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Gothic', 'Victorian', 'Thriller']", "['Nonfiction', 'History', 'True Crime', 'American History', 'Terrorism', 'Survival', 'Biography']", "['Picture Books', 'Halloween', 'Childrens', 'Fiction', 'Animals', 'Fantasy', 'Witches']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Romance', 'Science Fiction', 'Epic Fantasy', 'High Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Magic', 'Dragons']", "['Fiction', 'Magical Realism', 'Fantasy', 'Romance', 'Contemporary', 'Adult Fiction', 'Adult']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Young Adult', 'Unicorns', 'Adult']", "['Mystery', 'Fiction', 'Young Adult', 'Childrens', 'Classics', 'Middle Grade', 'Juvenile']", "['Mystery', 'Thriller', 'Fiction', 'Horror', 'Crime', 'Suspense', 'Mystery Thriller']", "['Nonfiction', 'Africa', 'Biography', 'Memoir', 'Biography Memoir', 'Sudan', 'Autobiography']", "['Romance', 'Paranormal', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Shapeshifters', 'Adult']", "['Fiction', 'Classics', 'Humor', 'British Literature', 'Historical Fiction', '20th Century', 'Novels']", "['History', 'Biography', 'Nonfiction', 'American History', 'Historical', 'Politics', 'Presidents']", "['Health', 'Nonfiction', 'Nutrition', 'Food', 'Science', 'Vegan', 'Self Help']", "['Nonfiction', 'China', 'History', 'Asia', 'Biography', 'Feminism', 'Womens']", "['Poetry', 'Classics', 'Horror', 'Romance', 'Fiction', 'Gothic', 'Short Stories']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'Science Fiction', 'High Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Fiction', 'Retellings', 'Middle Grade']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', 'School', '20th Century']", "['Religion', 'Nonfiction', 'Psychology', 'Philosophy', 'Self Help', 'Science', 'Cults']", "['Comics', 'Graphic Novels', 'Bande Dessinée', 'Adventure', 'Fiction', 'Childrens', 'Graphic Novels Comics']", "['Horror', 'Werewolves', 'Fiction', 'Splatterpunk', 'Paranormal', 'Fantasy', 'Pulp']", "['Historical Fiction', 'Fiction', 'Russia', 'World War II', 'Art', 'Historical', 'War']", "['Humor', 'Fiction', 'Comics', 'Comedy', 'Tv', 'Cartoon', 'Graphic Novels']", "['Historical Fiction', 'Art', 'Italy', 'Fiction', 'Italian Literature', 'Feminism', 'Classics']", "['Philosophy', 'Politics', 'Nonfiction', 'History', 'Religion', 'Sociology', 'Occult']", "['Politics', 'Nonfiction', 'Economics', 'Philosophy', 'Theory', 'History', 'Classics']", "['Politics', 'Nonfiction', 'Philosophy', 'Theory', 'History', 'Economics', 'Russia']", "['Horror', 'Fiction', 'Thriller', 'Splatterpunk', 'Dark', 'Adult', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Crime', 'True Crime', 'Mystery', 'Dark']", "['Horror', 'Fiction', 'Classics', 'Paranormal', 'Thriller', 'Supernatural', 'Fantasy']", "['Self Help', 'Nonfiction', 'Personal Development', 'Psychology', 'Business', 'Productivity', 'Leadership']", "['Paranormal Romance', 'Romance', 'Paranormal', 'Vampires', 'Fantasy', 'Fiction', 'Dark']", "['Leadership', 'Business', 'Nonfiction', 'Self Help', 'Psychology', 'Management', 'Personal Development']", "['Classics', 'Fiction', 'Fantasy', 'Childrens', 'Italian Literature', 'Italy', 'Adventure']", "['Fiction', 'Classics', 'Literature', 'Literary Fiction', 'Southern', 'American', 'Novels']", "['Childrens', 'Fantasy', 'Fiction', 'Chapter Books', 'Adventure', 'Historical Fiction', 'Middle Grade']", "['Historical Fiction', 'Childrens', 'Fiction', 'Young Adult', 'Middle Grade', 'Classics', 'Japan']", "['Fantasy', 'Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Adventure', 'Scandinavian Literature']", "['Islam', 'Nonfiction', 'Philosophy', 'Psychology']", "['Historical Fiction', 'Young Adult', 'Fantasy', 'Historical', 'Witches', 'Teen', 'Fiction']", "['Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Humor', 'Juvenile', 'School']", "['History', 'Military Fiction', 'Military History', 'Nonfiction', 'World War II', 'War', 'Biography']", "['Classics', 'Fiction', 'Romance', 'Short Stories', 'German Literature', 'Literature', 'Novels']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Paranormal', 'Ghosts', 'Supernatural']", "['Classics', 'Fiction', 'Historical Fiction', 'Victorian', '19th Century', 'British Literature', 'Audiobook']", "['Classics', 'Gothic', 'Horror', 'Short Stories', 'Fiction', 'Victorian', '19th Century']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller', 'Science Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Ancient History', 'Roman', 'Italy', 'Novels']", "['Fiction', 'Historical Fiction', 'Romance', 'Australia', 'Historical', 'War', 'Drama']", "['Fiction', 'German Literature', 'Historical Fiction', 'Classics', 'Fantasy', 'Novels', 'Contemporary']", "['Politics', 'History', 'Economics', 'Nonfiction', 'Philosophy', 'Sociology', 'Theory']", "['Christian Fiction', 'Christian', 'Fiction', 'Mystery', 'Suspense', 'Dystopia', 'Contemporary']", "['Westerns', 'Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Literature', 'American']", "['Young Adult', 'Vampires', 'Fantasy', 'Horror', 'Fiction', 'Paranormal', 'Teen']", "['Childrens', 'Fiction', 'Fantasy', 'Humor', 'Mystery', 'Animals', 'Middle Grade']", "['Fiction', 'Historical Fiction', 'War', 'World War II', 'Military Fiction', 'Classics', 'Adventure']", "['History', 'Nonfiction', 'Sociology', 'Politics', 'American History', 'Psychology', 'Philosophy']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Fairy Tales', 'Childrens', 'Romance']", "['Fantasy', 'Fairy Tales', 'Childrens', 'Middle Grade', 'Young Adult', 'Fiction', 'Retellings']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Romance', 'Middle Grade', 'Fiction', 'Retellings']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Action', 'Science Fiction', 'Mystery Thriller']", "['Nonfiction', 'Politics', 'History', 'Philosophy', 'Reference', 'Activism', 'Counter Culture']", "['History', 'Biography', 'Politics', 'Nonfiction', 'Russia', 'Autobiography', 'Memoir']", "['Nonfiction']", "['Politics', 'History', 'Nonfiction', 'Philosophy', 'Theory', 'Russia', 'Society']", "['Fiction', 'Classics', 'Mystery', 'Fantasy', 'Philosophy', 'Literature', 'Novels']", "['Mystery', 'Fiction', 'Classics', 'Short Stories', 'Crime', 'Detective', 'Audiobook']", "['History', 'Nonfiction', 'Race', 'Politics', 'American History', 'Sociology', 'African American']", "['Fiction', 'France', 'Classics', 'Romance', 'French Literature', 'Novels', '20th Century']", "['Fiction', 'Thriller', 'Action', 'Espionage', 'Mystery', 'Suspense', 'Mystery Thriller']", "['Fiction', 'Thriller', 'Action', 'Espionage', 'Mystery', 'Spy Thriller', 'Suspense']", "['Fiction', 'Thriller', 'Espionage', 'Action', 'Mystery', 'Spy Thriller', 'Suspense']", "['Science Fiction', 'Fiction', 'Space Opera', 'LGBT', 'Young Adult', 'Fantasy', 'Aliens']", "['Fiction', 'Historical Fiction', 'Classics', 'China', 'Religion', 'Catholic', 'British Literature']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Chick Lit', 'Audiobook', 'Adult']", "['History', 'Spain', 'Politics', 'Nonfiction', 'Spanish Civil War', 'European History', 'Spanish History']", "['Fiction', 'Russia', 'Russian Literature', 'Classics', 'Literature', 'Novels', 'Historical Fiction']", "['Fiction', 'Science Fiction', 'Dystopia', 'Fantasy', 'Literature', 'Science Fiction Fantasy', 'American']", "['Plays', 'Drama', 'Theatre', 'Fiction', 'School', 'Read For School', 'Classics']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'Literature', 'World War I', 'Greece']", "['Fiction', 'Mystery', 'Noir', 'Crime', 'Thriller', 'Contemporary', 'Novels']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Science Fiction Fantasy', 'Adult']", "['Young Adult', 'Vampires', 'Fantasy', 'Science Fiction', 'Paranormal', 'Fiction', 'Horror']", "['Fiction', 'Humor', 'Historical Fiction', 'Classics', 'Media Tie In', 'Drama', 'Contemporary']", "['Holocaust', 'Biography']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Magical Realism', 'Science Fiction Fantasy', 'Canada', 'Speculative Fiction']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Magical Realism', 'Canada', 'Magic']", "['Fantasy', 'Urban Fantasy', 'Short Stories', 'Fiction', 'Magical Realism', 'Science Fiction Fantasy', 'Science Fiction']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Japan', 'Young Adult', 'Historical', 'Romance']", "['Science Fiction', 'Fiction', 'Fantasy', 'Speculative Fiction', 'Literature', 'Nobel Prize', 'Science Fiction Fantasy']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Literature', 'Novels', 'Adult Fiction', 'Book Club']", "['Fiction', 'Humor', 'Classics', 'Historical Fiction', 'New York', 'The United States Of America', 'Novels']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Science Fiction Fantasy', 'Horror', 'Magic', 'Science Fiction']", "['History', 'Nonfiction', 'Politics', 'Economics', 'Latin American', 'Spanish Literature', 'Latin American History']", "['Fiction', 'Classics', 'Historical Fiction', 'Young Adult', 'Jewish', 'Religion', 'School']", "['Classics', 'Fiction', 'Plays', 'Brazil', 'Humor', 'Portuguese Literature', 'Literature']", "['Romance', 'Romantic Suspense', 'Suspense', 'Contemporary', 'Mystery', 'Contemporary Romance', 'Fiction']", "['Classics', 'Nonfiction', 'Biography', 'German Literature', 'Literature', 'Memoir', 'Czech Literature']", "['Fiction', 'German Literature', 'Literature', 'Fantasy', 'Novels']", "['Economics', 'Nonfiction', 'History', 'Politics', 'Sociology', 'Labor', 'Philosophy']", "['Young Adult', 'Mystery', 'Adventure', 'Fiction', 'Fantasy', 'Middle Grade', 'Teen']", "['Health', 'Nonfiction', 'Politics']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Mystery', 'Teen', 'Fiction']", "['Young Adult', 'Fantasy', 'Romance', 'Fiction', 'Chick Lit', 'Retellings', 'Mythology']", "['Philosophy', 'Politics', 'Nonfiction', 'Theory', 'History', 'Sociology', 'Economics']", "['Fiction', 'Classics', 'British Literature', 'Novels', 'Literature', 'Female Authors', 'Modern Classics']", "['Classics', 'Mystery', 'Fiction', 'Crime', 'Short Stories', 'Detective', 'Audiobook']", "['Fantasy', 'Historical Fiction', 'Japan', 'Fiction', 'Romance', 'Historical', 'Historical Fantasy']", "['Short Stories', 'China', 'Fiction', 'Classics', 'Asia', 'Chinese Literature', 'Romance']", "['Science Fiction', 'Fiction', 'Fantasy', 'Hugo Awards', 'Science Fiction Fantasy', 'Classics', 'Adventure']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Young Adult', 'Adventure']", "['Russia', 'Fiction', 'Russian Literature', 'Historical Fiction', 'Literature', '20th Century', 'Politics']", "['Urban Fantasy', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Horror', 'Fiction']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Literature', 'Historical Fiction', 'American']", "['Science Fiction', 'Fiction', 'Hugo Awards', 'Classics', 'Aliens', 'Science Fiction Fantasy', 'Fantasy']", "['Picture Books', 'Childrens', 'Humor', 'Fiction', 'Animals', 'Storytime', 'Fantasy']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Fantasy', 'Young Adult']", "['Picture Books', 'Childrens', 'Animals', 'Humor', 'Fiction', 'Fantasy', 'Storytime']", "['Short Stories', 'Fiction', 'Classics', 'Spanish Literature', 'Magical Realism', 'Fantasy', 'Latin American']", "['Fiction', 'Classics', 'Southern', 'Literature', 'Historical Fiction', 'Southern Gothic', 'American']", "['Fiction', 'Classics', 'British Literature', 'Literature', 'Historical Fiction', 'Novels', '20th Century']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Philosophy', 'Novels', '20th Century']", "['Chick Lit', 'Fiction', 'Romance', 'Humor', 'Contemporary', 'Adult', 'Audiobook']", "['Short Stories', 'Nonfiction', 'Classics', 'History', 'Memoir', 'Poetry', 'Essays']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Adventure']", "['Science Fiction', 'Fiction', 'Mystery', 'Space Opera', 'Space', 'Adventure', 'Science Fiction Fantasy']", "['Historical Fiction', 'Christian Fiction', 'Fiction', 'Christian', 'Romance', 'Historical', 'Civil War']", "['Mystery', 'Fiction', 'Classics', 'Crime', 'Mystery Thriller', 'Audiobook', 'Detective']", "['Fiction', 'Travel', 'Classics', 'Humor', 'Historical Fiction', 'British Literature', '20th Century']", "['Nonfiction', 'History', 'Space', 'Science', 'Biography', 'Memoir', 'American History']", "['Philosophy', 'Nonfiction', 'Metaphysics', 'Artificial Intelligence']", "['Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'Autobiography', 'France', 'Medicine']", "['Fiction', 'Classics', 'Contemporary', 'British Literature', 'Mystery', 'Humor', 'Novels']", "['Historical Fiction', 'Historical', 'Fiction', 'British Literature', 'Tudor Period', '16th Century', 'Romance']", "['Nonfiction', 'Horses', 'Animals', 'Christian', 'Memoir', 'Inspirational', 'Spirituality']", "['Fiction', 'Classics', 'Japan', 'Japanese Literature', 'Historical Fiction', 'Literature', 'Novels']", "['Fiction', 'Japanese Literature', 'Japan', 'Classics', 'Literature', 'Novels', 'Asian Literature']", "['Childrens', 'Fiction', 'Middle Grade', 'Fantasy', 'Classics', 'Young Adult', 'Humor']", "['Nonfiction', 'Philosophy', 'History', 'Economics', 'Sociology', 'Politics', 'Political Science']", "['Fantasy', 'Historical Fiction', 'Young Adult', 'Historical', 'Fiction', 'Romance', 'Fairy Tales']", "['Fiction', 'Novels', 'Contemporary', 'Literature', 'Literary Fiction', 'Books About Books', 'Poetry']", "['Fantasy', 'Young Adult', 'Mermaids', 'Fiction', 'Middle Grade', 'Childrens', 'Magical Realism']", "['Fiction', 'LGBT', 'Queer', 'Literary Fiction', 'Historical Fiction', 'Contemporary', 'Scotland']", "['Graphic Novels', 'Comics', 'Fantasy', 'Vampires', 'Fiction', 'Graphic Novels Comics', 'Horror']", "['Nonfiction', 'Travel', 'France', 'Food', 'Memoir', 'Cooking', 'Cookbooks']", "['Nonfiction', 'Canada', 'Essays', 'History', 'Memoir', 'School', 'Writing']", "['Fiction', 'Canada', 'Contemporary', 'Canadian Literature', 'Humor', 'Classics', 'Novels']", "['Nonfiction', 'Health', 'Food', 'Self Help', 'Vegan', 'Nutrition', 'Cookbooks']", "['Cookbooks', 'Nonfiction', 'Cooking', 'Food', 'Health', 'Vegan', 'Self Help']", "['Fiction', 'India', 'Indian Literature', 'Classics', 'Literature', 'Novels', 'Asia']", "['Memoir', 'Nonfiction', 'Biography', 'Autobiography', 'Biography Memoir', 'Audiobook', 'African American']", "['Horror', 'Zombies', 'Fiction', 'Science Fiction', 'Post Apocalyptic', 'Fantasy', 'Apocalyptic']", "['Christmas', 'Childrens', 'Picture Books', 'Classics', 'Poetry', 'Fiction', 'Holiday']", "['Poetry', 'Russia', 'Russian Literature', 'Classics', 'Literature', '20th Century', 'Fiction']", "['Childrens', 'Fiction', 'Picture Books', 'Animals', 'Classics', 'Family', 'Kids']", "['Fantasy', 'Animals', 'Fiction', 'Middle Grade', 'Childrens', 'Young Adult', 'Cats']", "['Picture Books', 'Childrens', 'Humor', 'Fiction', 'Animals', 'Storytime', 'Food']", "['Thriller', 'Horror', 'Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense']", "['Fiction', 'Classics', 'Greece', 'Historical Fiction', 'Literature', 'Novels', 'War']", "['Cookbooks', 'Cooking', 'Food', 'Nonfiction', 'Reference', 'Vegetarian', 'How To']", "['Adventure', 'Fiction', 'Thriller', 'Action', 'Mystery', 'Suspense', 'Historical Fiction']", "['Fantasy', 'Fiction', 'Childrens', 'Young Adult', 'Science Fiction', 'Middle Grade', 'Paranormal']", "['History', 'Economics', 'China', 'Nonfiction', 'World History', 'Politics', 'European History']", "['Nonfiction', 'Environment', 'Science', 'Nature', 'Climate Change', 'Ecology', 'Sustainability']", "['Russia', 'Adventure', 'Nonfiction', 'Travel', 'History', 'Biography', 'Nature']", "['Fiction', 'Historical Fiction', 'Southern', 'Novels', 'Literary Fiction', 'Contemporary', 'Adult Fiction']", "['Young Adult', 'Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Teen', 'Realistic Fiction']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Mystery', 'Fiction', 'Teen']", "['Young Adult', 'Romance', 'Chick Lit', 'Contemporary', 'Fiction', 'Teen', 'High School']", "['History', 'Nonfiction', 'Photography', 'True Crime', 'Art', 'Horror', 'Death']", "['Nonfiction', 'Africa', 'Memoir', 'Kenya', 'Biography', 'Feminism', 'Environment']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Poetry', 'Historical Fiction', 'Contemporary', 'Teen']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Animals', 'Fantasy', 'Family']", "['Horror', 'Fiction', 'Werewolves', 'Fantasy', 'Thriller', 'Halloween', 'Urban Fantasy']", "['Horror', 'Fiction', 'Fantasy', 'Supernatural', 'Novels', '20th Century', 'Gothic']", "['Horror', 'Fiction', 'Halloween', 'Splatterpunk', 'Thriller', 'Suspense', 'Mystery']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Classics', 'Novels']", "['History', 'Nonfiction', 'World War II', 'War', 'Military Fiction', 'Military History', 'Biography']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Short Stories', 'Young Adult', 'Magic', 'Science Fiction Fantasy']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Young Adult', 'Chick Lit', 'Coming Of Age', 'Southern']", "['France', 'Poetry', 'Fiction', 'French Literature', 'Classics', 'Literature', '19th Century']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Romance', 'Young Adult']", "['Historical Fiction', 'Young Adult', 'Time Travel', 'Fiction', 'Historical', 'Fantasy', 'Science Fiction']", "['Religion', 'Reference', 'Christianity', 'Classics', 'Theology', 'History', 'Nonfiction']", "['Nonfiction', 'History', 'Politics', 'Classics', 'Race', 'Philosophy', 'Essays']", "['Manga', 'Fantasy', 'Comics', 'Graphic Novels', 'Fiction', 'Young Adult', 'Anime']", "['Manga', 'Fantasy', 'Comics', 'Graphic Novels', 'Young Adult', 'Fiction', 'Adventure']", "['History', 'Nonfiction', 'India', 'Politics', 'Historical', 'Pakistan', 'Asia']", "['Classics', 'Horror', 'Short Stories', 'Fiction', 'Gothic', 'Mystery', 'Fantasy']", "['Fantasy', 'Science Fiction', 'Fiction', 'Young Adult', 'Childrens', 'Post Apocalyptic', 'Novels']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Nobel Prize', 'Novels', 'Bulgaria']", "['Travel', 'Nonfiction', 'Morocco', 'Africa', 'German Literature', 'Classics', 'Nobel Prize']", "['Philosophy', 'Nonfiction', 'Classics', 'Religion', 'Psychology', 'Theory', '17th Century']", "['Fiction', 'African American', 'Historical Fiction', 'Race', 'Classics', 'African American Literature', 'Contemporary']", "['Plays', 'Classics', 'Fiction', 'Drama', 'Theatre', 'School', 'Read For School']", "['Historical Fiction', 'Childrens', 'Fiction', 'Classics', 'Young Adult', 'Middle Grade', 'Historical']", "['Classics', 'Horror', 'Short Stories', 'Fiction', 'Gothic', 'Mystery', 'Literature']", "['Thriller', 'Fiction', 'Mystery', 'Action', 'Suspense', 'Espionage', 'Mystery Thriller']", "['Fiction', 'Crime', 'Thriller', 'Mystery', 'Historical Fiction', 'Mystery Thriller', 'Noir']", "['Science Fiction', 'Fiction', 'Speculative Fiction', 'Fantasy', 'Dystopia', 'Science Fiction Fantasy', 'Novels']", "['Spirituality', 'Buddhism', 'Philosophy', 'Nonfiction', 'Religion', 'Self Help', 'Death']", "['Romance', 'Fantasy', 'Paranormal Romance', 'Paranormal', 'Science Fiction', 'Shapeshifters', 'Aliens']", "['Young Adult', 'Dystopia', 'Fantasy', 'Science Fiction', 'Fiction', 'Middle Grade', 'Childrens']", "['Fiction', 'Classics', 'Philosophy', 'British Literature', 'Literature', '20th Century', 'Humor']", "['Fiction', 'Childrens', 'Classics', 'Animals', 'Young Adult', 'Middle Grade', 'Realistic Fiction']", "['Classics', 'Gothic', 'Horror', 'Fiction', '19th Century', 'Literature', 'Fantasy']", "['Nonfiction', 'History', 'Holocaust', 'Biography']", "['Urban Fantasy', 'Paranormal', 'Vampires', 'Fantasy', 'Paranormal Romance', 'Romance', 'Magic']", "['Science Fiction', 'Fiction', 'Space Opera', 'Fantasy', 'Science Fiction Fantasy', 'Singularity', 'Space']", "['Fiction', 'Historical Fiction', 'Young Adult', 'Childrens', 'Realistic Fiction', 'Middle Grade', 'Historical']", "['Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Chick Lit', 'Magic', 'Fiction']", "['Fiction', 'Historical Fiction', 'Mystery', 'New York', 'Literary Fiction', 'Literature', 'American']", "['Fiction', 'France', 'Philosophy', 'Literature', 'French Literature', 'Novels', 'Science Fiction']", "['Fiction', 'Italian Literature', 'Contemporary', 'Italy', 'Magical Realism', 'Novels', 'Literary Fiction']", "['Philosophy', 'Politics', 'History', 'Nonfiction', 'Law', 'Political Science', 'Classics']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'Thriller', 'Detective']", "['Historical Fiction', 'Fiction', 'China', 'Classics', 'Asia', 'Historical', 'Asian Literature']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Paranormal', 'Supernatural', 'Suspense']", "['Fiction', 'Italian Literature', 'Italy', 'Romance', 'Novels']", "['Nonfiction', 'Memoir', 'Biography', 'History', 'Autobiography', 'Labor', 'Biography Memoir']", "['Fiction', 'Anthropology', 'Mystery', 'Asia', 'Travel', 'Contemporary', 'Novels']", "['Fiction', 'Greece', 'Historical Fiction', 'War', '20th Century', 'World War II', 'Classics']", "['Fiction', 'Classics', 'France', 'French Literature', 'Literature', '19th Century', 'Philosophy']", "['Fiction', 'Historical Fiction', 'Historical', 'Retellings']", "['Nonfiction', 'Nature', 'Science', 'Environment', 'Classics', 'Philosophy', 'Essays']", "['Nonfiction', 'Environment', 'Green', 'Sustainability', 'Health']", "['Fiction', 'Russia', 'Humor', 'Novels', 'Contemporary', 'Jewish', 'New York']", "['Fiction', 'Classics', 'Literature', 'Historical Fiction', 'Humor', 'American', 'Novels']", "['History', 'Nonfiction', 'Civil War', 'American History', 'Biography', 'African American', 'American Civil War']", "['Classics', 'Fiction', 'India', 'Historical Fiction', 'Adventure', 'Literature', 'Novels']", "['Christian', 'Religion', 'Theology', 'Cults', 'Nonfiction', 'Christianity', 'Reference']", "['Historical Romance', 'Romance', 'Historical', 'Scotland', 'Historical Fiction', 'Paranormal']", "['Mystery', 'Young Adult', 'Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Crime']", "['Romance', 'Gothic', 'Mystery', 'Historical Fiction', 'Fiction', 'Historical Romance', 'Gothic Romance']", "['Fiction', 'Africa', 'South Africa', 'Contemporary', 'School', 'Crime', 'Novels']", "['Fiction', 'Historical Fiction', 'Mystery', 'Egypt', 'Historical', 'Archaeology', 'Mystery Thriller']", "['Fiction', 'Scotland', 'Contemporary', 'Thriller', 'Novels', 'Dark', 'Drama']", "['Fiction', 'Historical Fiction', 'France', 'Lebanon', 'Novels', 'Literature', 'Historical']", "['Outdoors', 'Nonfiction', 'Survival', 'Reference', 'Nature']", "['Fantasy', 'Romance', 'Fiction', 'Dark Fantasy', 'Magic', 'High Fantasy', 'Short Stories']", "['Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Literary Fiction', 'Nature', 'Novels']", "['Music', 'History', 'Nonfiction', 'Reference']", "['Politics', 'Nonfiction', 'Philosophy', 'Theory', 'History', 'Economics', 'Sociology']", "['Fantasy', 'Young Adult', 'Magic', 'Fiction', 'Urban Fantasy', 'Young Adult Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Fiction', 'Adventure', 'Teen', 'Middle Grade']", "['Buddhism', 'Nonfiction', 'Spirituality', 'Philosophy', 'Religion', 'Self Help', 'Personal Development']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Post Apocalyptic', 'Survival', 'Apocalyptic']", "['History', 'Nonfiction', 'France', 'War', 'World War II', 'Military History', 'Historical']", "['Film', 'Biography', 'Nonfiction', 'Memoir', 'Autobiography', 'Art', 'Media Tie In']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Biography Memoir', 'Family', 'Medical']", "['Nonfiction', 'Biography', 'Adventure', 'Nature', 'Outdoors', 'Travel', 'Mystery']", "['History', 'World War II', 'Nonfiction', 'War', 'Biography', 'Politics', 'Military Fiction']", "['Historical Fiction', 'Fiction', 'Coming Of Age', 'Young Adult', 'World War II', 'War', 'Audiobook']", "['Christian', 'Nonfiction', 'Religion', 'Christianity', 'Faith', 'Theology', 'Christian Living']", "['Mathematics', 'Science', 'Classics', 'Philosophy', 'Nonfiction', 'History', 'Reference']", "['Nonfiction', 'Nature', 'Memoir', 'Travel', 'Environment', 'Adventure', 'Biography']", "['Fiction', 'Classics', 'Swedish Literature', 'Historical Fiction', 'Nobel Prize', 'Sweden', 'Literature']", "['Fiction', 'German Literature', 'Germany', 'Classics', 'Nobel Prize', 'Literature', 'Novels']", "['Fiction', 'Classics', 'Novels', 'Queer', 'LGBT', 'Womens', 'American']", "['Fiction', 'Contemporary', 'Inspirational', 'Young Adult', 'Drama', 'Adult', 'Realistic Fiction']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Shapeshifters', 'Urban Fantasy', 'Adult']", "['History', 'Nonfiction', 'Travel', 'India', 'Egypt', 'Memoir', 'Anthropology']", "['Young Adult', 'Fiction', 'Historical Fiction', 'Realistic Fiction', 'Middle Grade', 'Poetry', 'Cultural']", "['Nonfiction', 'History', 'Africa', 'Politics', 'War', 'Biography', 'Memoir']", "['Horror', 'Fiction', 'Coming Of Age', 'Zombies', 'Paranormal', 'Fantasy', 'Adult']", "['Horror', 'Zombies', 'Fiction', 'Post Apocalyptic', 'Apocalyptic', 'Science Fiction', 'Dystopia']", "['Horror', 'Zombies', 'Fiction', 'Apocalyptic', 'Post Apocalyptic', 'Splatterpunk', 'Science Fiction']", "['Science Fiction', 'Fiction', 'Speculative Fiction', 'Novels', 'Dystopia', 'Science Fiction Fantasy', 'American']", "['Science Fiction', 'Fiction', 'Classics', 'Dystopia', 'Alternate History', 'Historical Fiction', 'Fantasy']", "['Science Fiction', 'Fiction', 'Philosophy', 'Religion', 'Science Fiction Fantasy', 'Novels', 'Fantasy']", "['Science Fiction', 'Fiction', 'Religion', 'Fantasy', 'Novels', 'Philosophy', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Novels', 'Speculative Fiction', 'Mystery', 'Religion', 'Science Fiction Fantasy']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Russia', 'Russian Literature', 'Literature', 'Classics', 'World War I']", "['Star Trek', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Media Tie In', 'Space Opera', '20th Century']", "['Fiction', 'Historical Fiction', 'Historical', 'Jewish', 'Russia', 'Adult Fiction', 'Book Club']", "['History', 'Nonfiction', 'Religion', 'American History', 'School', 'Read For School', '19th Century']", "['Fiction', 'German Literature', 'Contemporary', 'Germany', 'School', 'Classics', 'Novels']", "['Pulp', 'Fiction']", "['Fiction', 'Fantasy', 'Classics', 'Witches', 'Paranormal', 'Magic', 'Literature']", "['Fiction', 'Short Stories', 'Literature', 'Serbian Literature', '20th Century', 'Classics', 'Literary Fiction']", "['Fiction', 'Novels', 'Serbian Literature', 'Holocaust', 'Literature', '20th Century', 'Jewish']", "['Childrens', 'Fiction', 'Animals', 'Fantasy', 'Classics', 'Middle Grade', 'Chapter Books']", "['Fiction', 'India', 'Historical Fiction', 'Asia', 'Literary Fiction', 'Contemporary', 'Book Club']", "['Horror', 'Fiction', 'Fantasy', 'Mystery', 'Thriller', 'Unfinished', 'Gothic']", "['Science Fiction', 'Fiction', 'Space Opera', 'Hugo Awards', 'Science Fiction Fantasy', 'Classics', 'Space']", "['Biography', 'Religion', 'Lds', 'Nonfiction', 'History', 'Church', 'Historical']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Aliens', 'Audiobook', 'Space']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Apocalyptic', 'Science Fiction Fantasy', 'Dystopia', 'Survival']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Witches', 'Historical', 'Literature', 'Novels']", "['Horror', 'Fiction', 'Fantasy', 'Lovecraftian', 'Weird Fiction', 'Novels', 'Werewolves']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'Southern Gothic', 'Southern', 'American']", "['Science Fiction', 'Fiction', 'Fantasy', 'Short Stories', 'Humor', 'Science Fiction Fantasy', 'Anthologies']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Detective', 'Mystery Thriller', 'Noir']", "['History', 'Nonfiction', 'Reference', 'Textbooks']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Epic Fantasy', 'Science Fiction', 'High Fantasy', 'Adventure']", "['Horror', 'Fiction', 'Mystery', 'Thriller', 'Gothic', 'Classics', 'Suspense']", "['Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Historical Fiction', 'Humor', 'Classics']", "['Horror', 'Fiction', 'France', 'Classics', 'Novels', 'French Literature', 'Weird Fiction']", "['Horror', 'Thriller', 'Fiction', 'Mystery', 'Crime', 'Suspense', 'Canada']", "['Fantasy', 'Fiction', 'LGBT', 'Queer', 'M M Romance', 'Magic', 'Gay']", "['Fantasy', 'Fiction', 'Queer', 'M M Romance', 'LGBT', 'Magic', 'Romance']", "['Horror', 'Fantasy', 'Short Stories', 'Fiction', 'Mystery', 'LGBT', 'Ghosts']", "['Fiction', 'Nobel Prize', 'German Literature', 'Classics', 'Contemporary', 'Literature', 'Novels']", "['Historical Fiction', 'Fiction', 'Classics', 'Christian Fiction', 'Christian', 'Religion', 'Historical']", "['Autistic Spectrum Disorder', 'Nonfiction', 'Memoir', 'Parenting', 'Biography', 'Health', 'Psychology']", "['Nonfiction', 'Spirituality', 'New Age', 'Biography', 'Memoir', 'Autobiography', 'Paranormal']", "['Fiction', 'Classics', 'Turkish Literature', 'Turkish', 'Romance', 'Literature', 'Novels']", "['Horror', 'Fantasy', 'Fiction', 'Classics', 'Gothic', 'Science Fiction', 'Weird Fiction']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Action', 'Mystery Thriller', 'Suspense']", "['Fiction', 'Canada', 'Humor', 'Contemporary', 'Comedy', 'Novels', 'Literature']", "['Christian', 'Leadership', 'Fiction', 'Christian Living', 'Christianity', 'Spirituality', 'Theology']", "['Art', 'Nonfiction', 'History', 'Art History', 'Reference', 'Classics', 'Design']", "['Science Fiction', 'Fiction', 'Short Stories', 'Fantasy', 'Classics', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Classics', 'Mystery', 'Humor']", "['Fiction', 'Young Adult', 'Childrens', 'Adventure', 'Short Stories', 'Science Fiction', 'Humor']", "['Realistic Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Autistic Spectrum Disorder', 'Childrens', 'Contemporary']", "['Fantasy', 'Science Fiction Fantasy', 'Fiction', 'Epic Fantasy', 'Novels', 'Adventure', 'Epic']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Poetry', '19th Century', 'Regency']", "['Horror', 'Fiction', 'Science Fiction', 'Fantasy', 'Weird Fiction', 'Mystery', 'Literature']", "['Historical Fiction', 'Young Adult', 'Animals', 'Dogs', 'War', 'Fiction', 'Historical']", "['Fantasy', 'Short Stories', 'Fiction', 'Science Fiction', 'Time Travel', 'Historical Fiction', 'Novella']", "['Short Stories', 'Science Fiction', 'Fiction', 'Fantasy', 'Speculative Fiction', 'Science Fiction Fantasy', 'Anthologies']", "['Fiction', 'Chick Lit', 'Southern', 'Contemporary', 'Mystery', 'Audiobook', 'Adult']", "['Psychology', 'Science', 'Nonfiction', 'Politics', 'Sociology', 'Economics', 'Education']", "['Fiction', 'Historical Fiction', 'Albanian Literature', 'Classics', 'Novels', 'Literature', 'War']", "['Christian', 'Fiction', 'Christian Fiction', 'Classics', 'Religion', 'Christianity', 'Faith']", "['Nonfiction', 'History', 'Journalism', 'Politics', 'Business']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Demons', 'Romance', 'Paranormal Romance', 'Magic']", "['Short Stories', 'Fiction', 'Young Adult', 'Fantasy', 'Horror', 'Humor', 'Childrens']", "['Feminism', 'Nonfiction', 'Classics', 'Philosophy', 'History', 'Politics', 'Womens']", "['Japan', 'Fiction', 'Japanese Literature', 'Contemporary', 'Asia', 'Romance', 'Asian Literature']", "['Horror', 'Short Stories', 'Classics', 'Fiction', 'Gothic', 'Ghost Stories', 'Ghosts']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Classics', 'Young Adult', 'Magic']", "['Fiction', 'Short Stories', 'Classics', 'Literature', 'American', '20th Century', 'Literary Fiction']", "['True Crime', 'Nonfiction', 'Crime', 'Audiobook', 'Mystery', 'History', 'Biography']", "['Fiction', 'Classics', 'Philosophy', 'France', 'French Literature', 'Literature', 'Novels']", "['History', 'Nonfiction', 'Ancient History', 'World History', 'Historical', 'Audiobook', 'Education']", "['Science Fiction', 'Fiction', 'Space Opera', 'Hugo Awards', 'Science Fiction Fantasy', 'Aliens', 'Speculative Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'World War II', 'Mystery', 'Adult Fiction', 'Young Adult']", "['Horror', 'Fiction', 'Classics', 'Thriller', 'Paranormal', 'Fantasy', 'Mystery']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Magic', 'Dragons']", "['Nonfiction', 'Feminism', 'Anthologies', 'Short Stories', 'Memoir', 'Essays', 'Autobiography']", "['Nonfiction', 'History', 'Germany', 'Politics', 'Historical', 'Memoir', 'Biography']", "['Nonfiction', 'Memoir', 'Biography', 'Middle Grade', 'Childrens', 'Biography Memoir', 'Autobiography']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Parenting', 'Psychology', 'Family']", "['Science Fiction', 'Fiction', 'Dystopia', 'Novels', 'Speculative Fiction', 'Science Fiction Fantasy', 'Time Travel']", "['Science Fiction', 'Fiction', 'Novels', 'Dystopia', 'Speculative Fiction', 'Science Fiction Fantasy', 'American']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction', 'Fantasy', 'American']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Psychology', 'Fantasy', 'Speculative Fiction']", "['Psychology', 'Nonfiction', 'Philosophy', 'Science', 'Cultural', 'Sociology', 'Anthropology']", "['Fiction', 'Horror', 'Young Adult', 'Romance', 'Gothic', 'Thriller', 'Drama']", "['Fiction', 'Horror', 'Young Adult', 'Romance', 'Gothic', 'Drama', 'Thriller']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Crime', 'Mystery Thriller', 'Adventure']", "['Fiction', 'France', 'Literature', 'French Literature', 'Classics', 'Novels', '20th Century']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Asia', 'Detective', 'Buddhism']", "['Fiction', 'British Literature', 'Classics', '20th Century', 'Literary Fiction', 'Novels', 'Humor']", "['Fiction', 'Japan', 'Japanese Literature', 'Contemporary', 'Magical Realism', 'Literature', 'Novels']", "['Fiction', 'France', 'Short Stories', 'Classics', 'French Literature', 'Literature', 'Erotica']", "['Fiction', 'Philosophy', 'Spirituality', 'Classics', 'Fantasy', 'Environment', 'Novels']", "['Graphic Novels', 'Comics', 'Fiction', 'Graphic Novels Comics', 'Comix', 'Contemporary', 'Adult']", "['Fiction', 'Chick Lit', 'Romance', 'Humor', 'Contemporary', 'Comedy', 'Adult']", "['Young Adult', 'Romance', 'Music', 'Contemporary', 'Fiction', 'Teen', 'Childrens']", "['Fiction', 'Thriller', 'Mystery', 'Contemporary', 'Suspense', 'Mystery Thriller', 'Chick Lit']", "['Classics', 'Fiction', 'Science Fiction', 'Dystopia', 'Horror', 'Literature', 'Novels']", "['Fiction', 'Short Stories', 'Novels', 'Contemporary', 'Adoption', 'Literature', 'Literary Fiction']", "['History', 'Nonfiction', 'Art', 'World War II', 'Art History', 'War', 'Germany']", "['Nonfiction', 'History', 'Essays', 'Travel', 'Politics', 'Memoir', 'Sociology']", "['Fiction', 'Historical Fiction', 'Book Club', 'Literary Fiction', 'Adult Fiction', 'Novels', 'Adult']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Middle Grade', 'Childrens', 'Fantasy']", "['Dystopia', 'Young Adult', 'Science Fiction', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure']", "['Young Adult', 'Fiction', 'Middle Grade', 'Science Fiction', 'Historical Fiction', 'Childrens', 'Mystery']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Adult Fiction', 'Mental Health', 'Mental Illness']", "['Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary', 'Mystery', 'American']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Science Fiction', 'Adventure', 'Childrens']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Adult', 'Contemporary Romance', 'Adult Fiction']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Mystery Thriller', 'Science Fiction']", "['Horror', 'Fiction', 'Classics', 'Thriller', 'Mystery', 'Fantasy', 'Paranormal']", "['Fiction', 'Chick Lit', 'Contemporary', 'Romance', 'Humor', 'Adult Fiction', 'Adult']", "['Holocaust', 'History', 'Nonfiction', 'Biography', 'World War II', '20th Century', 'Childrens']", "['Fiction', 'Historical Fiction', 'Mystery', 'Contemporary', 'Historical', 'Chick Lit', 'Adult Fiction']", "['Young Adult', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Contemporary', 'Teen', 'Drama']", "['Fiction', 'Classics', 'Historical Fiction', 'Holocaust', 'War', 'Historical', 'World War II']", "['Classics', 'Nonfiction', 'Memoir', 'Biography', 'African American', 'Race', 'Autobiography']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Family', 'Realistic Fiction', 'Nature']", "['Doctor Who', 'Science Fiction', 'Audiobook', 'Fiction', 'Time Travel', 'Media Tie In', 'Politics']", "['Fiction', 'Contemporary', 'Romance', 'Literary Fiction', 'Mystery', 'Scotland', 'Family']", "['Science Fiction', 'Fiction', 'Young Adult', 'Classics', 'Coming Of Age', 'Dystopia', 'Speculative Fiction']", "['Fiction', 'Classics', 'Literature', '19th Century', 'Humor', 'Victorian', 'British Literature']", "['Fiction', 'Classics', 'Novels', 'Literature', 'Historical Fiction', 'Irish Literature', 'Politics']", "['Biography', 'History', 'Nonfiction', 'Anthropology', 'American History', 'Native Americans', 'Biography Memoir']", "['Fiction', 'Historical Fiction', 'Hungary', 'War', 'Classics', 'Contemporary', 'Literature']", "['Nonfiction', 'Biography', 'Autobiography', 'True Crime', 'Crime', 'Memoir', 'History']", "['Fantasy', 'Fiction', 'Short Stories', 'Horror', 'Science Fiction', 'Weird Fiction', 'New Weird']", "['Fantasy', 'Science Fiction', 'Science Fiction Fantasy', 'Fiction', 'Urban Fantasy']", "['Science', 'Philosophy', 'Physics', 'Nonfiction', 'Mathematics', 'Classics', 'History']", "['Christian', 'Religion', 'Nonfiction', 'Reference', 'Theology', 'Christianity', 'Classics']", "['Fantasy', 'Dragons', 'Christian', 'Christian Fiction', 'Young Adult', 'Fiction', 'Christian Fantasy']", "['True Crime', 'Nonfiction', 'Crime', 'Mystery', 'Audiobook', 'Biography', 'History']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Suspense', 'Adult']", "['Classics', 'Young Adult', 'Fiction', 'School', 'Read For School', 'Coming Of Age', 'Realistic Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Romance', 'Adult']", "['Fiction', 'Chick Lit', 'Coming Of Age', 'Contemporary', 'Adult Fiction', 'Book Club', 'Young Adult']", "['Fiction', 'LGBT', 'Queer', 'Gay', 'Classics', 'Romance', 'New York']", "['Fiction', 'Science Fiction', 'Thriller', 'Adventure', 'Horror', 'Fantasy', 'Mystery']", "['Fiction', 'Childrens', 'Middle Grade', 'Classics', 'Young Adult', 'Mystery', 'Realistic Fiction']", "['Fiction', 'Spain', 'Classics', 'Historical Fiction', 'Spanish Literature', 'Novels', '20th Century']", "['Romance', 'Fiction', 'Chick Lit', 'Knitting', 'Contemporary', 'Contemporary Romance', 'Womens Fiction']", "['Childrens', 'Picture Books', 'Fiction', 'Poetry', 'Classics', 'Fantasy', 'Humor']", "['Nonfiction', 'Memoir', 'History', 'Biography', 'Biography Memoir', 'Politics', 'Feminism']", "['Fiction', 'Short Stories', 'Classics', 'Literature', 'Sports', 'British Literature', '20th Century']", "['Fiction', 'Short Stories', 'New York', 'American', 'Literature', 'Contemporary', 'Literary Fiction']", "['Mystery', 'Fiction', 'Young Adult', 'Childrens', 'Classics', 'Middle Grade', 'Mystery Thriller']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Fantasy', 'Paranormal', 'Suspense']", "['Classics', 'Biography', 'Childrens', 'Nonfiction', 'History', 'Westerns', 'Memoir']", "['Humor', 'Comics', 'Fiction', 'Graphic Novels', 'Comic Strips', 'Comedy', 'Cartoon']", "['Childrens', 'Fiction', 'Young Adult', 'Middle Grade', 'Realistic Fiction', 'Contemporary', 'Juvenile']", "['Fiction', 'Young Adult', 'Historical Fiction', 'Classics', 'Childrens', 'Middle Grade', 'Adventure']", "['Fiction', 'Historical Fiction', 'School', 'Literary Fiction', 'Novels', 'Historical', 'Read For School']", "['Thriller', 'Fiction', 'Mystery', 'Adventure', 'Historical Fiction', 'Action', 'Mystery Thriller']", "['Asia', 'Historical Fiction', 'Fiction', 'China', 'Asian Literature', '20th Century', 'Travel']", "['Science Fiction', 'Fiction', 'Space Opera', 'Hugo Awards', 'Science Fiction Fantasy', 'Fantasy', 'Aliens']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Young Adult', 'Audiobook', 'Space']", "['Humor', 'Nonfiction', 'Essays', 'Memoir', 'Biography', 'Comedy', 'Short Stories']", "['Young Adult', 'Fiction', 'LGBT', 'Contemporary', 'Queer', 'Coming Of Age', 'Realistic Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Vampires', 'Demons']", "['Fiction', 'China', 'Historical Fiction', 'Asia', 'Novels', 'Literature', 'Literary Fiction']", "['Memoir', 'Nonfiction', 'Biography', 'Death', 'Coming Of Age', 'Biography Memoir', 'Contemporary']", "['Fiction', 'Childrens', 'Middle Grade', 'Young Adult', 'Realistic Fiction', 'Humor', 'School']", "['Biography', 'Religion', 'History', 'Nonfiction', 'Lds', 'Mormonism', 'Church']", "['Fiction', 'Humor', 'Erotica', 'Sexuality', 'Novels', 'Classics', 'Classic Literature']", "['Mystery', 'Historical Fiction', 'Fiction', 'Crime', 'Thriller', 'Germany', 'Noir']", "['Education', 'Nonfiction', 'Teaching', 'Parenting', 'School', 'Leadership']", "['Fantasy', 'Fiction', 'Romance', 'Fairy Tales', 'Adventure', 'Young Adult', 'Magic']", "['Classics', 'Fiction', 'Poetry', 'Short Stories', 'War', 'Literature', 'Politics']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Ireland', 'Suspense']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Middle Grade', 'Contemporary', 'Childrens', 'Family']", "['Leadership', 'Business', 'Nonfiction', 'History', 'Management', 'Self Help', 'Military Fiction']", "['Graphic Novels', 'Comics', 'Nonfiction', 'Biography', 'Art', 'History', 'Literature']", "['Mystery', 'Romance', 'Crime', 'Romantic Suspense', 'Fiction', 'Suspense', 'Futuristic']", "['Science Fiction', 'Romance', 'Fiction', 'Fantasy', 'Adult', 'Classics', 'Aliens']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'High School', 'Teen', 'Realistic Fiction']", "['Fiction', 'German Literature', 'Literature', 'Classics', '20th Century', 'Germany', 'Novels']", "['Nonfiction', 'Nature', 'Travel', 'History', 'Outdoors', 'Science', 'Memoir']", "['Nature', 'Nonfiction', 'Travel', 'Memoir', 'Classics', 'Adventure', 'Biography']", "['Young Adult', 'Historical Fiction', 'Fiction', 'School', 'Realistic Fiction', 'Romance', 'Read For School']", "['Fiction', 'South Africa', 'Literature', 'Nobel Prize', '20th Century', 'African Literature', 'Novels']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Romance', 'Space Opera', 'Adventure']", "['Romance', 'LGBT', 'M M Romance', 'Fiction', 'Contemporary', 'Queer', 'Gay']", "['History', 'Nonfiction', 'Science', 'Biography', 'American History', 'Historical', 'Audiobook']", "['Nonfiction', 'Science', 'Nature', 'Environment', 'Gardening', 'Biology', 'Ecology']", "['Science Fiction', 'Fiction', 'Space Opera', 'Military Fiction', 'Science Fiction Fantasy', 'War', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Novels', 'War', 'Literature', 'British Literature']", "['Nonfiction', 'Biology', 'Science']", "['History', 'Nonfiction', 'Classics', 'Biography', 'Memoir', 'Africa', 'Autobiography']", "['Classics', '20th Century', 'Female Authors', 'Fiction']", "['Picture Books', 'Childrens', 'Fantasy', 'Fiction', 'Dragons', 'Classics', 'Fairy Tales']", "['Fiction', 'African American', 'Historical Fiction', 'Young Adult', 'Contemporary', 'Adult Fiction', 'Drama']", "['Young Adult', 'Fiction', 'Contemporary', 'School', 'Realistic Fiction', 'Read For School', 'Coming Of Age']", "['Science Fiction', 'Space Opera', 'Fiction', 'Horror', 'Fantasy', 'Adventure', 'Science Fiction Fantasy']", "['Politics', 'Nonfiction', 'History', 'Political Science', 'Cultural']", "['History', 'Nonfiction', 'War', 'Biography', 'Memoir', 'World War I', 'Classics']", "['Science Fiction', 'Fiction', 'Space Opera', 'Space', 'Time Travel', 'Science Fiction Fantasy', 'Classics']", "['Fiction', 'Czech Literature', 'Classics', 'Literature', 'Novels', 'Philosophy', 'Short Stories']", "['Poetry', 'Classics', '20th Century', 'Literature']", "['Fiction', 'Christian Fiction', 'Christian', 'Audiobook', 'Contemporary', 'Inspirational', 'Book Club']", "['Fiction', 'LGBT', 'Queer', 'Novels', '20th Century', 'Animals', 'Classics']", "['Fiction', 'Canada', 'Historical Fiction', 'Literary Fiction', 'Historical', 'Canadian Literature', 'Novels']", "['Russia', 'Fiction', 'Russian Literature', 'Gothic', 'Classics', 'Occult', 'Historical Fiction']", "['Nonfiction', 'Feminism', 'Psychology', 'Spirituality', 'Mythology', 'Self Help', 'Womens']", "['Memoir', 'Nonfiction', 'Biography', 'Humor', 'Biography Memoir', 'Autobiography', 'LGBT']", "['Historical Fiction', 'Fiction', 'Science Fiction', 'Historical', 'Time Travel', 'Suspense', 'Romance']", "['Nonfiction', 'Economics', 'Business', 'Philosophy', 'Psychology', 'Science', 'Finance']", "['Horror', 'Fiction', 'Gothic', 'Thriller', 'Historical Fiction', 'Paranormal', 'Witches']", "['Young Adult', 'Historical Fiction', 'Fiction', 'India', 'Middle Grade', 'Historical', 'Realistic Fiction']", "['Fiction', 'Thriller', 'Contemporary', 'Crime', 'Asia', 'Mystery', 'Novels']", "['Mystery', 'Fiction', 'Crime', 'Historical Fiction', 'Asia', 'Mystery Thriller', 'Audiobook']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'British Literature', 'Historical Fiction']", "['Fiction', 'Classics', 'Africa', 'Travel', 'Literature', 'Novels', 'Historical Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Politics', 'Thriller', 'Audiobook']", "['Philosophy', 'History', 'Nonfiction', 'Classics', 'Reference', 'Religion', 'Politics']", "['Fiction', 'Classics', 'Horror', 'Thriller', 'Crime', 'Mystery', 'Literature']", "['Science', 'Nonfiction', 'Technology', 'Philosophy', 'Economics', 'Business', 'Biology']", "['Fiction', 'Short Stories', 'Classics', 'Polish Literature', 'Poland', 'Magical Realism', 'Literature']", "['Self Help', 'Spirituality', 'Nonfiction', 'Personal Development', 'Psychology', 'Inspirational', 'New Age']", "['Manga', 'Romance', 'Fantasy', 'Graphic Novels', 'Young Adult', 'Shojo', 'Fiction']", "['Manga', 'Fantasy', 'Romance', 'Graphic Novels', 'Young Adult', 'Fiction', 'Shojo']", "['Fiction', 'Italian Literature', 'Italy', 'Short Stories', 'Classics', '20th Century', 'Literature']", "['Fantasy', 'Young Adult', 'Historical', 'Magic', 'Fiction', 'Historical Fiction', 'Mystery']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', '19th Century', 'Literature']", "['Nonfiction', 'Sociology', 'Business', 'Biography', 'Essays', 'Economics', 'Labor']", "['Classics', 'Fiction', 'Historical Fiction', 'Adventure', 'Literature', 'American', 'Historical']", "['History', 'Nonfiction', 'Medieval', 'Medieval History', 'Catholic', 'France', 'Religion']", "['Nonfiction', 'Memoir', 'Chick Lit', 'Biography', 'Book Club', 'Self Help', 'Biography Memoir']", "['Fiction', 'Novels', 'Literature', 'Contemporary', 'Literary Fiction', 'American', 'Classics']", "['Short Stories', 'Classics', 'Fiction', 'Horror', 'Fantasy', 'German Literature', 'Gothic']", "['Fiction', 'Novels', 'Historical Fiction', 'Indonesian Literature', 'Literature', 'Classics', 'Asia']", "['Romantic Suspense', 'Romance', 'Suspense', 'Thriller', 'Mystery', 'Crime', 'Contemporary']", "['Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Adult', 'New Adult', 'Contemporary Romance']", "['Nonfiction', 'Memoir', 'Biography', 'Humor', 'Biography Memoir', 'Autobiography', 'Comedy']", "['Fantasy', 'Young Adult', 'Adventure', 'Magic', 'Fiction', 'High Fantasy', 'Vampires']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Fairy Tales', 'Adventure', 'Young Adult Fantasy']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Adult Fiction', 'Humor']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Fairy Tales', 'Retellings', 'Historical Fiction']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Horror', 'Urban Fantasy']", "['Nonfiction', 'Memoir', 'Biography', 'Humor', 'Classics', 'Childrens', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Historical Fiction', 'Middle Grade', 'Magic']", "['Horror', 'Fantasy', 'Fiction', 'Classics', 'Science Fiction', 'Young Adult', 'Halloween']", "['Fiction', 'Historical Fiction', 'Crime', 'Novels', 'Literary Fiction', 'American Fiction', 'Historical']", "['Historical Fiction', 'Fiction', 'Mythology', 'Historical', 'Fantasy', 'Greek Mythology', 'Greece']", "['Fiction', 'Classics', 'Erotica', 'Romance', 'France', 'Literature', 'Novels']", "['Young Adult', 'Fiction', 'Contemporary', 'Mental Health', 'Mental Illness', 'Realistic Fiction', 'Romance']", "['Science', 'Nonfiction', 'Biology', 'Evolution', 'Philosophy', 'Popular Science', 'Atheism']", "['Nonfiction', 'Science', 'Environment', 'Nature', 'History', 'Ecology', 'Post Apocalyptic']", "['Manga', 'Fantasy', 'Horror', 'Comics', 'Graphic Novels', 'Fiction', 'Seinen']", "['Writing', 'Nonfiction', 'Art', 'Reference', 'Self Help', 'Philosophy', 'Memoir']", "['Nonfiction', 'Psychology', 'Memoir', 'Mental Health', 'Biography', 'Mental Illness', 'Biography Memoir']", "['Fiction', 'Literature', 'Classics', 'Literary Fiction', 'Historical Fiction', 'Novels', 'Nobel Prize']", "['Fiction', 'Fantasy', 'Science Fiction', 'Contemporary', 'Scotland', 'Thriller', 'Novels']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Science Fiction', 'Adventure']", "['Horror', 'Fiction', 'Classics', 'Fantasy', 'Ghosts', 'Literature', 'British Literature']", "['Fiction', 'Crime', 'New York', 'Novels', 'Mystery', 'Literature', 'Thriller']", "['Fiction', 'New York', 'Novels', 'Contemporary', 'Literature', 'Classics', 'American']", "['Science Fiction', 'Fiction', 'Classics', 'Dystopia', 'Science Fiction Fantasy', 'Fantasy', 'Novels']", "['Fantasy', 'Young Adult', 'Time Travel', 'Historical Fiction', 'Fiction', 'Historical', 'Adventure']", "['Fiction', 'Russia', 'Classics', 'Russian Literature', 'Literature', 'Novels', '20th Century']", "['Fiction', 'Historical Fiction', 'Mystery', 'Contemporary', 'Historical', 'Scotland', 'Literary Fiction']", "['Feminism', 'Nonfiction', 'Race', 'History', 'Social Justice', 'Politics', 'Womens']", "['Young Adult', 'Poetry', 'Fiction', 'Realistic Fiction', 'Teen', 'Contemporary', 'School']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult Fiction', 'Humor', 'Womens Fiction']", "['Science Fiction', 'Fiction', 'Polish Literature', 'Classics', 'Audiobook', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Classics', 'Fiction', 'Short Stories', 'Romance', 'American', 'Literature', 'Audiobook']", "['Fiction', 'Jewish', 'Contemporary', 'Adult Fiction', 'Coming Of Age', 'Novels', 'Book Club']", "['Memoir', 'Nonfiction', 'Dogs', 'Animals', 'Biography', 'Biography Memoir', 'Autobiography']", "['Fiction', 'Southern', 'Chick Lit', 'Romance', 'Contemporary', 'Novels', 'Drama']", "['Romance', 'Fiction', 'Time Travel', 'Chick Lit', 'Contemporary Romance', 'Contemporary', 'Fantasy']", "['Horror', 'Classics', 'Gothic', 'Fiction', 'Short Stories', 'France', 'French Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Classics', 'Ireland', 'Autobiography', 'Biography Memoir']", "['Classics', 'Fiction', 'Fantasy', 'France', 'Gothic', 'French Literature', '18th Century']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Adventure', 'High Fantasy']", "['Politics', 'Nonfiction', 'Cultural', 'History', 'Political Science', 'Humor']", "['Politics', 'Nonfiction', 'Self Help', 'Political Science']", "['Short Stories', 'Fiction', 'Classics', 'Russia', 'Russian Literature', 'Literature', '19th Century']", "['Plays', 'Classics', 'Fiction', 'Drama', 'Historical Fiction', 'School', 'Theatre']", "['Nonfiction', 'Nature', 'Survival', 'Biography', 'Memoir', 'Adventure', 'Spirituality']", "['Music', 'Biography', 'Nonfiction', 'History', 'Biography Memoir', 'Pop Culture', 'Memoir']", "['Fiction', 'Fostering', 'Novels', 'Abuse', 'Dark', 'Mental Health', 'Social Work']", "['Thriller', 'Fiction', 'Mystery', 'Adventure', 'Mystery Thriller', 'Action', 'Historical Fiction']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Literature', 'Historical Fiction', 'Novels']", "['Novels', 'Literature', 'Fiction', 'Comedy', 'Short Stories', 'Religion', 'Iran']", "['Christian', 'Self Help', 'Nonfiction', 'Faith', 'Spirituality', 'Christianity', 'Religion']", "['Business', 'Leadership', 'Nonfiction', 'Management', 'Self Help', 'Education', 'Psychology']", "['Parenting', 'Nonfiction', 'Christian', 'Family', 'Self Help', 'Psychology', 'Christian Non Fiction']", "['Fiction', 'Historical Fiction', 'Westerns', 'Classics', 'Historical', 'Adventure', 'Novels']", "['Nature', 'Nonfiction', 'Philosophy', 'Outdoors', 'Memoir', 'Environment', 'Conservation']", "['Fiction', 'Historical Fiction', 'Asia', 'Historical', 'Literature', 'Classics', 'World War II']", "['Fiction', 'Historical Fiction', 'Ireland', 'Irish Literature', 'Classics', 'Historical', 'Novels']", "['Fiction', 'Morocco', 'Africa', 'France', 'Moroccan', 'African Literature', 'Novels']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Novels', 'Literature', 'Literary Fiction', 'Magical Realism']", "['Fantasy', 'Young Adult', 'Horror', 'Fiction', 'Magic', 'Paranormal', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Vampires']", "['Fiction', 'Russian Literature', 'Russia', 'Historical Fiction', 'Literature', 'Novels', 'Classics']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Mythology', 'War', 'Greek Mythology']", "['Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Civil War', 'Romance', 'War']", "['Fantasy', 'Fiction', 'Dragons', 'Science Fiction Fantasy', 'Epic Fantasy', 'High Fantasy', 'Magic']", "['Westerns', 'Fiction', 'Classics', 'Historical Fiction', 'Young Adult', 'Historical', 'Adventure']", "['Fiction', 'Westerns', 'Historical Fiction', 'Classics', 'Adventure', 'Historical', 'Audiobook']", "['Classics', 'Fiction', 'Historical Fiction', 'Coming Of Age', 'British Literature', 'Novels', '20th Century']", "['Fiction', 'Science Fiction', 'Mystery', 'Thriller', 'Fantasy', 'Time Travel', 'Science Fiction Fantasy']", "['Fiction', 'Classics', 'Historical Fiction', 'American']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Heroic Fantasy', 'High Fantasy', 'Adventure', 'Vampires']", "['Fantasy', 'Fiction', 'Classics', 'Gothic', 'Novels', 'Literature', 'Science Fiction Fantasy']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Middle Grade', 'Childrens', 'School']", "['Classics', 'Fiction', 'Literature', 'American', 'Novels', 'Historical Fiction', '20th Century']", "['Fiction', 'Classics', 'Philosophy', 'Christian', 'Religion', 'Fantasy', 'Christianity']", "['Fiction', 'Thriller', 'Mystery', 'Medical', 'Science Fiction', 'Horror', 'Suspense']", "['Short Stories', 'Fiction', 'Serbian Literature', '20th Century', 'Magical Realism', 'Literature', 'Classics']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Disability', 'Teen', 'Family', 'Contemporary']", "['Physics', 'Science', 'Nonfiction', 'Quantum Mechanics', 'Textbooks', 'Mathematics', 'Academic']", "['Christian', 'Christian Living', 'Theology', 'Nonfiction', 'Christianity', 'Faith', 'Spirituality']", "['Fiction', 'Classics', 'Novels', 'Literature', 'British Literature', 'Philosophy', 'English Literature']", "['Classics', 'Short Stories', 'Horror', 'Fiction', 'Gothic', 'School', 'Mystery']", "['History', 'Classics', 'Nonfiction', 'War', 'Ancient History', 'Politics', 'Greece']", "['Historical Fiction', 'Romance', 'Fiction', 'Historical', 'Historical Romance', 'Adult', 'British Literature']", "['Fiction', 'Politics', 'Historical Fiction', 'Novels', 'Contemporary', 'Humor', 'Literature']", "['China', 'Fiction', 'Romance', 'Asia', 'Chinese Literature', 'Contemporary', 'Asian Literature']", "['Short Stories', 'Fiction', 'Historical Fiction', 'War', 'Asia', 'Literature', 'Classics']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Romance', 'Science Fiction Fantasy', 'Magic']", "['Romance', 'Historical Fiction', 'Historical Romance', 'Historical', 'Fiction', 'Regency', 'Classics']", "['Romance', 'Japan', 'Fiction', 'Japanese Literature', 'Young Adult', 'Drama', 'Asian Literature']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens', 'Juvenile']", "['Psychoanalysis', 'Philosophy', 'Theory', 'Psychology', 'Nonfiction', 'History', 'Feminism']", "['Psychology', 'Nonfiction', 'Self Help', 'Communication', 'Business', 'Personal Development', 'Science']", "['Science Fiction', 'Fantasy', 'Fiction', 'Post Apocalyptic', 'Hugo Awards', 'Speculative Fiction', 'Science Fiction Fantasy']", "['Manga', 'Vampires', 'Romance', 'Fantasy', 'Graphic Novels', 'Young Adult', 'Paranormal']", "['Vampires', 'Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Vampires', 'Young Adult', 'Paranormal', 'Romance', 'Fantasy', 'Paranormal Romance', 'Supernatural']", "['Vampires', 'Young Adult', 'Romance', 'Paranormal', 'Fantasy', 'Paranormal Romance', 'Supernatural']", "['Vampires', 'Paranormal', 'Romance', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Fiction']", "['Fiction', 'France', 'Science Fiction', 'Literature', 'French Literature', 'Novels', 'Dystopia']", "['Fantasy', 'Witches', 'Fiction', 'Magic', 'Dragons', 'Epic Fantasy', 'High Fantasy']", "['Classics', 'Poetry', 'Horror', 'Fiction', 'Short Stories', 'Gothic', 'School']", "['Horror', 'Fiction', 'Mystery', 'Thriller', 'Fantasy']", "['Philosophy', 'Language', 'Linguistics', 'Nonfiction', 'Logic']", "['Africa', 'Fiction', 'Ghana', 'African Literature', 'Classics', 'Historical Fiction', 'Literature']", "['Short Stories', 'Africa', 'Fiction', 'Ghana', 'African Literature', 'Literature', 'Feminism']", "['Historical Fiction', 'Fiction', 'Historical', 'American History', 'Westerns', 'Adventure', 'Native Americans']", "['Science Fiction', 'Fiction', 'Hugo Awards', 'Fantasy', 'Alternate History', 'Science Fiction Fantasy', 'Canada']", "['Fiction', 'German Literature', 'Classics', 'Literature', 'Novels', 'Philosophy', 'Mystery']", "['Christian', 'Religion', 'Nonfiction', 'Christianity', 'Reference', 'Spirituality', 'Christian Non Fiction']", "['Fiction', 'Spirituality', 'Philosophy', 'Fantasy', 'Romance', 'Inspirational', 'Novels']", "['Fiction', 'Short Stories', 'Irish Literature', 'Ireland', 'Literature', 'Classics', '20th Century']", "['Fiction', 'France', 'Queer', 'French Literature', 'LGBT', 'Gay', 'Literature']", "['True Crime', 'Nonfiction', 'Crime', 'Audiobook', 'Mystery', 'Biography', 'Adult']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Novels', 'France', 'Audiobook']", "['Politics', 'Nonfiction', 'Humor', 'Philosophy', 'Audiobook', 'Comedy', 'Reference']", "['Politics', 'Nonfiction', 'History', 'Biography', 'Historical', 'Humor']", "['Politics', 'Nonfiction', 'Humor', 'Comedy']", "['Fiction', 'Westerns', 'Adventure', 'Historical Fiction', 'Thriller', 'Survival', 'Action']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fae', 'Fairies', 'Romance', 'Fiction']", "['Middle Grade', 'Fiction', 'Childrens', 'Realistic Fiction', 'Young Adult', 'Family', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Adventure', 'Military Fiction', 'Action']", "['Fiction', 'Historical Fiction', 'Classics', 'Southern', 'Historical', 'Race', 'Literary Fiction']", "['Gothic', 'Short Stories', 'Horror', 'Fiction', 'Classics', 'Anthologies', 'Fantasy']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Literary Fiction']", "['Fiction', 'Humor', 'Religion', 'Novels', 'Romance', 'Contemporary', 'British Literature']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'Literary Fiction', 'Novels', 'American']", "['Mystery', 'Historical Fiction', 'Historical', 'Romance', 'Historical Mystery', 'Fiction', 'Historical Romance']", "['Horror', 'Middle Grade', 'Young Adult', 'Fiction', 'Mystery', 'Childrens', 'Paranormal']", "['Fantasy', 'Fiction', 'Classics', 'Christian', 'Christian Fiction', 'Religion', 'Christianity']", "['Fiction', 'Books About Books', 'Mystery', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'New York']", "['Young Adult', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Mental Illness', 'Novels', 'Contemporary']", "['Fantasy', 'Middle Grade', 'Childrens', 'Fiction', 'Young Adult', 'Juvenile', 'Adventure']", "['Fantasy', 'Childrens', 'Fiction', 'Historical Fiction', 'Chapter Books', 'Adventure', 'Middle Grade']", "['Classics', '19th Century', 'Fiction', 'Horror', 'Gothic', 'Historical Fiction', 'Literature']", "['Poetry', 'Classics', 'Horror', 'Fiction', 'Gothic', 'Short Stories', 'Fantasy']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'American', '20th Century', 'The United States Of America']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Food', 'Culinary']", "['Fiction', 'Ireland', 'Music', 'Irish Literature', 'Humor', 'Contemporary', 'Comedy']", "['Fiction', 'Chick Lit', 'Historical Fiction', 'Contemporary', 'Romance', 'Novels', 'Adult']", "['Nonfiction', 'Travel', 'History', 'Biography', 'Memoir', 'Adventure', 'Asia']", "['Childrens']", "['Fiction', 'Historical Fiction', 'Contemporary', '20th Century', 'Novels', 'Southern', 'Classics']", "['Science Fiction', 'Fiction', 'LGBT', 'Queer', 'Lesbian', 'Cyberpunk', 'Speculative Fiction']", "['Health', 'Self Help', 'Nonfiction', 'Spirituality', 'Psychology', 'Personal Development', 'Reference']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Russia', 'Suspense', 'Spy Thriller']", "['Young Adult', 'Poetry', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Mental Health', 'Banned Books']", "['Young Adult', 'Poetry', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Mental Health', 'Teen']", "['Young Adult', 'Poetry', 'Fiction', 'Mental Health', 'Contemporary', 'Realistic Fiction', 'Mental Illness']", "['Young Adult', 'Poetry', 'Fiction', 'Contemporary', 'Romance', 'Realistic Fiction', 'Abuse']", "['Fiction', 'Historical Fiction', 'War', 'Novels', 'Literature', 'Literary Fiction', 'American']", "['Manga', 'Fantasy', 'Romance', 'Graphic Novels', 'Young Adult', 'Comics', 'Fiction']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Thriller', 'Murder Mystery', 'Detective']", "['Historical Fiction', 'Historical', 'Fiction', 'LGBT', 'Romance', 'Queer', 'M M Romance']", "['Science Fiction', 'Fantasy', 'Short Stories', 'Fiction', 'Science Fiction Fantasy', 'Collections', 'Horror']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction', 'Audiobook']", "['Theology', 'Religion', 'Race', 'Christianity', 'Nonfiction', 'Social Justice', 'Spirituality']", "['Fiction', 'Historical Fiction', 'Classics', 'Romance', 'Historical', 'African American', 'Novels']", "['Romance', 'Historical Romance', 'Historical', 'Medieval', 'Medieval Romance', 'Historical Fiction', 'Fiction']", "['LGBT', 'Young Adult', 'Romance', 'Fiction', 'Queer', 'Lesbian', 'Contemporary']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'African American', 'American', '20th Century']", "['Nonfiction', 'Memoir', 'Biography', 'History', 'Coming Of Age', 'Biography Memoir', 'High School']", "['Classics', 'Fiction', 'Childrens', 'Horses', 'Young Adult', 'Animals', 'Middle Grade']", "['Fantasy', 'Animals', 'Childrens', 'Middle Grade', 'Fiction', 'Young Adult', 'Cats']", "['Mystery', 'Humor', 'Fiction', 'Crime', 'Comedy', 'Amazon', 'Audiobook']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Historical Mystery', 'Crime', 'British Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Crime', 'Thriller', 'Classics']", "['Business', 'Biography', 'Nonfiction', 'Politics', 'Memoir', 'History', 'Self Help']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Poetry', 'War', 'Fantasy']", "['History', 'Nonfiction', 'Military History', 'Military Fiction', 'War', 'European History', 'World War I']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Sports', 'Teen', 'Death', 'Contemporary']", "['Fiction', 'Lds Fiction', 'Religion', 'Lds', 'Fantasy', 'Church', 'Suspense']", "['Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Science Fiction Fantasy', 'Speculative Fiction', 'Novella']", "['Crime']", "['Mystery', 'Thriller', 'Romantic Suspense', 'Fiction', 'Suspense', 'Romance', 'Mystery Thriller']", "['Young Adult', 'Spanish Literature', 'Short Stories', 'School', 'Middle Grade', 'Historical Fiction', 'Fiction']", "['Fiction', 'Coming Of Age', 'Southern', 'Young Adult', 'Contemporary', 'Adult Fiction', 'Literary Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Demons', 'Romance', 'Magic', 'Fiction']", "['Philosophy', 'Nonfiction', 'Japan', 'History', 'Martial Arts', 'Classics', 'Japanese Literature']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Drama', 'Novels']", "['Romance', 'Fiction', 'Chick Lit', 'Drama', 'Contemporary', 'Contemporary Romance', 'Adult']", "['Historical Fiction', 'Fiction', 'Mystery', 'Religion', 'Thriller', 'Historical', 'Mystery Thriller']", "['Nonfiction', 'Classics', 'History', 'Memoir', 'Biography', 'Childrens', 'Historical']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'India', 'Speculative Fiction', 'Fantasy', 'Dystopia']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Science Fiction Fantasy', 'Fantasy', 'Speculative Fiction', 'Brazil']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Audiobook', 'Thriller', 'Science Fiction Fantasy', 'Mystery']", "['Christian', 'Nonfiction', 'Classics', 'Christianity', 'Religion', 'Reference', 'Spirituality']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Nordic Noir', 'Mystery Thriller', 'Scandinavian Literature']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Detective', 'Mystery Thriller', 'British Literature']", "['Fiction', 'Southern', 'Short Stories', 'Literature', 'Literary Fiction', 'Novels']", "['Childrens', 'Fiction', 'Fantasy', 'Middle Grade', 'Horror', 'Mystery', 'Animals']", "['Childrens', 'Fiction', 'Animals', 'Middle Grade', 'Mystery', 'Humor', 'Horror']", "['Fiction', 'German Literature', 'Germany', 'Historical Fiction', 'School', 'Contemporary', 'Classics']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'Suspense', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Fantasy', 'Paranormal']", "['Historical Fiction', 'Fiction', 'Historical', '19th Century', 'Mystery', 'Southern', 'Womens']", "['Manga', 'Romance', 'Graphic Novels', 'Comics', 'Shojo', 'Young Adult', 'Genderqueer']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fae', 'Fairies', 'Romance', 'Paranormal']", "['Fiction', 'Travel', 'Africa', 'Morocco', 'Contemporary', 'Novels', 'Family']", "['Humor', 'Childrens', 'Fiction', 'Realistic Fiction', 'Middle Grade', 'Young Adult', 'Novels']", "['Vampires', 'Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Chick Lit', 'Fiction']", "['Fantasy', 'Young Adult', 'Mystery', 'Fiction', 'Urban Fantasy', 'Middle Grade', 'Magic']", "['Fiction', 'Music', 'Contemporary', 'Humor', 'Romance', 'Novels', 'British Literature']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Vampires', 'Romance', 'Werewolves', 'Paranormal Romance']", "['Fantasy', 'Romance', 'Fiction', 'Magic', 'Science Fiction Fantasy', 'High Fantasy', 'Paranormal']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Anthologies', 'Werewolves']", "['Philosophy', 'Science', 'Nonfiction', 'Design', 'Mathematics', 'Physics', 'Psychology']", "['History', 'Nonfiction', 'Politics', 'Classics', 'Philosophy', 'American History', 'Reference']", "['Science Fiction', 'Fiction', 'Feminism', 'Dystopia', 'Speculative Fiction', 'Fantasy', 'Science Fiction Fantasy']", "['Nonfiction', 'Picture Books', 'Sports', 'History', 'Baseball', 'Childrens', 'African American']", "['Short Stories', 'Fiction', 'Horror', 'Feminism', 'Gothic', 'Classics', 'Mental Health']", "['Music', 'Occult', 'Nonfiction', 'History', 'Religion', 'Cults', 'Satanism']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Historical', 'Childrens', 'Juvenile', 'Adventure']", "['Linguistics', 'Philosophy', 'Nonfiction', 'Language', 'Theory', 'France', 'Science']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Steampunk', 'Fiction', 'Dystopia', 'Adventure']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction', 'Literature']", "['Mystery', 'Historical Fiction', 'Historical', 'Historical Mystery', 'Fiction', 'Romance', 'Victorian']", "['Music', 'Nonfiction', 'History', 'Biography', 'Art', 'Reference', 'Pop Culture']", "['Fiction', 'India', 'Contemporary', 'Romance', 'Novels', 'Audiobook', 'Adult Fiction']", "['Fiction', 'Crime', 'Mystery', 'Thriller', 'Mystery Thriller', 'Novels', 'Noir']", "['Nonfiction', 'Memoir', 'Biography', 'African American', 'Autobiography', 'Classics', 'Race']", "['Fiction', 'Humor', 'Comedy', 'Chick Lit', 'Novels', 'Contemporary', 'British Literature']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Ghosts', 'Fiction', 'Supernatural']", "['Christian Fiction', 'Romance', 'Christian', 'Fiction', 'Christian Romance', 'Contemporary', 'Adult']", "['Nonfiction', 'Science', 'Psychology', 'Education', 'Neuroscience', 'Language', 'Books About Books']", "['Fiction', 'Contemporary', 'Thriller', 'Literary Fiction', 'Literature', 'Horror', 'Erotica']", "['Memoir', 'Nonfiction', 'LGBT', 'Biography', 'Gay', 'Queer', 'Biography Memoir']", "['Christian Fiction', 'Fiction', 'Christian', 'Young Adult', 'Fantasy', 'Spirituality', 'Christian Fantasy']", "['Fiction', 'Christian Fiction', 'Christian', 'China', 'Faith', 'Christianity', 'Novels']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Canada', 'Arthurian']", "['Nonfiction', 'Greece', 'History', 'Biography', 'Memoir', 'War', 'Biography Memoir']", "['Religion', 'Philosophy', 'Spirituality', 'Classics', 'Nonfiction', 'Hinduism', 'India']", "['Fiction', 'Historical Fiction', 'Romance', 'Contemporary', 'Historical', 'Roman', 'Drama']", "['Nonfiction', 'Canada', 'Nature', 'Animals', 'Classics', 'Environment', 'Science']", "['Christian', 'Young Adult', 'Christian Fiction', 'Romance', 'Fiction', 'Contemporary', 'Teen']", "['Childrens', 'Fiction', 'Animals', 'Mystery', 'Horror', 'Middle Grade', 'Fantasy']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', 'School', '19th Century']", "['Fiction', 'Historical Fiction', 'Classics', 'Westerns', 'Literature', 'Literary Fiction', 'Novels']", "['Childrens', 'Humor', 'Fiction', 'Realistic Fiction', 'Young Adult', 'Chapter Books', 'Sports']", "['Fiction', 'Classics', 'Novels', 'Thriller', 'Mystery', 'British Literature', 'Literature']", "['Fiction', 'Scotland', 'Historical Fiction', 'Classics', 'Literature', 'Historical', 'Novels']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'American', 'Americana', 'The United States Of America']", "['Fiction', 'Crime', 'True Crime', 'Thriller', 'Mystery', 'Abuse', 'Mystery Thriller']", "['Poetry', 'Literature', 'American', 'Literary Fiction', 'Adult', 'Contemporary']", "['Horror', 'Fiction', 'Paranormal', 'Thriller', 'Audiobook', 'Classics', 'Supernatural']", "['Short Stories', 'Japan', 'Fiction', 'Japanese Literature', 'Horror', 'Asia', 'Asian Literature']", "['Travel', 'Nonfiction', 'History', 'Memoir', 'Biography', 'Walking', 'Romania']", "['Science Fiction', 'Fiction', 'Space Opera', 'Westerns', 'Space', 'Adventure', 'Fantasy']", "['Historical Fiction', 'Young Adult', 'Retellings', 'Romance', 'Fiction', 'Historical', 'Fantasy']", "['Picture Books', 'Childrens', 'Fiction', 'Poetry', 'Classics', 'Storytime', 'Kids']", "['Fiction', 'Contemporary', 'Roman', 'Novels', 'The United States Of America', 'Dystopia', 'Art']", "['Fiction', 'Horror', 'Southern Gothic', 'Novels', 'Literature', 'American', 'Literary Fiction']", "['Poetry', 'Classics', 'Fiction', 'School', 'Literature', 'American', 'Read For School']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Action', 'Mystery Thriller', 'Science Fiction']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Mystery', 'Science Fiction', 'Mystery Thriller']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Science Fiction', 'Mystery', 'Mystery Thriller']", "['Thriller', 'Adventure', 'Fiction', 'Mystery', 'Action', 'Science Fiction', 'Mystery Thriller']", "['Science', 'Nonfiction', 'Biology', 'Essays', 'Nature', 'Philosophy', 'Medicine']", "['Fiction', 'Humor', 'Mystery', 'Crime', 'Comedy', 'Audiobook', 'Thriller']", "['Historical Fiction', 'Fiction', 'Adventure', 'Childrens', 'Young Adult', 'Middle Grade', 'Historical']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'Short Stories', '20th Century']", "['Italian Literature', 'Fiction', 'Crime', 'Italy', 'Classics', 'School', 'Mystery']", "['Nonfiction', 'Biography', 'Memoir', 'History', 'Adventure', 'Romance', 'Historical']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Time Travel', 'Fiction', 'Adventure', 'Romance']", "['Fantasy', 'Young Adult', 'Fiction', 'Dystopia', 'Childrens', 'Adventure', 'Young Adult Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Historical Fiction', 'Middle Grade', 'Childrens']", "['Young Adult', 'Romance', 'Teen', 'Fiction', 'Chick Lit', 'Contemporary', 'Realistic Fiction']", "['Historical Fiction', 'Young Adult', 'Adventure', 'Pirates', 'Fiction', 'Historical', 'Audiobook']", "['Historical Fiction', 'Young Adult', 'Adventure', 'Fiction', 'Pirates', 'Historical', 'Teen']", "['Childrens', 'Fiction', 'Chapter Books', 'Humor', 'Realistic Fiction', 'Juvenile', 'Contemporary']", "['Young Adult', 'Fiction', 'Science Fiction', 'Mystery', 'Adventure', 'Teen', 'Fantasy']", "['Fantasy', 'Horror', 'Fiction', 'Mystery', 'Middle Grade', 'Young Adult', 'Childrens']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Magic', 'Young Adult', 'Classics']", "['Science Fiction', 'Space Opera', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook', 'Adventure']", "['Fiction', 'Chick Lit', 'Romance', 'Young Adult', 'Contemporary', 'Adult', 'Adult Fiction']", "['Historical Fiction', 'Egypt', 'Fiction', 'Historical', 'Romance', 'Ancient', 'Canada']", "['History', 'Nonfiction', 'Education', 'Politics', 'American History', 'Historical', 'Teaching']", "['Fiction', 'Canada', 'Historical Fiction', 'Canadian Literature', 'Literary Fiction', 'Literature', 'Novels']", "['Fantasy', 'Animals', 'Middle Grade', 'Childrens', 'Fiction', 'Young Adult', 'Adventure']", "['Short Stories', 'Horror', 'Fiction', 'Gothic', 'Classics', 'Victorian', 'Literature']", "['Fiction', 'Science Fiction', 'Classics', 'Literature', 'Politics', 'Utopia', 'Time Travel']", "['Romance', 'Fiction', 'Chick Lit', 'Relationships', 'Religion', 'Ireland', 'Adult']", "['Childrens', 'Fiction', 'Mystery', 'Classics', 'Middle Grade', 'Young Adult', 'Chapter Books']", "['Classics', 'Plays', 'Mythology', 'Fiction', 'Theatre', 'Poetry', 'Literature']", "['History', 'Politics', 'Russia', 'Nonfiction', 'Russian Revolution', 'Soviet History']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Steampunk', 'Graphic Novels Comics', 'Science Fiction']", "['Fiction', 'Contemporary', 'Magical Realism', 'Literary Fiction', 'Novels', 'Historical Fiction', 'Literature']", "['Plays', 'Drama', 'Theatre', 'Classics', 'Fiction', 'LGBT', 'Gay']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Fiction', 'Mystery', 'Supernatural']", "['Nonfiction', 'Biography', 'China', 'Memoir', 'History', 'Autobiography', 'Asia']", "['Classics', 'Fiction', 'Romance', '19th Century', 'Victorian', 'Historical Fiction', 'Literature']", "['Philosophy', 'Fiction', 'Classics', 'France', 'Literature', 'French Literature', 'Novels']", "['Fiction', 'Crime', 'Mystery', 'Noir', 'Thriller', 'Horror', 'Classics']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Middle Grade', 'Fantasy', 'Childrens']", "['Economics', 'Politics', 'Philosophy', 'Nonfiction', 'History', 'Classics', 'Political Science']", "['History', 'Nonfiction', 'Ireland', 'Irish Literature', 'Biography', 'Memoir', 'War']", "['Historical Fiction', 'Time Travel', 'Fiction', 'Historical', 'Romance', 'Fantasy', 'Historical Romance']", "['Fiction', 'Historical Fiction', 'War', 'World War II', 'Classics', 'Military Fiction', 'German Literature']", "['Buddhism', 'Nonfiction', 'Spirituality', 'Religion', 'Philosophy', 'Self Help']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Audiobook', 'Classics']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Mystery', 'Suspense', 'Espionage']", "['Spirituality', 'Philosophy', 'Nonfiction', 'Religion', 'Buddhism', 'Self Help', 'Hinduism']", "['Classics', 'Victorian', 'Literature']", "['Parenting', 'Nonfiction', 'Self Help', 'Family', 'Childrens', 'Reference', 'Health']", "['History', 'Nonfiction', 'Biography', 'Military Fiction', 'War', 'World War II', 'Military History']", "['Novels', 'Fiction', 'Iran', 'Literature', 'Drama', 'Roman', 'Romance']", "['Historical Fiction', 'Ireland', 'Fiction', 'Irish Literature', 'Historical', 'War', 'Politics']", "['Picture Books', 'Childrens', 'Graphic Novels', 'Fiction', 'Art', 'Mental Health', 'Fantasy']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Chick Lit', 'Realistic Fiction', 'Humor']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Chick Lit', 'Romance', 'Teen']", "['Horror', 'Fiction', 'Gothic', 'Paranormal', 'Southern Gothic', 'Fantasy', 'Audiobook']", "['Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Urban Fantasy', 'Fiction', 'Mystery']", "['Fiction', 'German Literature', 'Germany', 'Historical Fiction', 'World War II', 'Classics', 'Historical']", "['Nonfiction', 'Classics', 'History', 'Philosophy', 'Memoir', 'Poetry']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dark Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Epic']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Classics', 'Family', 'Love']", "['Conspiracy Theories', 'History', 'Nonfiction', 'Politics', 'Occult', 'Science', 'Mystery']", "['Nonfiction', 'Memoir', 'Short Stories', 'Essays', 'Biography', 'LGBT', 'Queer']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'Media Tie In']", "['Cyberpunk', 'Science Fiction', 'Fiction', 'Short Stories', 'Anthologies', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Biography', 'Christianity', 'Religion', 'Spirituality', 'Nonfiction', 'Christian', 'History']", "['Fiction', 'Contemporary', 'British Literature', 'Novels', 'Coming Of Age', 'LGBT', '20th Century']", "['Young Adult', 'Fantasy', 'Paranormal', 'Witches', 'Magic', 'Romance', 'Fiction']", "['Economics', 'Nonfiction', 'Politics', 'Philosophy', 'Business', 'Finance', 'Classics']", "['Nonfiction', 'History', 'Memoir', 'Politics', 'Feminism', 'Biography', 'Read For School']", "['Poetry', 'Classics', 'Spirituality', 'Philosophy', 'Nonfiction', 'Islam', 'Literature']", "['Fantasy', 'Science Fiction', 'Fiction', 'Dark Fantasy', 'Epic Fantasy', 'Dystopia', 'Epic']", "['Fiction', 'Short Stories', 'Classics', 'American', 'Novels', 'The United States Of America', 'Literature']", "['Poetry', 'Feminism', 'Essays', 'Nonfiction', 'LGBT', 'Philosophy', 'Queer']", "['Picture Books', 'Childrens', 'Nonfiction', 'Cultural', 'Geography', 'History', 'Family']", "['Nonfiction', 'Science', 'Reference', 'Childrens', 'Picture Books', 'Technology', 'Engineering']", "['Fantasy', 'Dragons', 'Fiction', 'High Fantasy', 'Science Fiction', 'Humor', 'Magic']", "['Poetry', 'Queer']", "['Horror', 'Short Stories', 'Fantasy', 'Mystery', 'Fiction', 'Weird Fiction', 'Classics']", "['Religion', 'Lds', 'Nonfiction', 'Church', 'Spirituality', 'Christian', 'Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Urban Fantasy', 'Fae', 'Fairies']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', 'Poetry', 'Literature']", "['Comics', 'Graphic Novels', 'Marvel', 'X Men', 'Superheroes', 'Comic Book', 'Fiction']", "['History', 'Nonfiction', 'Military Fiction', 'War', 'Military History', 'Business', 'Politics']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Adult', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Classics', 'Southern', 'Historical', 'Adult Fiction', 'Coming Of Age']", "['Reference', 'Nonfiction', 'Language', 'Writing', 'Linguistics', 'Teaching', 'Academic']", "['Crime', 'Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Detective', 'Noir']", "['Crime', 'Fiction', 'Mystery', 'Noir', 'Thriller', 'Mystery Thriller', 'Dc Comics']", "['Young Adult', 'Fantasy', 'Dystopia', 'Science Fiction', 'Fiction', 'Middle Grade', 'Childrens']", "['Nonfiction', 'Politics', 'Islam', 'Terrorism', 'Religion', 'History']", "['History', 'Nonfiction', 'Politics', 'World History', 'Economics', '20th Century', 'European History']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Historical', 'Adventure', 'Childrens']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Thriller', 'Mystery Thriller', 'Detective']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Realistic Fiction', 'Storytime', 'African American']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Family', 'Love', 'Realistic Fiction']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Classics', 'Middle Grade', 'Childrens', 'School']", "['Horror', 'Fiction', 'Short Stories', 'Weird Fiction', 'Fantasy', 'Gothic', 'Anthologies']", "['Fiction', 'Humor', 'Literature', 'Comedy', 'Novels', 'Classics', 'American']", "['Fiction', 'Russia', 'Science Fiction', 'Dystopia', 'Russian Literature', 'Post Apocalyptic', 'Fantasy']", "['Classics', 'Poetry', 'Fiction', 'Literature', 'Reference', 'Anthologies', 'Textbooks']", "['Romance', 'Gothic', 'Mystery', 'Fiction', 'Historical Fiction', 'Historical Romance', 'Gothic Romance']", "['Romance', 'Fiction', 'Historical Fiction', 'Historical', 'Regency']", "['Historical Fiction', 'Historical Romance', 'Regency', 'Historical', 'Fiction', 'Classics', 'Regency Romance']", "['Young Adult', 'Mystery', 'Fiction', 'Teen', 'Realistic Fiction', 'Suspense', 'Thriller']", "['Fantasy', 'Science Fiction', 'Fiction', 'Dark Fantasy', 'Epic Fantasy', 'Adventure', 'Dystopia']", "['Fiction', 'Canada', 'Historical Fiction', 'Jewish', 'Novels', 'Canadian Literature', 'Literary Fiction']", "['Fantasy', 'Dragons', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Magic']", "['Fantasy', 'Dragons', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Magic']", "['Plays', 'Drama', 'Fiction', 'LGBT', 'Theatre', 'Classics', 'Queer']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Vampires', 'Fantasy', 'Dark', 'Fiction']", "['Poetry', 'Classics', 'Nonfiction', 'Biography', 'Memoir', 'British Literature', '20th Century']", "['Baseball', 'Sports', 'Nonfiction', 'History']", "['Thriller', 'Fiction', 'Suspense', 'Crime', 'Mystery', 'Mystery Thriller', 'Media Tie In']", "['History', 'Ireland', 'Nonfiction', 'Politics', 'Irish Literature', 'Military Fiction', 'European History']", "['Historical Fiction', 'Fiction', 'Mystery', 'Canada', 'Historical', 'Crime', 'Thriller']", "['Nonfiction', 'Food', 'Health', 'Science', 'Nutrition', 'Audiobook', 'Cooking']", "['History', 'Nonfiction', 'Holocaust', 'War', 'World War II', 'Memoir', 'Biography']", "['Young Adult', 'LGBT', 'Fiction', 'Queer', 'Contemporary', 'Realistic Fiction', 'Teen']", "['Nonfiction', 'Memoir', 'Biography', 'Womens', 'Travel', 'Biography Memoir', 'Autobiography']", "['Fantasy', 'Classics', 'Fiction', 'Historical Fiction', 'Arthurian', 'Childrens', 'Young Adult']", "['History', 'Nonfiction', 'World History', 'Philosophy', 'Politics', 'Sociology', 'European History']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Teen', 'High School']", "['Horror', 'Fiction', 'Mystery', 'Paranormal', 'Supernatural', 'Thriller', 'Fantasy']", "['Fiction', 'Science Fiction', 'Alternate History', 'Historical Fiction', 'Time Travel', 'Humor', 'Fantasy']", "['Fantasy', 'Fiction', 'Science Fiction', 'Magic', 'Science Fiction Fantasy', 'Humor', 'Dark Fantasy']", "['Science Fiction', 'Fantasy', 'Fiction', 'Space Opera', 'Adventure', 'Science Fiction Fantasy', 'Magic']", "['Thriller', 'Mystery', 'Crime', 'Suspense', 'Fiction', 'Mystery Thriller', 'Detective']", "['Classics', 'Plays', 'School', 'German Literature', 'Drama', 'Fiction', 'Theatre']", "['Fiction', 'Historical Fiction', 'British Literature', 'Contemporary', 'Novels', 'Literary Fiction', 'Historical']", "['Middle Grade', 'Young Adult', 'Fiction', 'Realistic Fiction', 'Contemporary', 'Books About Books', 'Childrens']", "['Fiction', 'Historical Fiction', 'Holocaust', 'Hungary', 'Nobel Prize', 'Hungarian Literature', 'War']", "['Fiction', 'Nobel Prize', 'Hungarian Literature', 'Hungary', 'Holocaust', 'Novels', 'Literature']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Middle Grade', 'Contemporary', 'Family', 'School']", "['Biography', 'Nonfiction', 'History', 'Africa', 'Memoir', 'Autobiography', 'Politics']", "['Fiction', 'Thriller', 'Military Fiction', 'War', 'Action', 'Espionage', 'Suspense']", "['Biography', 'Nonfiction', 'Autobiography']", "['History', 'American History', 'Nonfiction']", "['Fiction', 'Romance', 'Novels']", "['History', 'Nonfiction', 'World War II', 'Germany', 'War', 'Politics', 'European History']", "['Fiction', 'Australia', 'Romance', 'Contemporary', 'Literature', 'Literary Fiction', 'Historical Fiction']", "['Nonfiction', 'Spirituality', 'Health', 'Self Help', 'Philosophy', 'Audiobook', 'Personal Development']", "['Spirituality', 'Nonfiction', 'Self Help', 'Philosophy', 'Psychology', 'Personal Development', 'Leadership']", "['Spirituality', 'Buddhism', 'Fiction', 'Religion', 'Philosophy', 'Historical Fiction', 'Self Help']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Adventure', 'Childrens', 'Audiobook']", "['Childrens', 'Adventure', 'Fiction', 'Mystery', 'Young Adult', 'Classics', 'Middle Grade']", "['Poetry', 'American']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Suspense', 'Romance', 'Mystery Thriller']", "['Fantasy', 'Fiction', 'Humor', 'Magic', 'Science Fiction Fantasy', 'High Fantasy', 'Science Fiction']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'War']", "['Philosophy', 'Nonfiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'British Literature', 'Classics', '12th Century']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Crime', 'Medieval', 'Historical Mystery']", "['Historical Fiction', 'Fiction', 'Art', 'Classics', 'Italy', 'Historical', 'Art History']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Magical Realism', 'Classics', 'Literature', 'Serbian Literature']", "['Fiction', 'Historical Fiction', 'Historical', 'France', 'Romance', 'Magical Realism', 'Mystery']", "['Historical Fiction', 'Fiction', 'Art', 'Historical', 'Short Stories', 'Art History', 'Book Club']", "['Young Adult', 'Romance', 'Angels', 'Fantasy', 'Paranormal', 'Mystery', 'Fiction']", "['Lds Fiction', 'Mystery', 'Romance', 'Lds', 'Suspense', 'Mystery Thriller', 'Fiction']", "['Historical Fiction', 'Childrens', 'Fiction', 'Classics', 'Historical', 'Middle Grade', 'Juvenile']", "['Fiction', 'Feminism', 'Novels', 'Literature', 'Classics', '20th Century', 'Contemporary']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Mythology', 'Science Fiction', 'Historical Fantasy']", "['Nonfiction', 'Politics', 'Memoir', 'Sociology', 'Social Justice', 'History', 'Short Stories']", "['Nonfiction', 'Sexuality', 'Psychology', 'Parenting', 'Sociology', 'Politics', 'Feminism']", "['Short Stories', 'Fiction', 'Literature', 'Literary Fiction', 'Classics', 'American', 'Anthologies']", "['Religion', 'Nonfiction', 'Lds', 'Church', 'Spirituality', 'Classics', 'History']", "['Christian Fiction', 'Fiction', 'Christian', 'Mystery', 'Legal Thriller', 'Thriller', 'Suspense']", "['Theology', 'Christian', 'Christianity', 'Religion', 'Nonfiction', 'Philosophy', 'Spirituality']", "['Historical Fiction', 'Christian Fiction', 'Romance', 'Christian', 'Historical', 'Fiction', 'Historical Romance']", "['Mythology', 'Religion', 'Nonfiction', 'Philosophy', 'Psychology', 'Spirituality', 'History']", "['Classics', 'Fiction', 'Literature', '19th Century', 'Historical Fiction', 'Victorian', 'British Literature']", "['Classics', 'Fiction', 'Adventure', 'Historical Fiction', 'Scotland', 'Young Adult', 'Literature']", "['Science Fiction', 'Fantasy', 'Fiction', 'Alternate History', 'Dinosaurs', 'Science Fiction Fantasy', 'Adventure']", "['Philosophy', 'Economics', 'Politics', 'Nonfiction', 'History', 'Theory', 'Classics']", "['Memoir', 'Nonfiction', 'Politics', 'Biography', 'War']", "['Historical Fiction', 'Fiction', 'Westerns', 'Adventure', 'Historical', 'Classics', 'Fantasy']", "['Fantasy', 'Historical Fiction', 'Young Adult', 'Adventure', 'Fiction', 'Middle Grade', 'Retellings']", "['Fiction', 'France', 'Queer', 'Literature', 'LGBT', 'Classics', 'French Literature']", "['Fiction', 'Classics', 'Young Adult', 'Animals', 'British Literature', 'Coming Of Age', 'Modern Classics']", "['Nonfiction', 'Childrens', 'Japan', 'Education', 'Biography', 'Japanese Literature', 'Memoir']", "['Fiction', 'Mystery', 'Crime', 'New York', 'Novels', 'Mystery Thriller', 'Literary Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Adventure', 'Military Fiction', 'India']", "['Politics', 'Nonfiction', 'Christian', 'American']", "['Sports', 'Baseball', 'Biography', 'Nonfiction', 'Memoir', 'Autobiography']", "['Classics', 'Fiction', 'Russian Literature', 'Russia', 'Novels', 'Literature', '19th Century']", "['Classics', 'Fiction', 'Short Stories', 'Russian Literature', 'Russia', 'Philosophy', 'Literature']", "['Fiction', 'Historical Fiction', 'Ireland', 'Espionage', 'Irish Literature', 'Novels', 'Literary Fiction']", "['Fiction', 'Classics', 'Coming Of Age', 'Southern', 'Novels', 'Young Adult', 'Literary Fiction']", "['Manga', 'Fantasy', 'Graphic Novels', 'Romance', 'Comics', 'Adventure', 'Historical Fiction']", "['Fiction', 'Classics', 'Literature', 'Novels', 'American', 'The United States Of America', '20th Century']", "['Humor', 'Biography', 'Nonfiction', 'History', 'War', 'Autobiography', 'Comedy']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'War', 'Roman', 'Italy']", "['History', 'Nonfiction', 'Science', 'Anthropology', 'Environment', 'Philosophy', 'Economics']", "['Science Fiction', 'Fiction', 'Russia', 'Classics', 'Russian Literature', 'Fantasy', 'Novels']", "['Classics', 'Fiction', 'Literature', 'Historical Fiction', 'American', 'Novels', 'Banned Books']", "['Travel', 'Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'Adventure', 'International']", "['Thriller', 'Mystery', 'Fiction', 'Crime', 'German Literature', 'Mystery Thriller', 'Audiobook']", "['Travel', 'Nonfiction', 'Memoir', 'France', 'Biography', 'Biography Memoir', 'Autobiography']", "['Humor', 'Nonfiction', 'Psychology']", "['Mystery', 'Young Adult', 'Horror', 'Fiction', 'Thriller', 'Suspense', 'Teen']", "['Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Middle Grade', 'Childrens']", "['Philosophy', 'Nonfiction', 'History', 'Theology', 'Religion', 'Politics', 'Classics']", "['Fiction', 'Mystery', 'Suspense', 'Contemporary', 'Audiobook', 'Drama', 'Book Club']", "['Fiction', 'Classics', 'Psychology', 'Literature', 'Novels', 'Mental Health', 'School']", "['Fantasy', 'Young Adult', 'Dystopia', 'Science Fiction', 'Steampunk', 'Fiction', 'Adventure']", "['Nonfiction', 'History', 'Historical', 'Science', 'Canada', 'Adventure', 'Travel']", "['Fiction', 'Classics', 'Irish Literature', 'Ireland', 'Literature', 'Novels', '20th Century']", "['Fantasy', 'M M Romance', 'LGBT', 'Fiction', 'Queer', 'Romance', 'Wolves']", "['Fiction', 'Literature', 'German Literature', 'Philosophy', 'Novels', 'Classics', 'Czech Literature']", "['Science Fiction', 'Fiction', 'Classics', 'Cyberpunk', 'Science Fiction Fantasy', 'Space Opera', 'Fantasy']", "['Science Fiction', 'Fiction', 'Fantasy', 'Religion', 'Science Fiction Fantasy', 'Speculative Fiction', 'Aliens']", "['Travel', 'Nonfiction', 'Memoir', 'Adventure', 'Biography', 'Humor', 'History']", "['Classics', 'Fiction', 'Brazil', 'Literature', 'Romance', 'Portuguese Literature', 'Drama']", "['Plays', 'Drama', 'Fiction', 'Classics', 'Theatre', 'School', 'Psychology']", "['Plays', 'Drama', 'Theatre', 'Fiction', 'Classics', '20th Century', 'British Literature']", "['Fiction', 'Novels', 'Latin American Literature', 'Latin American', 'Spanish Literature', 'Magical Realism', 'Literature']", "['Science Fiction', 'Fiction', 'Thriller', 'Espionage', 'Science Fiction Fantasy', 'Novels', 'Aliens']", "['Fiction', 'Historical Fiction', 'Fantasy', 'British Literature', 'Literary Fiction', 'Novels', 'Literature']", "['Crime', 'Mystery', 'Fiction', 'Scotland', 'Detective', 'Thriller', 'Mystery Thriller']", "['Romance', 'Christian Fiction', 'Fiction', 'Christian', 'Historical Fiction', 'Christian Romance', 'Classics']", "['Science Fiction', 'Fiction', 'Space Opera', 'Aliens', 'Science Fiction Fantasy', 'Mystery', 'Space']", "['Young Adult', 'Fiction', 'Historical Fiction', 'Classics', 'Childrens', 'Middle Grade', 'Realistic Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'Science Fiction', 'Adventure', 'High Fantasy']", "['19th Century', 'Historical Fiction', 'Gothic', 'Literature', 'Classic Literature', 'Historical', 'Feminism']", "['Science Fiction', 'Fiction', 'Time Travel', 'Audiobook', 'Fantasy', 'Science Fiction Fantasy', 'Thriller']", "['Young Adult', 'Fiction', 'Queer', 'LGBT', 'Biography Memoir', 'Coming Of Age', 'Teen']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'War', 'Science Fiction Fantasy', 'Epic']", "['Fiction', 'Literature', 'Classics', 'Novels', 'Ireland', 'Irish Literature', '20th Century']", "['Romance', 'Romantic Suspense', 'Mystery', 'Contemporary Romance', 'Contemporary', 'Suspense', 'Fiction']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Adventure', 'Middle Grade', 'Horses']", "['Philosophy', 'Psychology', 'Nonfiction', 'Politics', 'Classics', 'Psychoanalysis', 'Essays']", "['Fiction', 'Historical Fiction', 'Classics', 'Feminism', 'Historical', 'Book Club', 'Novels']", "['Nonfiction', 'Biography', 'Sports', 'Autobiography', 'Memoir', 'Biography Memoir', 'Humor']", "['Feminism', 'Nonfiction', 'Politics', 'History', 'Womens', 'Gender Studies', 'Sociology']", "['Fiction', 'Classics', '19th Century', 'Victorian', 'Romance', 'Literature', 'British Literature']", "['Thriller', 'Fiction', 'Espionage', 'Mystery', 'Mystery Thriller', 'Suspense', 'Spy Thriller']", "['Fiction', 'Spanish Literature', 'LGBT', 'Latin American', 'Literature', 'Latin American Literature', 'Crime']", "['Science Fiction', 'Fiction', 'Time Travel', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Romance']", "['Nonfiction', 'Memoir', 'Music', 'Biography', 'Art', 'Autobiography', 'Biography Memoir']", "['Horror', 'Fiction', 'Novels', 'American', 'Science Fiction', 'Dark', 'Mental Health']", "['Fiction', 'Classics', 'Literature', 'Nobel Prize', 'Novels', 'Scandinavian Literature', '20th Century']", "['Graphic Novels', 'Fantasy', 'Comics', 'Fiction', 'Horror', 'Graphic Novels Comics', 'Westerns']", "['Childrens', 'Picture Books', 'Fiction', 'Animals', 'Fantasy', 'Classics', 'Comics']", "['Science Fiction', 'Young Adult', 'Fiction', 'Childrens', 'Fantasy', 'Aliens', 'Middle Grade']", "['Science Fiction', 'Young Adult', 'Fiction', 'Childrens', 'Fantasy', 'Middle Grade', 'Aliens']", "['Wine', 'Reference', 'Nonfiction', 'Food', 'Food and Drink', 'Cookbooks', 'Food and Wine']", "['Fiction', 'Classics', 'Historical Fiction', 'Christian', 'Christian Fiction', 'Romance', 'Novels']", "['Self Help', 'Spirituality', 'Nonfiction', 'Personal Development', 'Psychology', 'Philosophy', 'New Age']", "['Animals', 'Fiction', 'Dogs', 'Middle Grade', 'Young Adult', 'Childrens', 'Realistic Fiction']", "['Fiction', 'Australia', 'Historical Fiction', 'Classics', 'Literature', 'Literary Fiction', 'Contemporary']", "['Fiction', 'Australia', 'Ireland', 'Mystery', 'Contemporary', 'Novels', 'Literary Fiction']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'British Literature', 'Coming Of Age', 'World War I']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Teen', 'Realistic Fiction', 'Chick Lit']", "['Spirituality', 'Nonfiction', 'Philosophy', 'Religion', 'Poetry', 'Self Help', 'Theology']", "['Religion', 'Philosophy', 'Judaism', 'Theology', 'Jewish', 'Nonfiction', 'Judaica']", "['Horror', 'Short Stories', 'Fiction', 'Mystery', 'Classics', 'Fantasy', 'Ghosts']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Urban Fantasy', 'Fiction']", "['History', 'Nonfiction', 'Africa', 'Biography', 'Politics', 'Historical', 'World History']", "['Young Adult', 'LGBT', 'Fiction', 'Mystery', 'Contemporary', 'Queer', 'Realistic Fiction']", "['Historical Fiction', 'Fiction', 'Australia', 'Historical', 'Book Club', 'Literature', 'Literary Fiction']", "['Psychology', 'Nonfiction', 'Self Help', 'Spirituality', 'Philosophy', 'Personal Development', 'Religion']", "['Fiction', 'Coming Of Age', 'Contemporary', 'Novels', 'Book Club', 'Historical Fiction', 'Literary Fiction']", "['Vampires', 'Horror', 'Fiction', 'Urban Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Westerns', 'Book Club', 'Adult Fiction']", "['Young Adult', 'Historical Fiction', 'Fiction', 'Historical', 'Australia', 'Coming Of Age', 'Magical Realism']", "['Fantasy', 'Childrens', 'Classics', 'Fiction', 'Middle Grade', 'Young Adult', 'Adventure']", "['Science Fiction', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Fantasy', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Crime', 'Mystery', 'Suspense', 'Audiobook']", "['Memoir', 'Nonfiction', 'Biography', 'Parenting', 'Spirituality', 'Autobiography', 'Book Club']", "['Classics', 'Fiction', 'Historical Fiction', 'Race', 'African American', 'Audiobook', 'School']", "['Historical Romance', 'Romance', 'Historical', 'Regency', 'Historical Fiction', 'Fiction', 'Adult']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Fiction', 'Dystopia', 'Steampunk', 'Adventure']", "['Fiction', 'Literature', 'Classics', 'American', 'Novels', 'The United States Of America', 'Crime']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Witches', 'Magic', 'Classics']", "['Horror', 'Short Stories', 'Classics', 'Fiction', 'Fantasy', 'Gothic', 'Mystery']", "['Historical Fiction', 'Historical', 'Fiction', 'Scotland', 'Adventure', 'Russia', 'Romance']", "['Historical Fiction', 'Historical', 'Fiction', 'Scotland', 'Adventure', '16th Century', 'Romance']", "['Nonfiction', 'History', 'American History', 'True Crime', 'Historical', 'Tragedy', 'Crime']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Paranormal', 'Urban Fantasy', 'Witches']", "['Christian', 'Plays', 'Drama', 'Fiction', 'Christianity', 'Classics', 'Faith']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Adult']", "['Fantasy', 'Dragons', 'Middle Grade', 'Childrens', 'Fiction', 'Audiobook', 'Young Adult']", "['Fantasy', 'Dragons', 'Young Adult', 'Christian', 'Christian Fiction', 'Fiction', 'Christian Fantasy']", "['Childrens', 'Fiction', 'Animals', 'Mystery', 'Humor', 'Middle Grade', 'Fantasy']", "['Romance', 'Science Fiction', 'Science Fiction Romance', 'Fiction', 'Space Opera', 'Realistic Fiction', 'Love Story']", "['Romance', 'Science Fiction', 'Science Fiction Romance', 'Fiction', 'Space Opera', 'Chick Lit', 'Drama']", "['Romance', 'Science Fiction', 'Science Fiction Romance', 'Fantasy', 'Fiction', 'Young Adult Romance', 'Time Travel']", "['Young Adult', 'Fiction', 'Childrens', 'Realistic Fiction', 'Teen', 'Contemporary', 'Romance']", "['Historical Fiction', 'Lds', 'Religion', 'Lds Fiction', 'Fiction', 'Historical', 'Church']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Werewolves', 'Romance', 'Urban Fantasy']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Historical', 'Childrens', 'Adventure']", "['Fiction', 'Thriller', 'Mystery', 'Medical', 'Suspense', 'Horror', 'Science Fiction']", "['Fiction', 'British Literature', 'Literature', 'Novels', '20th Century', 'Historical Fiction']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'Mystery Thriller', 'Historical Fiction']", "['History', 'Nonfiction', 'War', 'Travel', 'World History', 'Historical', 'Anthropology']", "['Nonfiction', 'History', 'Philosophy', 'Politics', 'Theory', 'Sociology', 'Anthropology']", "['History', 'Biography', 'Nonfiction', 'World War II', 'Germany', 'Politics', 'War']", "['Economics', 'Philosophy', 'Politics', 'Nonfiction', 'History', 'Theory', 'Classics']", "['Classics', 'Fiction', 'Historical Fiction', 'War', 'Historical', 'Literature', 'School']", "['Fiction', 'Race', 'Literary Fiction', 'Contemporary', 'African American', 'Humor', 'Literature']", "['Fantasy', 'Young Adult', 'Magic', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Animals', 'Fantasy', 'France']", "['India', 'Fiction', 'Historical Fiction', 'Novels', 'Travel', 'Asia', 'France']", "['History', 'India', 'Nonfiction', 'Politics', 'Indian Literature', 'Asia', 'Historical']", "['Business', 'Self Help', 'Nonfiction', 'Personal Development', 'Philosophy', 'Inspirational', 'Psychology']", "['Fantasy', 'Young Adult', 'Fiction', 'Teen', 'Science Fiction', 'Magic', 'Paranormal']", "['Fiction', 'Russia', 'Classics', 'Russian Literature', 'Historical Fiction', 'Novels', 'Literature']", "['History', 'Nonfiction', 'Philosophy', 'Theory', 'Politics', 'Anthropology', 'Academic']", "['Art', 'Nonfiction', 'Reference', 'Art History', 'History', 'Art Design', 'Design']", "['Nonfiction', 'Science', 'Russia', 'Nobel Prize', 'Historical', 'Ukraine', 'Politics']", "['Psychology', 'Philosophy', 'Nonfiction', 'Classics', 'Psychoanalysis', 'Sociology', 'Theory']", "['Fiction', 'Middle Grade', 'Childrens', 'Realistic Fiction', 'Young Adult', 'Classics', 'Animals']", "['Nonfiction', 'Africa', 'Adoption', 'Ethiopia', 'Biography', 'Memoir', 'Biography Memoir']", "['Science', 'Nonfiction', 'Islam', 'Evolution', 'Religion', 'Education', 'Theology']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'Fantasy', 'Young Adult', 'Audiobook']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Philosophy', '20th Century', 'Novels']", "['Psychology', 'Nonfiction', 'Science', 'Philosophy', 'Sociology', 'Self Help', 'History']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Spain', 'Mystery Thriller', 'Detective']", "['Young Adult', 'Fantasy', 'Fiction', 'Romance', 'Death', 'Teen', 'Paranormal']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Literature', 'Adult Fiction', 'Book Club']", "['Historical Fiction', 'Christian Fiction', 'Christian', 'Fiction', 'Historical', 'Romance', 'Civil War']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Regency', 'Fiction', 'Disability']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'Mythology', 'Greece', 'Greek Mythology']", "['Historical Fiction', 'Historical', 'Fiction', 'Adventure', 'Scotland', '16th Century', 'Romance']", "['Historical Fiction', 'Historical', 'Fiction', 'Scotland', 'Literature', 'Adventure', 'British Literature']", "['Classics', 'Fiction', 'German Literature', 'Short Stories', 'School', 'Literature', 'Czech Literature']", "['History', 'Nonfiction', 'Islam', 'European History', 'Historical', 'World History', 'Medieval']", "['Fiction', 'Christian', 'Inspirational', 'Christian Fiction', 'Self Help', 'Spirituality', 'Adult']", "['Psychology', 'Nonfiction', 'Memoir', 'Mental Health', 'Biography', 'Mental Illness', 'Biography Memoir']", "['Middle Grade', 'Realistic Fiction', 'Fiction', 'Young Adult', 'Childrens', 'Family', 'Cultural']", "['Fiction', 'Historical Fiction', 'Thriller', 'Mystery', 'Historical', 'Adventure', 'Spanish Literature']", "['Islam', 'Religion', 'Nonfiction', 'Biography', 'History', 'Travel', 'Spirituality']", "['Science Fiction', 'Fiction', 'Speculative Fiction', 'Science Fiction Fantasy', 'Short Stories', 'Cyberpunk', 'Thriller']", "['Horror', 'Vampires', 'Fiction', 'Paranormal', 'Pulp', 'Action', 'Halloween']", "['Science Fiction', 'Young Adult', 'Fiction', 'Fantasy', 'Childrens', 'Middle Grade', 'Aliens']", "['Fantasy', 'Horror', 'Fiction', 'Short Stories', 'Pulp', 'Adventure', 'Sword and Sorcery']", "['Chick Lit', 'Fiction', 'Romance', 'Humor', 'Contemporary', 'Comedy', 'British Literature']", "['Young Adult', 'Realistic Fiction', 'Middle Grade', 'Fiction', 'Mystery', 'Contemporary', 'Childrens']", "['Fiction', 'Crime', 'Thriller', 'Mystery', 'Classics', 'Novels', 'Historical Fiction']", "['Poetry', 'Feminism', 'Queer', 'LGBT', 'Nonfiction', 'Classics', 'Womens']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Philosophy', 'Theatre', 'Literature']", "['Nonfiction', 'Anthropology', 'History', 'Biography', 'Plants', 'Adventure', 'Spirituality']", "['Classics', 'Short Stories', 'Fiction', 'Gothic', 'Horror', 'Fantasy', 'Science Fiction']", "['Christian Fiction', 'Fiction', 'Christian', 'Horror', 'Thriller', 'Fantasy', 'Mystery']", "['Christian', 'Fiction', 'Christian Fiction', 'Young Adult', 'Mystery', 'Adventure', 'Childrens']", "['Fiction', 'Westerns', 'Historical Fiction', 'Literature', 'Novels', 'American', 'Literary Fiction']", "['Christian Fiction', 'Fiction', 'Chick Lit', 'Christian', 'Contemporary', 'Adult Fiction', 'Travel']", "['Fiction', 'British Literature', 'Literary Fiction', 'Humor', 'Literature', 'Classics', 'Novels']", "['Romance', 'Chick Lit', 'Fiction', 'Contemporary', 'Adult', 'Contemporary Romance', 'Love']", "['Fiction', 'Classics', 'Historical Fiction', 'Jewish', 'New York', 'Literature', 'Novels']", "['Horror', 'Thriller', 'Fiction', 'Mystery', 'Historical Fiction', 'Crime', 'Japan']", "['Fiction', 'Classics', 'Roman', 'Literature', 'Russian Literature', 'Russia', 'Novels']", "['Fiction', 'Russia', 'Classics', 'Science Fiction', 'Russian Literature', 'Historical Fiction', 'Asia']", "['Classics', 'Fiction', 'Humor', 'Romance', 'Young Adult', 'Coming Of Age', 'Historical Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Fairy Tales', 'Childrens', 'Magic']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Speculative Fiction', 'Classics', 'Novels']", "['Theology', 'Religion', 'Feminism', 'Nonfiction', 'Christianity', 'Womens', 'Spirituality']", "['Romance', 'Historical Romance', 'Historical', 'Mystery', 'Historical Fiction', 'Fiction', 'Regency']", "['Poetry', 'Classics', 'Fiction', 'Literature', '20th Century', 'British Literature', 'Collections']", "['Mystery', 'Fiction', 'Historical Fiction', 'Crime', 'Portugal', 'Thriller', 'Mystery Thriller']", "['Polish Literature', 'Fiction', 'Poland', 'Classics', 'Historical Fiction', 'School', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Middle Grade', 'Childrens', 'Historical', 'School']", "['Business', 'Nonfiction', 'Self Help', 'Productivity', 'Personal Development', 'Finance', 'Entrepreneurship']", "['Nonfiction', 'History', 'Politics', 'War', 'Africa', 'American History', 'International Relations']", "['Fiction', 'Historical Fiction', 'Classics', 'War', 'World War II', 'Military Fiction', 'Literature']", "['Nonfiction', 'Books About Books', 'Memoir', 'Biography', 'British Literature', 'Biography Memoir', 'Audiobook']", "['History', 'Nonfiction', 'World History', 'Philosophy', 'Anthropology', 'Politics', 'Classics']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'Romance', 'Novels', 'Historical Romance']", "['Historical Fiction', 'Japan', 'Fiction', 'Historical', 'Asia', 'Asian Literature', 'Japanese Literature']", "['Childrens', 'Classics', 'Fiction', 'Picture Books', 'Poetry', 'Young Adult', 'Fantasy']", "['Fiction', 'Classics', 'German Literature', 'Germany', 'Historical Fiction', '20th Century', 'Novels']", "['Africa', 'Fiction', 'African Literature', 'Historical Fiction', 'Ghana', 'Feminism', 'Literature']", "['Classics', 'Fiction', 'France', 'French Literature', '19th Century', 'Literature', 'Historical Fiction']", "['Fiction', 'Young Adult', 'Horror', 'Romance', 'Gothic', 'Chick Lit', 'Mystery']", "['Classics', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Historical', 'Literature']", "['Fiction', 'Fantasy', 'Science Fiction', 'Literature', 'Classics', 'Novels', 'Speculative Fiction']", "['Fiction', 'Classics', 'Humor', 'British Literature', '20th Century', 'Modern Classics', 'Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', '19th Century', 'Classics', 'Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'Classics', 'British Literature', '20th Century', 'Edwardian']", "['Fiction', 'Ireland', 'Irish Literature', 'Historical Fiction', 'Novels', 'Literary Fiction', 'Historical']", "['Fiction', 'Thriller', 'Suspense', 'Classics', 'Horror', 'Pulp', 'Mystery Thriller']", "['History', 'Civil War', 'Nonfiction', 'American History', 'American Civil War', 'War', 'Military History']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Humor', 'Adult']", "['Queer', 'Fiction', 'LGBT', 'Literature', 'Gay', 'Dark']", "['Fiction', 'Feminism', 'France', 'Roman', 'Novels', 'French Literature', 'Contemporary']", "['Classics', 'Fiction', 'Literature', 'Novels', 'American', 'Historical Fiction', 'Southern Gothic']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Paranormal', 'Ghosts', 'Anthologies']", "['Africa', 'South Africa', 'Fiction', 'Historical Fiction', 'African Literature', 'Magical Realism', 'Literature']", "['Plays', 'Classics', 'Drama', 'Theatre', 'Fiction', '19th Century', 'Scandinavian Literature']", "['Fiction', 'Classics', 'Italian Literature', 'Magical Realism', 'Literature', 'Italy', 'Novels']", "['Nonfiction', 'History', 'Classics', 'Memoir', 'Biography', 'War', 'World War I']", "['History', 'Nonfiction', 'Holocaust', 'War', 'Historical', 'Biography', 'World War II']", "['Poetry', 'Classics', 'Literature']", "['Science Fiction', 'Fiction', 'Young Adult', 'Fantasy', 'Classics', 'Science Fiction Fantasy', 'Dystopia']", "['Picture Books', 'Childrens', 'Animals', 'Fiction', 'Poetry', 'Classics', 'Fantasy']", "['Fiction', 'Classics', 'Art', 'Literature', 'Humor', 'Novels', 'Irish Literature']", "['Fiction', 'Literature', 'Classics', 'Ireland', 'Irish Literature', 'British Literature', 'Humor']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Literature', 'Novels', 'Dystopia']", "['Fantasy', 'Fiction', 'Classics', 'Ireland', 'Irish Literature', 'Humor', 'Literature']", "['Fiction', 'Classics', 'France', 'French Literature', 'LGBT', 'Roman', 'Novels']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Classics', 'Ghosts', 'Young Adult']", "['Fantasy', 'Childrens', 'Fiction', 'Animals', 'Classics', 'Middle Grade', 'Juvenile']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Speculative Fiction', 'Collections']", "['Thriller']", "['Middle Grade', 'Romance', 'Fiction', 'Realistic Fiction', 'Childrens', 'Young Adult', 'Chick Lit']", "['Middle Grade', 'Childrens', 'Realistic Fiction', 'Romance', 'Fiction', 'Young Adult', 'Contemporary']", "['Fiction', 'Young Adult', 'Humor', 'Romance', 'Comedy', 'Contemporary', 'Teen']", "['Science Fiction', 'Fantasy', 'Fiction', 'Time Travel', 'Science Fiction Fantasy', 'Speculative Fiction', 'Adventure']", "['Fiction', 'Science Fiction', 'Alternate History', 'Historical Fiction', 'British Literature', 'Religion', 'Literature']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Dogs', 'Fantasy']", "['Nonfiction', 'Poetry', 'Memoir', 'History', 'Essays', 'Theory', 'Academic']", "['Fiction', 'Novels', 'Literature', 'British Literature', 'Contemporary', 'Literary Fiction', '20th Century']", "['Self Help', 'Nonfiction', 'Personal Development', 'Psychology', 'Spirituality', 'Philosophy', 'Reference']", "['Poetry', 'Feminism', 'African American', 'Race', 'Womens', 'Nonfiction', 'Politics']", "['Fiction', 'War', 'Historical Fiction', 'Crime', 'Novels', 'Classics', 'Literature']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Short Stories', 'Humor']", "['Medicine', 'Science', 'Medical', 'Textbooks', 'Nonfiction', 'Reference', 'Neuroscience']", "['Classics', 'Plays', 'Drama', 'Mythology', 'Fiction', 'Theatre', 'Poetry']", "['Politics', 'Nonfiction', 'History', 'War', 'Terrorism', 'Military Fiction', 'American History']", "['Horror', 'Short Stories', 'Fiction', 'LGBT', 'Fantasy', 'Collections', 'Anthologies']", "['Philosophy', 'Nonfiction', 'Essays', 'Theory', 'France', 'Love', 'Classics']", "['Fiction', 'Art', 'Fantasy', 'Romance', 'Graphic Novels', 'Mystery', 'Magical Realism']", "['Poetry', 'Mythology', 'Classics', 'History', 'Medieval', 'Religion', 'Nonfiction']", "['Philosophy', 'Politics', 'Nonfiction', 'Theory', 'Sociology', 'Anarchism', 'Art']", "['Christian', 'Nonfiction', 'Religion', 'Faith', 'Spirituality', 'Christianity', 'Inspirational']", "['Philosophy', 'Nonfiction', 'Politics', 'Theory', 'Sociology', 'Art', 'France']", "['Young Adult', 'Mystery', 'Fiction', 'Contemporary', 'Romance', 'Chick Lit', 'Boarding School']", "['Young Adult', 'Fiction', 'Mystery', 'Contemporary', 'Romance', 'Chick Lit', 'Boarding School']", "['Science Fiction', '40k', 'Fiction', 'Fantasy', 'War', 'Audiobook', 'Space Opera']", "['Fantasy', 'Horror', 'Vampires', 'Fiction', 'Historical Fiction', 'Historical', 'Paranormal']", "['Fiction', 'Thriller', 'Espionage', 'Military Fiction', 'Action', 'Suspense', 'Mystery']", "['Fiction', 'Magical Realism', 'Horror', 'Latin American', 'Spanish Literature', 'Novels', 'Literature']", "['Fiction', 'Classics', 'Literature', 'Mystery', 'Crime', 'American', 'Noir']", "['History', 'Ancient History', 'Nonfiction', 'Greece', 'Biography', 'Politics', 'Military History']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', 'Victorian', '19th Century', 'Literature']", "['Science', 'Nonfiction', 'Politics', 'Environment', 'Climate Change', 'Economics', 'Sustainability']", "['Romance', 'Chick Lit', 'Mystery', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Humor']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Fantasy', 'Speculative Fiction', 'Novels']", "['Plays', 'Drama', 'Fiction', 'Theatre', 'Classics', 'Historical Fiction', 'School']", "['Psychology', 'Nonfiction', 'Self Help', 'Mental Health', 'Health', 'Counselling', 'Social Work']", "['Philosophy', 'Nonfiction', 'Classics', 'History', 'Political Science', 'Economics', 'Politics']", "['Nonfiction', 'Sociology', 'Memoir', 'Biography', 'New York', 'Journalism', 'Poverty']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens', 'Audiobook']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Media Tie In', 'Humor', 'Young Adult']", "['Nonfiction', 'True Crime', 'Mystery', 'Crime', 'History', 'Classics', 'Audiobook']", "['Childrens', 'Picture Books', 'Fiction', 'Kids', 'Classics', 'Family', 'Animals']", "['Holocaust', 'Nonfiction', 'History', 'Memoir', 'World War II', 'Biography', 'Historical']", "['Fiction', 'Young Adult', 'Childrens', 'Classics', 'Historical Fiction', 'Middle Grade', 'Adventure']", "['Religion', 'Nonfiction', 'History', 'Christianity', 'Spirituality', 'Theology', 'Gnosticism']", "['Romance', 'Paranormal Romance', 'Vampires', 'Paranormal', 'Fantasy', 'Adult', 'Fiction']", "['Comics', 'Horror', 'Graphic Novels']", "['Fantasy', 'Science Fiction', 'Fiction', 'Fairy Tales', 'Science Fiction Fantasy', 'Time Travel', 'Retellings']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Theatre', '18th Century', 'Humor']", "['Classics', 'Historical Fiction', 'Fiction', 'Christian', 'Historical', 'Christian Fiction', 'Adventure']", "['Parenting', 'Nonfiction', 'Health', 'Self Help', 'Family', 'Psychology', 'Reference']", "['Classics', 'Fiction', 'Historical Fiction', 'Adventure', 'French Literature', 'France', 'Historical']", "['Fiction', 'Humor', 'Childrens', 'Middle Grade', 'Young Adult', 'Realistic Fiction', 'Graphic Novels']", "['Self Help', 'Spirituality', 'Nonfiction', 'Philosophy', 'Personal Development', 'Psychology', 'Inspirational']", "['Historical Fiction', 'Christian Fiction', 'Romance', 'Fiction', 'Christian', 'Historical', 'Historical Romance']", "['Historical Fiction', 'Fiction', 'Westerns', 'Historical', 'Native Americans', 'Novels', 'American History']", "['Fantasy', 'Fiction', 'Science Fiction', 'Young Adult', 'High Fantasy', 'Science Fiction Fantasy', 'Humor']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Suspense', 'Mystery Thriller', 'Romance']", "['Romance', 'Fiction', 'Historical Fiction', 'Chick Lit', 'Historical Romance', 'Historical', 'Drama']", "['Historical Fiction', 'Fiction', 'Historical', 'Asia', 'China', 'Adventure', 'Thriller']", "['Fiction', 'France', 'French Literature', 'Historical Fiction', '20th Century', 'Literature', 'World War II']", "['Classics', 'Horror', 'Fiction', 'Short Stories', 'Poetry', 'Mystery', 'Gothic']", "['Prayer', 'Spirituality', 'Religion', 'Nonfiction', 'Poetry', 'Christianity', 'Theology']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Suspense', 'Mystery Thriller', 'Detective']", "['Comics', 'Graphic Novels', 'Fiction', 'Crime', 'Graphic Novels Comics', 'Comic Book', 'Noir']", "['Classics', 'Fiction', 'Short Stories', 'Literature', 'American', 'Adventure', '19th Century']", "['Music', 'Nonfiction', 'History', 'Art', 'Classical Music', 'Unfinished', 'Cultural']", "['Fiction', 'Contemporary', 'Romance', 'Novels', 'Literary Fiction', 'Book Club', 'Relationships']", "['Mystery', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'Detective', 'Mystery Thriller']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'High Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'High Fantasy', 'Magic', 'Young Adult Fantasy', 'Adventure']", "['Nonfiction', 'Classics', 'Memoir', 'Biography', 'Travel', 'History', 'Literature']", "['Fiction', 'Fantasy', 'Magical Realism', 'The United States Of America', 'Novels', '20th Century', 'American']", "['France', 'Nonfiction', 'School', 'History', 'Classics', 'World War II', 'Historical']", "['Fiction', 'Southern Gothic', 'Literature', 'Classics', 'Novels', 'American', 'Southern']", "['Fiction', 'Historical Fiction', 'Westerns', 'Classics', 'Literature', 'Horror', 'Novels']", "['Young Adult', 'Fantasy', 'Paranormal', 'Witches', 'Magic', 'Fiction', 'Romance']", "['Classics', 'Feminism', 'Fiction', 'Poetry', '20th Century', 'American', 'Mental Health']", "['Travel', 'Nonfiction', 'Adventure', 'Memoir', 'Nature', 'Science', 'History']", "['Fiction', 'Classics', 'Humor', 'British Literature', 'Literature', 'Novels', 'Comedy']", "['Art', 'Nonfiction', 'Classics', 'Biography', 'History', 'Memoir', 'Art History']", "['Fiction', 'Novels', 'Race', 'Literature', 'Classics', 'African American']", "['Young Adult', 'Fantasy', 'Vampires', 'Romance', 'Paranormal', 'Fiction', 'Supernatural']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Fiction', 'Supernatural']", "['Young Adult', 'Vampires', 'Fantasy', 'Romance', 'Paranormal', 'Fiction', 'Supernatural']", "['Historical Fiction', 'Romance', 'Historical', 'Fiction', 'Historical Romance', 'Adult', 'British Literature']", "['Fiction', 'Classics', 'Historical Fiction', 'India', 'American', 'Literature', '20th Century']", "['History', 'Sociology', 'Politics', 'Nonfiction', 'World History', 'Political Science', 'Philosophy']", "['Fiction', 'Young Adult', 'Horror', 'Romance', 'Gothic', 'Drama', 'Thriller']", "['Fiction', 'Czech Literature', 'Classics', 'Historical Fiction', 'Humor', 'Literature', 'Novels']", "['Classics', 'Fiction', 'German Literature', 'Romance', 'Germany', 'Historical Fiction', 'Novels']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Mystery', 'Audiobook', 'Supernatural']", "['Horror', 'Fantasy', 'Fiction', 'Thriller', 'Supernatural', 'Paranormal', 'Gothic']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Fantasy', 'Animals', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Scandinavian Literature', 'Novels', 'Literary Fiction', 'Book Club', 'Contemporary']", "['Fiction', 'Childrens', 'Adventure', 'Fantasy', 'Chapter Books', 'Video Games', 'Juvenile']", "['Fiction', 'Romance', 'Contemporary', 'Chick Lit', 'Mystery', 'Drama', 'Adult']", "['Fiction', 'Historical Fiction', 'Religion', 'Catholic', 'Classics', 'France', 'Christianity']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Novels', 'Feminism', 'Islam']", "['Religion', 'Lds', 'Childrens', 'Picture Books', 'Church', 'Nonfiction', 'Mormonism']", "['Romance', 'Historical Romance', 'Historical', 'Regency', 'Historical Fiction', 'Regency Romance', 'Fiction']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Teen', 'Contemporary', 'Middle Grade', 'Humor']", "['Poetry', 'Classics', 'Fiction', 'Literature', '20th Century', 'American', 'School']", "['Nonfiction', 'Biography', 'Memoir', 'Biography Memoir', 'Autobiography', 'History', 'Book Club']", "['Fantasy', 'Fiction', 'Dark Fantasy', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Military Fiction']", "['Nonfiction', 'History', 'Survival', 'Adventure', 'Biography', 'Travel', 'Memoir']", "['Horror', 'Fiction', 'Mystery', 'Thriller', 'Paranormal', 'Gothic', 'Suspense']", "['Medicine', 'Fiction', 'Medical', 'Humor', 'Classics', 'Contemporary', 'Health']", "['Young Adult', 'Fiction', 'Humor', 'Romance', 'Contemporary', 'Chick Lit', 'Teen']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Arthurian', 'Mythology', 'Classics', 'Historical']", "['Christmas', 'Picture Books', 'Childrens', 'Animals', 'Cats', 'Humor', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Japan', 'Historical', 'Classics', 'Adventure', 'Literature']", "['Poetry', 'Classics', 'Fiction', 'Cats', 'Animals', 'Humor', 'Childrens']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Fantasy', 'Childrens', 'Historical', 'Middle Grade']", "['Psychology', 'Philosophy', 'Nonfiction', 'Sociology', 'Science', 'Politics', 'Psychiatry']", "['Classics', 'Gothic', 'Fiction', 'Horror', 'American', 'Literature', '18th Century']", "['Plays', 'Classics', 'Drama', 'Historical Fiction', 'Fiction', 'Literature', 'School']", "['Classics', 'Travel', 'Fiction', 'Spain', 'Short Stories', 'Historical Fiction', 'Literature']", "['Feminism', 'Nonfiction', 'History', 'Politics', 'Philosophy', 'Theory', 'Economics']", "['Politics', 'History', 'Nonfiction', 'Theory', 'Philosophy', 'Economics', 'Sociology']", "['Poetry', 'Feminism', 'Fiction', 'Fantasy', 'College', 'Female Authors', 'Gothic']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Christian', 'Adventure', 'Christian Fiction']", "['Horror', 'Vampires', 'Fiction', 'Fantasy', 'Paranormal', 'Mystery', 'Urban Fantasy']", "['Beer', 'Food', 'Nonfiction', 'Cooking']", "['Fiction', 'Historical Fiction', 'Classics', 'Scandinavian Literature', 'Swedish Literature', 'Religion', 'Nobel Prize']", "['Chick Lit', 'Fiction', 'Humor', 'Adult', 'British Literature', 'Adult Fiction']", "['Historical Fiction', 'Young Adult', 'Romance', 'Historical', 'Fiction', 'Egypt', 'Adventure']", "['Fiction', 'Poetry', 'Plays', 'Literature', 'German Literature', 'Classics', 'Drama']", "['Christian', 'Nonfiction', 'Christian Living', 'Christianity', 'Faith', 'Spirituality', 'Self Help']", "['Fiction', 'Classics', 'Mystery', 'Espionage', 'Historical Fiction', 'Adventure', 'Thriller']", "['Zombies', 'Horror', 'Fiction', 'Apocalyptic', 'Post Apocalyptic', 'Dystopia', 'Science Fiction']", "['Nonfiction', 'Christian', 'Horses', 'Animals', 'Inspirational', 'Faith', 'Biography']", "['Picture Books', 'Childrens', 'Fiction', 'Humor', 'Fantasy', 'Fairy Tales', 'Short Stories']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Adventure', 'Magic', 'Young Adult Fantasy']", "['Historical Fiction', 'Fiction', 'Westerns', 'Canada', 'Historical', '19th Century', 'Canadian Literature']", "['Nonfiction', 'Memoir', 'Biography', 'History', 'Africa', 'Christian', 'Religion']", "['Historical Fiction', 'Middle Grade', 'Fiction', 'Childrens', 'Young Adult', 'Historical', 'Juvenile']", "['Fiction', 'Contemporary', 'Young Adult', 'Adult Fiction', 'Literature', 'Novels']", "['Fantasy', 'Fiction', 'Young Adult', 'Science Fiction', 'Classics', 'Childrens', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Sword and Sorcery', 'Adventure', 'Science Fiction Fantasy', 'Pulp', 'Science Fiction']", "['Plays', 'Fiction', 'Irish Literature', 'Drama', 'Classics', 'School', 'Ireland']", "['Young Adult', 'Fantasy', 'Fiction', 'Magical Realism', 'Dystopia', 'Teen', 'Death']", "['Cookbooks', 'Cooking', 'Nonfiction', 'Food', 'Reference', 'Culinary', 'Food and Drink']", "['Lds Fiction', 'Fiction', 'Lds', 'Romance', 'Young Adult', 'Religion', 'Christian Fiction']", "['Lds Fiction', 'Lds', 'Young Adult', 'Clean Romance', 'Romance', 'Religion', 'Realistic Fiction']", "['Fiction', 'Young Adult', 'Contemporary', 'Humor', 'Realistic Fiction', 'Audiobook', 'Teen']", "['Fiction', 'Romance', 'Chick Lit', 'Drama', 'Contemporary', 'Thriller', 'Novels']", "['Fiction', 'Young Adult', 'Realistic Fiction', 'Contemporary', 'Coming Of Age', 'Mental Health', 'Novels']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Travel', 'American', 'Philosophy']", "['Nonfiction', 'History', 'Memoir', 'China', 'Biography', 'School', 'Historical']", "['Nonfiction', 'Biography', 'Autobiography', 'Audiobook', 'Memoir', 'Science', 'Nature']", "['Biography', 'Music', 'Nonfiction', 'Film', 'History', 'Biography Memoir', 'Media Tie In']", "['Sports', 'Biography', 'Nonfiction', 'Football', 'Leadership', 'Biography Memoir', 'Audiobook']", "['History', 'Nonfiction', 'Politics', 'War', 'American History', 'International Relations', 'Military Fiction']", "['Fiction', 'Humor', 'Contemporary', 'Academia', 'Novels', 'Literary Fiction', 'Literature']", "['Nonfiction', 'Politics', 'Parenting']", "['Romance', 'Romantic Suspense', 'Suspense', 'Military Fiction', 'Contemporary', 'Fiction', 'Contemporary Romance']", "['Science Fiction', 'Fiction', 'Classics', 'Fantasy', 'France', 'Dystopia', 'Adventure']", "['Science Fiction', 'Fiction', 'Classics', 'Science Fiction Fantasy', 'Dystopia', 'Aliens', 'Fantasy']", "['Fiction', 'Historical Fiction', 'Classics', 'Italy', 'War', 'World War II', 'Literature']", "['Horror', 'Science Fiction', 'Short Stories', 'Fiction', 'Classics', 'Fantasy', 'Dystopia']", "['History', 'Classics', 'Biography', 'Nonfiction', 'Philosophy', 'Ancient History', 'Ancient']", "['Romance', 'Fiction', 'Historical Fiction', 'Historical Romance', 'Historical', 'Chick Lit', 'Contemporary']", "['History', 'Africa', 'Nonfiction', 'World History', 'Politics', 'European History', '19th Century']", "['Science Fiction', 'Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Speculative Fiction', 'Aliens']", "['History', 'Nonfiction', 'Russia', 'Art', 'Photography', 'Politics', 'World History']", "['Historical Fiction', 'Fiction', 'Adventure', 'Egypt', 'Historical', 'Thriller', 'Mystery']", "['Fiction', 'Classics', 'Travel', 'Literature', 'American', 'Novels', 'Adventure']", "['France', 'Fiction', 'Classics', 'French Literature', 'Roman', 'Novels', 'Literature']", "['Classics', 'Fiction', '18th Century', 'Romance', 'Literature', 'British Literature', 'School']", "['History', 'Nonfiction', 'War', 'Biography', 'American History', 'Military Fiction', 'Military History']", "['Nonfiction', 'Self Help', 'Relationships', 'Romance', 'Love', 'Chick Lit', 'Psychology']", "['Nonfiction', 'History', 'True Crime', 'Crime', 'Biography', 'Military Fiction', 'Politics']", "['Romance', 'Historical Romance', 'Historical', 'Medieval', 'Historical Fiction', 'Medieval Romance', 'Fiction']", "['Romance', 'Fiction', 'Historical Fiction', 'Chick Lit', 'Historical', 'Contemporary Romance', 'Contemporary']", "['Romance', 'Fiction', 'Historical Fiction', 'Historical', 'Chick Lit', 'Historical Romance', 'Adult']", "['Romance', 'Fiction', 'Mystery', 'Chick Lit', 'Contemporary', 'Historical Fiction', 'Adult Fiction']", "['Fiction', 'Classics', 'Brazil', 'Magical Realism', 'Latin American', 'Romance', 'Novels']", "['Fantasy', 'Classics', 'Fiction', 'Childrens', 'Middle Grade', 'Young Adult', 'Historical Fiction']", "['Historical Fiction', 'Christian Fiction', 'Christian', 'Fiction', 'Historical', 'Romance', 'American History']", "['Picture Books', 'Childrens', 'Christmas', 'Fiction', 'Classics', 'Fantasy', 'Holiday']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Animals', 'Adventure', 'Kids']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Humor', 'Animals']", "['Fantasy', 'Young Adult', 'Romance', 'Adventure', 'Fiction', 'Young Adult Fantasy', 'Magic']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Magic', 'Science Fiction', 'Epic Fantasy']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Harlequin', 'Fiction', 'Adult', 'Marriage']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Beauty and The Beast', 'Adult', 'Scotland']", "['Young Adult', 'Contemporary', 'Fiction', 'Music', 'Realistic Fiction', 'Humor', 'Teen']", "['Fiction', 'Humor', 'Comedy', 'British Literature', 'Novels', 'Literature', '20th Century']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Vampires', 'Fiction', 'Horror', 'Supernatural']", "['Horror', 'Fantasy', 'Fiction', 'Paranormal', 'Ghosts', 'Ghost Stories', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Steampunk', 'Science Fiction', 'Science Fiction Fantasy', 'Middle Grade', 'Adventure']", "['Vampires', 'Paranormal', 'Romance', 'Fantasy', 'Paranormal Romance', 'Urban Fantasy', 'Chick Lit']", "['Chick Lit', 'Fiction', 'Romance', 'Adult Fiction', 'Adult', 'Contemporary', 'Audiobook']", "['Fiction', 'Childrens', 'Middle Grade', 'Young Adult', 'Juvenile', 'Classics', 'Historical Fiction']", "['Young Adult', 'Fiction', 'Mental Health', 'Mental Illness', 'Psychology', 'Realistic Fiction', 'Classics']", "['History', 'Politics', 'Nonfiction', 'Military Fiction', 'War', 'Military History', 'American History']", "['Classics', 'Fiction', 'Finnish Literature', 'War', 'Historical Fiction', 'Historical', 'World War II']", "['Fiction', 'Classics', 'Historical Fiction', 'Adventure', 'Africa', 'Romance', 'War']", "['Horses', 'Fiction', 'Historical Fiction', 'Animals', 'Childrens', 'Classics', 'Young Adult']", "['Fantasy']", "['Fiction', 'Contemporary', 'Family', 'Literary Fiction', 'Audiobook', 'Adult Fiction', 'Novels']", "['Fiction', 'Fantasy', 'Novels', 'Adult Fiction', 'Audiobook', 'Outdoors']", "['Short Stories', 'Fiction', 'Classics', 'Literature', 'Womens', 'Feminism', 'American']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Legal Thriller', 'Mystery Thriller', 'Suspense']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Westerns', 'Detective', 'Thriller']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Detective', 'Suspense']", "['Classics', 'Short Stories', 'Fiction', 'Horror', 'Gothic', 'Literature', 'School']", "['Fiction', 'Short Stories', 'Magical Realism', 'Fantasy', 'Literature', 'Spanish Literature', 'Philosophy']", "['Fantasy', 'Science Fiction Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Sword and Sorcery']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Speculative Fiction', 'Adult', 'Epic', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'War', 'Speculative Fiction', 'High Fantasy', 'Adult']", "['Fantasy', 'Science Fiction', 'Fiction', 'Mythology', 'Science Fiction Fantasy', 'Speculative Fiction', 'Classics']", "['Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Science Fiction Fantasy', 'Speculative Fiction', 'Space']", "['Classics', 'Fiction', 'Erotica', 'Romance', '19th Century', 'German Literature', 'Literature']", "['Nonfiction', 'Short Stories', 'Self Help', 'Inspirational', 'Teen', 'Childrens', 'Essays']", "['Fantasy', 'Young Adult', 'Steampunk', 'Science Fiction', 'Adventure', 'Fiction', 'Middle Grade']", "['Classics', 'Plays', 'France', 'Theatre', 'School', 'Drama', 'Fiction']", "['Fiction', 'Humor', 'Historical Fiction', 'Roman', 'Science Fiction', 'School', 'Classics']", "['Young Adult', 'Romance', 'Vampires', 'Fiction', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Humor', 'Plays', 'History', 'Books About Books', 'Nonfiction', 'Literature', 'Classics']", "['Nonfiction', 'Art', 'Self Help', 'Humor', 'Journal', 'Writing', 'Journaling']", "['Poetry', 'Fiction', 'War', 'World War I', 'Classics', 'Literature', 'British Literature']", "['Classics', 'Fiction', 'Literature', '19th Century', 'Victorian', 'Historical Fiction', 'British Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Egypt', 'Fantasy', 'Adventure', 'Thriller']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'African American', 'Classics', 'Mystery Thriller']", "['Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'History', 'Autobiography', 'Family']", "['Spanish Literature', 'Classics', 'Fiction', 'Spain', 'Drama', '20th Century', 'Novels']", "['Nonfiction', 'Animals', 'Dogs', 'Memoir', 'Biography', 'Audiobook', 'Nature']", "['Fiction', 'Fantasy', 'Disability', 'Young Adult', 'Adult Fiction', 'Science Fiction', 'British Literature']", "['Fiction', 'Africa', 'Classics', 'Historical Fiction', 'Novels', 'Nobel Prize', 'Literature']", "['Spirituality', 'Nonfiction', 'Religion', 'Christianity', 'History', 'Audiobook', 'Love']", "['Manga', 'Fantasy', 'Comics', 'Graphic Novels', 'Supernatural', 'Shonen', 'Paranormal']", "['Picture Books', 'Childrens', 'Fiction', 'Poetry', 'Classics', 'Humor', 'Kids']", "['Fiction', 'Occult', 'Classics', 'Philosophy', 'Thelema', 'Magic', 'Novels']", "['Fiction', 'Italian Literature', 'Italy', 'Novels', 'Contemporary', 'Drama', 'Literature']", "['Religion', 'History', 'Biography', 'Nonfiction', 'Spirituality', 'Unfinished', 'Islam']", "['Historical Fiction', 'Lds Fiction', 'Lds', 'Fiction', 'Religion', 'Historical', 'World War II']", "['Fiction', 'Science Fiction', 'Classics', 'Mathematics', 'Fantasy', 'Philosophy', 'Literature']", "['Science Fiction', 'Fiction', 'Mystery', 'Fantasy', 'Time Travel', 'Humor', 'Mystery Thriller']", "['Religion', 'Lds', 'Nonfiction', 'Church', 'Spirituality', 'Inspirational', 'Self Help']", "['Religion', 'Lds', 'Nonfiction', 'Church', 'Spirituality', 'Inspirational', 'Christian']", "['Fiction', 'Travel', 'German Literature', 'Literature', 'Germany', 'Novels', 'Classics']", "['History', 'Nonfiction', 'War', 'World War II', 'Military History', 'Military Fiction', 'Russia']", "['Classics', 'France', 'Nonfiction', 'French Literature', 'Biography', 'Literature', '20th Century']", "['Science Fiction', 'Plays', 'Classics', 'Fiction', 'Drama', 'Czech Literature', 'Dystopia']", "['Fiction', 'Horror', 'France', 'Classics', 'Erotica', 'Philosophy', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Fantasy', 'Short Stories', 'Romance']", "['Historical Fiction', 'Mystery', 'Fiction', 'Horror', 'Historical', 'Thriller', 'Crime']", "['Fiction', 'Espionage', 'Thriller', 'Mystery', 'Spy Thriller', 'Historical Fiction', 'Germany']", "['Fiction', 'Morocco', 'Africa', 'Historical Fiction', 'Literary Fiction', 'Literature', 'Classics']", "['Historical Fiction', 'Fiction', 'Classics', 'War', 'Historical', 'Literature', 'German Literature']", "['Historical Fiction', 'Fiction', 'Adventure', 'Classics', 'Historical', 'Fantasy', 'Sweden']", "['History', 'Nonfiction', 'Historical', 'Medieval', 'France', 'True Crime', 'Medieval History']", "['Horror', 'Mystery', 'Middle Grade', 'Young Adult', 'Paranormal', 'Ghosts', 'Fiction']", "['Fiction', 'Childrens', 'Realistic Fiction', 'Middle Grade', 'School', 'Young Adult', 'Humor']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Mental Health', 'Coming Of Age', 'Teen']", "['Historical Fiction', 'Christian Fiction', 'Fiction', 'Christian', 'Historical', 'World War II', 'War']", "['Historical Fiction', 'Young Adult', 'Historical', 'Middle Grade', 'Childrens', 'Fiction', 'Spain']", "['Fiction', 'Italian Literature', 'Italy', 'Novels', 'Contemporary', 'Roman', 'Literary Fiction']", "['Fiction', 'Westerns', 'Contemporary', 'Adult Fiction', 'Literary Fiction', 'Adult', 'Relationships']", "['Fiction', 'Classics', 'Noir', 'Mystery', 'Historical Fiction', 'Crime', 'Novels']", "['Fiction', 'Classics', 'Historical Fiction', 'Ireland', 'Mystery', 'Gothic', 'Historical']", "['Music', 'Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'Autobiography', 'Rock N Roll']", "['Fiction', 'German Literature', 'Classics', 'Germany', 'School', '19th Century', 'Literature']", "['Fiction', 'Lds Fiction', 'Religion', 'Lds', 'Church', 'Christian Fiction', 'Suspense']", "['Fiction', 'Lds Fiction', 'Lds', 'Religion', 'Church', 'Historical Fiction', 'Christian Fiction']", "['Fiction', 'Historical Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Drama', 'Historical']", "['Childrens', 'Fiction', 'Mystery', 'Fantasy', 'Animals', 'Humor', 'Middle Grade']", "['Fantasy', 'Middle Grade', 'Childrens', 'Fiction', 'Young Adult', 'Adventure', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Time Travel', 'Paranormal', 'Fiction']", "['Mystery', 'Middle Grade', 'Fiction', 'Young Adult', 'Childrens', 'Art', 'Adventure']", "['Fantasy', 'Classics', 'Fiction', 'Childrens', 'Fairy Tales', 'Middle Grade', 'Young Adult']", "['Fantasy', 'Science Fiction', 'Fiction', 'Alternate History', 'Urban Fantasy', 'Werewolves', 'Paranormal']", "['Historical Fiction', 'Fiction', '17th Century', 'British Literature', 'Canadian Literature', 'Canada', 'Historical']", "['Fiction', 'Classics', 'Irish Literature', 'Novels', 'Literature', 'Ireland', 'France']", "['Fiction', 'Westerns', 'Historical Fiction', 'Survival', 'Classics', 'Adventure', 'Animals']", "['Christmas', 'Picture Books', 'Childrens', 'Holiday', 'Animals', 'Fiction']", "['Fiction', 'Classics', 'Literature', 'France', 'French Literature', 'Novels', '20th Century']", "['History', 'Nonfiction', 'War', 'Military History', 'Military Fiction', 'American History', 'Politics']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Historical Fiction', 'Young Adult Fantasy', 'High Fantasy']", "['Plays', 'Drama', 'Theatre', 'LGBT', 'Queer', 'Nonfiction', 'History']", "['Mystery', 'Short Stories', 'Crime', 'Fiction', 'Classics', 'Horror', 'Detective']", "['Historical Romance', 'Romance', 'Historical', 'Regency', 'Historical Fiction', 'Adult', 'Fiction']", "['Philosophy', 'Nonfiction', 'Classics', 'German Literature', 'Psychology', 'Essays', '19th Century']", "['Classics', 'Plays', 'German Literature', 'Fiction', 'Drama', 'School', 'Read For School']", "['Horror', 'Vampires', 'Fiction', 'Fantasy', 'LGBT', 'Paranormal', 'Gothic']", "['Humor', 'Reference', 'Nonfiction', 'Tv', 'Comics', 'Comedy', 'Pop Culture']", "['Picture Books', 'Childrens', 'Humor', 'Fiction', 'Animals', 'Media Tie In']", "['History', 'Nonfiction', 'World War II', 'War', 'Military Fiction', 'American History', 'Military History']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Cats', 'Adventure', 'Young Adult']", "['Nonfiction', 'Survival', 'Adventure', 'Memoir', 'Biography', 'History', 'Autobiography']", "['Nonfiction', 'Memoir', 'Autistic Spectrum Disorder', 'Biography', 'Psychology', 'Biography Memoir', 'Autobiography']", "['Science Fiction', 'Fiction', 'Thriller', 'Horror', 'Mystery', 'Suspense', 'Science Fiction Fantasy']", "['Mystery', 'Fiction', 'Historical Fiction', 'Crime', 'Thriller', 'Historical Mystery', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Paranormal', 'Supernatural', 'Fantasy']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Suspense', 'Action', 'Mystery Thriller']", "['Fantasy', 'Christian Fiction', 'Fiction', 'Christian', 'Thriller', 'Science Fiction', 'Suspense']", "['Christian Fiction', 'Fiction', 'Christian', 'Fantasy', 'Thriller', 'Suspense', 'Mystery']", "['Fiction', 'Ireland', 'Irish Literature', 'Literature', 'Novels', 'Historical Fiction', 'Contemporary']", "['Fiction', 'Westerns', 'Historical Fiction', 'Classics', 'Literature', 'Novels', 'American']", "['Feminism', 'Nonfiction', 'Philosophy', 'Classics', 'Womens', 'Gender', 'France']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary Romance', 'Contemporary', 'Novels', 'Adult']", "['Paranormal Romance', 'Romance', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Shapeshifters', 'Adult']", "['Fiction', 'Literary Fiction', 'Chick Lit', 'Contemporary', 'Womens', 'Adult Fiction']", "['Nonfiction', 'Scotland', 'Travel', 'Crime', 'Memoir', 'Biography', 'Photography']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Supernatural', 'Fantasy', 'Crime']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Supernatural', 'Mystery', 'Magic']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Middle Grade', 'Childrens', 'Diary']", "['Historical Fiction', 'Fiction', 'Historical', 'American Revolution', 'War', 'American History', 'American Revolutionary War']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Animals', 'Dogs', 'Kids']", "['Fiction', 'Magical Realism', 'Literary Fiction', 'Historical Fiction', 'Contemporary', 'Fantasy', 'Literature']", "['Poetry', 'Picture Books', 'Canada', 'Childrens', 'Fiction', 'Classics', 'Humor']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'Historical Mystery', 'Mystery Thriller']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Suspense', 'Mystery Thriller', 'British Literature']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Suspense', 'Greece', 'Mystery Thriller']", "['Fiction', 'War', 'Historical Fiction', 'World War I', 'Classics', 'Novels', '20th Century']", "['Nonfiction', 'Self Help', 'Religion', 'Christian', 'Christianity', 'Philosophy', 'Inspirational']", "['Fiction', 'Romance', 'Literature', 'Literary Fiction', 'Contemporary', 'Novels', 'British Literature']", "['Horror', 'Vampires', 'Fiction', 'Fantasy', 'Paranormal', 'Thriller', 'Supernatural']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense', 'Thriller', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Classics', 'Middle Grade', 'Adventure']", "['Travel', 'Nonfiction', 'Adventure', 'History', 'Biography', 'Memoir', 'Asia']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Classics', 'Speculative Fiction', 'Novels']", "['Fantasy', 'Science Fiction', 'Fiction', 'Novels', 'Science Fiction Fantasy', 'Classics', 'Audiobook']", "['Nonfiction', 'Classics', 'Essays', 'Race', 'History', 'Politics', 'Social Justice']", "['Poetry', 'Italian Literature', 'Italy', 'Nobel Prize', 'Literature', '20th Century', 'Classics']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'Detective', 'Scandinavian Literature']", "['Fiction', 'Classics', 'Mystery', 'Gothic', 'Historical Fiction', 'France', 'Thriller']", "['Fiction', 'Historical Fiction', 'World War II', 'War', 'Classics', 'Romania', 'British Literature']", "['Fiction', 'Contemporary', 'Literary Fiction', 'British Literature', 'Novels', 'Literature', '21st Century']", "['Fiction', 'German Literature', 'Classics', 'Germany', 'Historical Fiction', 'Novels', 'Literature']", "['Fiction', 'Dutch Literature', 'Literature', 'Classics', 'School', 'Roman', 'Novels']", "['Horror', 'Fiction', 'Classics', 'Thriller', 'Mystery', 'Suspense', 'Mystery Thriller']", "['Horror', 'Fantasy', 'Fiction', 'Gothic', 'Historical Fiction', 'Mystery', 'Southern Gothic']", "['Poetry', 'Classics', 'Spirituality', 'Religion', 'Nonfiction', 'German Literature', 'Philosophy']", "['Cookbooks', 'Cooking', 'Food', 'Nonfiction', 'Reference', 'Foodie', 'Food and Drink']", "['Chick Lit', 'Fiction', 'Contemporary', 'British Literature', 'Romance', 'Humor', 'Adult']", "['Fiction', 'Unfinished', 'Adult Fiction', 'Drama']", "['Fiction', 'Westerns', 'Historical Fiction', 'Classics', 'Literature', 'Novels', 'Literary Fiction']", "['Fantasy', 'Mermaids', 'Young Adult', 'Fiction', 'Adventure', 'Childrens', 'Middle Grade']", "['Childrens', 'Fantasy', 'Fiction', 'Ghosts', 'Horror', 'Middle Grade', 'Classics']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Fairy Tales', 'Young Adult', 'Humor']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Southern', 'Autobiography', 'History']", "['Fiction', 'Historical Fiction', 'Southern', 'Coming Of Age', 'Novels', 'Womens', 'Abuse']", "['Islam', 'Religion', 'Nonfiction', 'Reference', 'Spirituality', 'History']", "['Philosophy', 'Religion', 'Nonfiction', 'Atheism', 'Essays', 'Classics', 'Science']", "['China', 'Fiction', 'Asia', 'Nobel Prize', 'Chinese Literature', 'Magical Realism', 'Literature']", "['Historical Fiction', 'Middle Grade', 'Historical', 'Fiction', 'Childrens', 'Young Adult', 'Diary']", "['Graphic Novels', 'Fiction', 'Science Fiction', 'Fantasy', 'Graphic Novels Comics', 'Classics', 'Comic Book']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Supernatural', 'Audiobook']", "['Fantasy', 'Classics', 'German Literature', 'Fiction', 'Young Adult', 'School', 'Childrens']", "['Fiction', 'Italian Literature', 'Italy', 'Romance', 'Contemporary', 'Novels', '21st Century']", "['Classics', 'Horror', 'Gothic', 'Vampires', 'Short Stories', 'Fiction', 'Fantasy']", "['Fiction', 'Poetry', 'Literature', 'Novels', 'Literary Fiction', 'American', 'Classics']", "['Fantasy', 'Childrens', 'Classics', 'Fiction', 'Adventure', 'Magic', 'Middle Grade']", "['Picture Books', 'Childrens', 'Fiction', 'Fantasy', 'Humor', 'School', 'Kids']", "['Fiction', 'Short Stories', 'India', 'Indian Literature', 'Classics', 'Poetry', 'Novels']", "['Short Stories', 'Fiction', 'India', 'Indian Literature', 'Classics', 'Contemporary', 'Romance']", "['Fiction', 'Short Stories', 'Indian Literature', 'India', 'Literary Fiction', 'Childrens', 'Collections']", "['Fiction', 'Short Stories', 'Indian Literature', 'India', 'Short Story Collection', 'Contemporary']", "['Picture Books', 'Childrens', 'Classics', 'Fiction', 'France', 'Poetry', 'Kids']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Demons', 'Urban Fantasy', 'Adult']", "['Young Adult', 'Fantasy', 'Paranormal', 'Mystery', 'Magic', 'Witches', 'Fiction']", "['Religion', 'Humor']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense']", "['Horror', 'Fiction', 'Short Stories', 'Fantasy', 'Supernatural', 'Anthologies', 'Occult']", "['Fiction', 'Historical Fiction', 'Asia', 'Literary Fiction', 'Book Club', 'Novels', 'Travel']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'High Fantasy', 'Magic', 'Science Fiction']", "['Mystery', 'Romance', 'Crime', 'Fiction', 'Romantic Suspense', 'Thriller', 'Suspense']", "['Fiction', 'Romance', 'Animals', 'Horses', 'Contemporary', 'Drama', 'Adult']", "['Classics', 'Fiction', 'Horror', 'Romance', 'Gothic', 'Mystery', 'Historical Fiction']", "['Travel', 'Nonfiction', 'Memoir', 'Italy', 'Romance', 'Biography', 'Chick Lit']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Roman', 'Ancient History', 'Novels']", "['Africa', 'Ethiopia', 'Nonfiction', 'Memoir', 'Biography Memoir', 'History', 'Biography']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Science Fiction', 'Mystery Thriller']", "['Queer', 'Short Stories', 'Fiction', 'Anthologies', 'LGBT', 'Poetry', 'Queer Lit']", "['Historical Fiction', 'Fiction', 'Historical', 'Egypt', 'Romance', 'Africa', 'Adult']", "['Horror', 'Werewolves', 'Fiction', 'Fantasy', 'Thriller', 'Paranormal', 'Supernatural']", "['Religion', 'Lds', 'Nonfiction', 'Church', 'Spirituality', 'Biography', 'History']", "['Mystery', 'Historical Fiction', 'Historical', 'Historical Mystery', 'Crime', 'Victorian', 'Fiction']", "['Science Fiction', 'Fantasy', 'Fiction', 'Young Adult', 'Dystopia', 'Childrens']", "['Childrens', 'Picture Books', 'Media Tie In', 'Fiction', 'Fantasy', 'Comedy', 'Classics']", "['Fiction', 'Contemporary', 'Mental Health', 'Novels', 'Biography Memoir', 'Adult', 'Adult Fiction']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Mystery Thriller', 'Detective', 'Thriller']", "['Historical Fiction', 'Fiction', 'Historical', 'Roman', 'War', 'Ancient', 'Military Fiction']", "['Fantasy', 'Fiction', 'High Fantasy', 'Science Fiction', 'Science Fiction Fantasy', 'Action', 'Adventure']", "['Classics', 'Polish Literature', 'School', 'Fiction', 'Poland', 'Historical Fiction', '19th Century']", "['Mystery', 'Fiction', 'Crime', 'Humor', 'Thriller', 'Mystery Thriller', 'Audiobook']", "['Childrens', 'Classics']", "['Science', 'Nonfiction', 'Philosophy', 'History', 'Psychology', 'Popular Science', 'Essays']", "['Civil War', 'History', 'American Civil War', 'Nonfiction', 'War', 'Civil War Eastern Theater', 'American History']", "['Nonfiction', 'Classics', 'Memoir', 'Biography', 'Biography Memoir', 'Death', 'School']", "['Childrens', 'Science Fiction', 'Fantasy']", "['Short Stories', 'Fiction', 'Literary Fiction']", "['India', 'Indian Literature', 'Fiction']", "['Fiction', 'Mystery', '20th Century', 'Contemporary', 'Novels', 'Drama', 'Chick Lit']", "['Short Stories', 'Fiction', 'American', 'Literature']", "['Picture Books', 'Childrens', 'Fiction', 'Family', 'Realistic Fiction', 'Humor', 'Storytime']", "['Chick Lit', 'Fiction', 'Romance', 'Adult Fiction', 'Contemporary', 'Novels', 'Audiobook']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Short Stories', 'Speculative Fiction', 'Anthologies']", "['Fantasy', 'Fiction', 'LGBT', 'M M Romance', 'Romance', 'Queer', 'Magic']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Adventure', 'Romance', 'Childrens']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fantasy', 'Fiction', 'Adventure', 'Teen']", "['Fiction', 'Childrens', 'Middle Grade', 'Adventure', 'Young Adult', 'Historical Fiction', 'Classics']", "['Nonfiction', 'Religion', 'Humor', 'Memoir', 'Biography', 'Spirituality', 'Biography Memoir']", "['Psychology', 'Nonfiction', 'Philosophy', 'Science', 'Mental Health', 'Psychiatry', 'Psychoanalysis']", "['Fiction', 'Chick Lit', 'Romance', 'Pop Culture', 'Adult', 'Novels']", "['Fiction', 'Spanish Literature', 'Latin American', 'Classics', 'Literature', '20th Century', 'Novels']", "['Animals']", "['Science Fiction', 'Fiction', 'Polish Literature', 'Classics', 'Dystopia', 'Novels', 'Science Fiction Fantasy']", "['Fiction', 'Classics', 'Novels', 'Literature', 'American', 'Poetry', 'Contemporary']", "['Childrens', 'Fiction', 'Picture Books', 'Animals', 'Fantasy', 'Dogs', 'Classics']", "['Fiction', 'Hungary', 'Historical Fiction', 'Classics', 'Hungarian Literature', 'Literary Fiction', 'Novels']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Historical Mystery', 'Audiobook', 'Mystery Thriller']", "['Science Fiction', 'Fiction', 'Fantasy', 'Speculative Fiction', 'Novels', 'American', 'Dystopia']", "['Fantasy', 'Dragons', 'Fiction', 'Adventure', 'High Fantasy', 'Adult', 'Magic']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Magic', 'Romance']", "['Crime', 'Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Scandinavian Literature', 'Detective']", "['Fiction', 'Thriller', 'Christmas', 'Historical Fiction', 'Short Stories', 'Adventure', 'Aviation']", "['Christian', 'Nonfiction', 'Spirituality', 'Christianity', 'Religion', 'Faith', 'Theology']", "['Historical Fiction', 'Childrens', 'Fiction', 'Christmas', 'Historical', 'Middle Grade', 'Holiday']", "['Historical Fiction', 'Childrens', 'Fiction', 'Christmas', 'Historical', 'Middle Grade', 'Civil War']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Mystery', 'Dystopia', 'Speculative Fiction', 'Novels']", "['Fiction', 'Classics', 'German Literature', 'Historical Fiction', 'War', '20th Century', 'Germany']", "['Fiction', 'Canada', 'Classics', 'Canadian Literature', 'Literary Fiction', 'Novels', 'Literature']", "['Realistic Fiction', 'Fiction', 'Young Adult', 'Middle Grade', 'Childrens', 'Death', 'Family']", "['Mystery', 'Romantic Suspense', 'Romance', 'Suspense', 'Thriller', 'Fiction', 'Mystery Thriller']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Scotland', 'British Literature', 'Detective']", "['Romance', 'Fiction', 'Chick Lit', 'Adult', 'Contemporary Romance', 'Contemporary', 'Womens Fiction']", "['History', 'Nonfiction', 'Essays', 'Short Stories']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Action', 'Suspense', 'Spy Thriller']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Magic', 'Science Fiction Fantasy', 'Novels']", "['Christian Fiction', 'Amish', 'Fiction', 'Christian', 'Romance', 'Amish Fiction', 'Historical Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'American History', 'Adult Fiction', 'Adult', 'Drama']", "['Fiction', 'Classics', 'Literature', 'Novels', 'British Literature', 'Historical Fiction', '20th Century']", "['Science Fiction', 'Fiction', 'Time Travel', 'Classics', 'Science Fiction Fantasy', 'Audiobook', 'Novels']", "['Nonfiction', 'Biography', 'Memoir', 'Australia', 'Biography Memoir', 'Autobiography', 'Drama']", "['Historical Fiction', 'Historical', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'American Revolutionary War']", "['Mystery', 'Fiction', 'Young Adult', 'Childrens', 'Adventure', 'Detective', 'Crime']", "['Classics', 'Childrens', 'Fiction', 'Animals', 'Fantasy', 'Middle Grade', 'Adventure']", "['Mystery', 'Historical Fiction', 'Fiction', 'Cozy Mystery', 'Historical', 'Historical Mystery', 'Crime']", "['Romance', 'Anthologies', 'Christmas', 'Contemporary', 'Contemporary Romance', 'Holiday', 'Fiction']", "['Fiction', 'German Literature', 'Classics', 'Literature', 'Novels', '20th Century', 'Germany']", "['Fiction', 'Scotland']", "['Historical Fiction', 'Fiction', 'Religion', 'Historical', 'Spirituality', 'Novels', 'Literature']", "['Fiction', 'Historical Fiction', 'Military Fiction', 'World War II', '20th Century', 'War', 'Adventure']", "['Programming', 'Computer Science', 'Nonfiction', 'Reference', 'Technology', 'Technical', 'Computers']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Humor', 'Kids', 'Storytime']", "['Plays', 'Drama', 'Fiction', 'Historical Fiction', 'African American', 'Theatre', 'Classics']", "['Fiction', 'Classics', 'Historical Fiction', 'Scotland', 'Novels', 'British Literature', 'Literary Fiction']", "['Science', 'Biography', 'Nonfiction', 'History', 'Memoir', 'Adult', 'Biology']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'High Fantasy', 'Young Adult Fantasy', 'Adventure']", "['Fiction', 'Short Stories', 'Fantasy', 'Horror', 'Humor', 'Art', 'Graphic Novels']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Magic', 'Adventure']", "['Nonfiction', 'Religion', 'Christian', 'History', 'Spirituality', 'Philosophy', 'Conspiracy Theories']", "['Nonfiction', 'Japan', 'Biography', 'Memoir', 'History', 'Asia', 'Autobiography']", "['Nonfiction', 'Biography', 'Business', 'Memoir', 'Finance', 'Autobiography', 'True Crime']", "['Politics', 'History', 'Theory']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Thriller', 'Crime', 'Novels', 'Suspense']", "['Science Fiction', 'Fiction', 'Hard Science Fiction', 'Aliens', 'Science Fiction Fantasy', 'Speculative Fiction', 'Adventure']", "['Science Fiction', 'Fiction', 'Philosophy', 'Classics', 'Speculative Fiction', 'Fantasy', 'Novels']", "['India', 'Fiction', 'Classics', 'Indian Literature', 'Historical Fiction', 'Literature', 'Asia']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Heroic Fantasy', 'High Fantasy', 'Sword and Sorcery', 'Adventure']", "['Fiction', 'Queer', 'Coming Of Age', 'Literature', 'British Literature', 'China', 'Classics']", "['Fantasy', 'Elves', 'Magic', 'Dragons', 'Adventure', 'Young Adult', 'Werewolves']", "['Fiction', 'South Africa', 'Africa', 'Historical Fiction', 'Nobel Prize', 'Literature', 'Novels']", "['Poetry', 'Nonfiction']", "['Nonfiction', 'Biography', 'Classics', 'Memoir', 'Art', 'LGBT', 'Queer']", "['Fiction', 'Classics', 'Italian Literature', 'Italy', 'Literature', 'Historical Fiction', 'Novels']", "['Fiction', 'Classics', 'Philosophy', 'Literature', 'German Literature', 'Novels', 'Historical Fiction']", "['Fiction', 'Thriller', 'Crime', 'Contemporary', 'Noir', 'Novels', 'Mystery']", "['Fiction', 'Short Stories', 'Contemporary', 'Scotland', 'Literature', 'British Literature', 'Novels']", "['Fiction', 'Italian Literature', 'Classics', 'Italy', 'Novels', '20th Century', 'Coming Of Age']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Drama', 'Contemporary Romance', 'Christmas']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Adult', 'Fantasy', 'Contemporary Romance']", "['Classics', 'Fiction', '18th Century', 'Literature', 'Romance', 'Novels', 'British Literature']", "['Nonfiction', 'Politics', 'History', 'Economics', 'Science', 'Political Science', 'Futurism']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Fiction', 'Supernatural', 'Horror']", "['Philosophy', 'Spirituality', 'Nonfiction', 'Psychology', 'Religion', 'Occult', 'Esoterica']", "['Science Fiction', 'Fiction', 'Classics', 'Horror', 'Post Apocalyptic', 'Dystopia', 'Fantasy']", "['Anthropology', 'Nonfiction', 'Africa', 'School', 'Ethnography', 'Memoir', 'Read For School']", "['Fantasy', 'Young Adult', 'Fiction', 'Short Stories', 'Childrens', 'Audiobook', 'Steampunk']", "['Fiction', 'Classics', 'Literature', 'Novels', 'British Literature', '20th Century', 'Humor']", "['Fiction', 'Novels', 'Contemporary', 'Literary Fiction', 'Coming Of Age', 'Young Adult', 'Adult']", "['Fiction', 'Philosophy', 'Spirituality', 'Self Help', 'Inspirational', 'Fantasy', 'Adventure']", "['Manga', 'Comics', 'Thriller', 'Mystery', 'Monsters', 'Graphic Novels', 'Horror']", "['Fiction', 'Historical Fiction', 'China', 'Historical', 'Books About Books', 'Novels', 'Classics']", "['Aviation', 'Nonfiction', 'History', 'Biography', 'Memoir', 'Adventure', 'Autobiography']", "['Fiction', 'Dark', 'Mental Health', 'Contemporary', 'Literature']", "['Horror', 'Zombies', 'Fiction', 'Humor', 'Science Fiction', 'Fantasy', 'Post Apocalyptic']", "['Christian', 'Philosophy', 'Theology', 'History', 'Nonfiction', 'Christianity', 'Religion']", "['Fiction', 'China', 'Historical Fiction', 'Literature', 'Chinese Literature', 'Asia', 'Classics']", "['Classics', 'Fiction', 'Humor', '19th Century', 'Comedy', 'British Literature', 'Victorian']", "['Science Fiction', 'Classics', 'Fiction', 'Fantasy', 'Adventure', 'Audiobook', 'Novels']", "['Poetry', 'Nonfiction', 'Classics', 'Nature', 'LGBT', 'Adult', 'Queer']", "['Poetry', 'Latin American']", "['Short Stories', 'Fiction', 'Russia', 'Russian Literature', 'Classics', 'Literature', '19th Century']", "['China', 'Nonfiction', 'History', 'Memoir', 'Biography', 'Asia', 'Biography Memoir']", "['Fiction', 'Polish Literature', 'Poland', 'Magical Realism', 'Nobel Prize', 'Contemporary', 'Short Stories']", "['Short Stories', 'Fiction', 'Latin American', 'Literature', 'Spanish Literature', 'Latin American Literature', 'Contemporary']", "['Classics', 'Historical Fiction', 'Fiction', 'Polish Literature', 'Historical', 'School', 'Romance']", "['Childrens', 'Fiction', 'Classics', 'Middle Grade', 'Boarding School', 'School Stories', 'Young Adult']", "['Nonfiction', 'Science']", "['Plays', 'Drama', 'Classics', 'School', 'Fiction', 'Read For School', 'Historical Fiction']", "['Horror', 'Werewolves', 'Fiction', 'Classics', 'Historical Fiction', 'Gothic', 'Fantasy']", "['Childrens', 'Fantasy', 'Picture Books', 'Fiction', 'Magic', 'Own']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Historical Fiction', 'Espionage', 'Suspense']", "['Fantasy', 'Young Adult', 'Fiction', 'Historical Fiction', 'Childrens', 'Middle Grade', 'Historical']", "['Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction']", "['Horror', 'Mystery', 'Middle Grade', 'Young Adult', 'Paranormal', 'Ghosts', 'Fantasy']", "['Fiction', 'Mystery', 'Contemporary', 'Drama', 'British Literature', 'Thriller', 'Crime']", "['History', 'Nonfiction', 'World War II', 'Military History', 'War', 'Military Fiction', 'Africa']", "['History', 'Nonfiction', 'War', 'Memoir', 'World War II', 'Military History', 'Military Fiction']", "['History', 'Nonfiction', 'War', 'World War II', 'Russia', 'Military History', 'Military Fiction']", "['Nonfiction', 'Biography', 'Christian', 'Memoir', 'Sports', 'Autobiography', 'Audiobook']", "['Young Adult', 'Science Fiction', 'Fiction', 'Fantasy', 'Middle Grade', 'Mystery', 'Childrens']", "['Fantasy', 'Childrens', 'Classics', 'Fiction', 'Time Travel', 'Middle Grade', 'Young Adult']", "['Horror', 'Classics', 'Fiction', 'Gothic', 'Fantasy', 'Mystery', 'Audiobook']", "['Picture Books', 'Dinosaurs', 'Childrens', 'Storytime', 'Fiction', 'Animals', 'Health']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Magical Realism', 'Science Fiction Fantasy', 'Magic', 'Canada']", "['Childrens', 'Classics', 'Picture Books', 'Fiction', 'Animals', 'Fantasy', 'Childrens Classics']", "['Politics', 'Nonfiction', 'Philosophy', 'History', 'Political Science', 'Humor', 'Autobiography']", "['Birds', 'Nature', 'Nonfiction', 'Memoir', 'Travel', 'Biography', 'Natural History']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Fiction', 'Contemporary Romance', 'Young Adult Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Fairy Tales', 'Fiction', 'Paranormal']", "['Spirituality', 'Metaphysics']", "['Medicine', 'Science', 'Medical']", "['Fantasy', 'Christian Fiction', 'Christian', 'Fiction', 'Christian Fantasy', 'Adventure', 'Young Adult']", "['Mystery', 'Fiction', 'Romantic Suspense', 'Suspense', 'Romance', 'Thriller', 'Crime']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Novels', 'Religion', 'American']", "['Historical Fiction', 'Fiction', 'Classics', 'Historical', 'African American', 'Africa', 'Race']", "['Horror', 'Fiction', 'Science Fiction', 'Vampires', 'Short Stories', 'Fantasy', 'Post Apocalyptic']", "['Theology', 'Psychology', 'Nonfiction', 'Mental Health', 'Self Help', 'Spirituality', 'Religion']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Short Stories', 'Magic', 'Mythology', 'Science Fiction Fantasy']", "['Fiction', 'Chick Lit', 'Romance', 'Historical Fiction', 'Time Travel', 'Fantasy', 'Historical']", "['Biography', 'Nonfiction', 'Memoir', 'Biography Memoir', 'Literature', '20th Century', 'Love']", "['Memoir', 'Nonfiction', 'Mental Health', 'Psychology', 'Biography', 'Biography Memoir', 'Mental Illness']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Fantasy', 'Thriller', 'Novels']", "['Christian', 'Religion', 'Nonfiction', 'Christianity', 'Faith', 'Christian Non Fiction', 'Spirituality']", "['Historical Fiction', 'Fiction', 'LGBT', 'Historical', 'Queer', 'War', 'World War II']", "['Horror', 'Fiction', 'Fantasy', 'Werewolves', 'Thriller', 'Supernatural', 'Paranormal']", "['Fiction', 'Catholic', 'Religion', 'Christian Fiction', 'Christian', 'Spirituality', 'Literature']", "['Classics', 'Fiction', 'Swedish Literature', 'Sweden', 'Scandinavian Literature', 'Romance', '20th Century']", "['Plays', 'Classics', 'Drama', 'Fiction', 'Russia', 'Theatre', 'Russian Literature']", "['Philosophy', 'Nonfiction', 'Psychology', 'Spirituality', 'Self Help', 'Religion', 'Buddhism']", "['Philosophy', 'Religion', 'Nonfiction', 'Theology', 'Spirituality', 'Judaism', 'Psychology']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'China', 'Cultural', 'Folklore']", "['Fiction', 'Thriller', 'Mystery', 'Religion', 'Historical Fiction', 'Novels', 'Books About Books']", "['Fiction', 'Noir', 'Mystery', 'Crime']", "['Humor', 'Nonfiction', 'Inspirational', 'Self Help', 'Philosophy', 'Biography', 'Memoir']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy', 'Adventure', 'Novels']", "['Art', 'Childrens', 'Nonfiction', 'Drawing']", "['Reference', 'Video Games', 'Childrens', 'Fiction', 'Fantasy', 'Guides', 'Science Fiction']", "['Religion', 'History', 'Theology', 'Christianity', 'Nonfiction', 'Politics', 'Spirituality']", "['Horror', 'Fiction', 'Paranormal', 'Thriller', 'Suspense', 'Mystery', 'Pulp']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Historical', 'Childrens']", "['Historical Fiction', 'Fiction', 'Holocaust', 'Historical', 'World War II', 'France', 'War']", "['Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Realistic Fiction', 'Historical Fiction', 'Juvenile']", "['Childrens', 'Adventure', 'Fiction', 'Mystery', 'Classics', 'Middle Grade', 'Young Adult']", "['Mystery', 'Childrens', 'Fiction', 'Adventure', 'Classics', 'Middle Grade', 'Young Adult']", "['History', 'Nonfiction', 'World War II', 'Espionage', 'Biography', 'War', 'Memoir']", "['Science', 'Mathematics', 'Nonfiction', 'Nature', 'Physics', 'Philosophy', 'Art']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dragons', 'Science Fiction Fantasy', 'High Fantasy', 'Magic']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'Dragons', 'High Fantasy', 'Magic']", "['History', 'Nonfiction', 'American History', 'Historical', '20th Century', 'Food', 'Audiobook']", "['Historical Fiction', 'Fiction', 'India', 'Romance', 'Historical', 'Historical Romance', 'Adventure']", "['Young Adult', 'Chick Lit', 'Contemporary', 'Romance', 'Fiction', 'High School', 'Teen']", "['Nonfiction', 'Biography', 'History', 'Christian', 'Memoir', 'Classics', 'Holocaust']", "['Fiction', 'Italian Literature', 'Portugal', 'Historical Fiction', 'Italy', 'Classics', 'Novels']", "['Classics', 'Short Stories', 'Fiction', 'Horror', 'School', 'Read For School', 'Historical Fiction']", "['Christian Fiction', 'Fiction', 'Christian', 'Fantasy', 'Christianity', 'Novels', 'Inspirational']", "['Fiction', 'Romance', 'Relationships', 'Contemporary', 'Southern']", "['Middle Grade', 'Childrens', 'Realistic Fiction', 'Young Adult', 'Fiction', 'Contemporary', 'Chick Lit']", "['Fiction', 'Thriller', 'Adventure', 'Aviation', 'Action', 'Mystery Thriller', 'Geology']", "['Horror', 'Fiction', 'Short Stories', 'Classics', 'Fantasy', 'Science Fiction', 'Weird Fiction']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Classics', 'Speculative Fiction', 'Collections']", "['Religion', 'Philosophy', 'Nonfiction', 'Spirituality', 'Psychology', 'Theology', 'Self Help']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Humor', 'Fantasy', 'Space Opera', 'Adventure']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Adventure', 'Military Fiction', 'Novels']", "['Poetry', 'Classics', 'France', 'French Literature', 'Fiction', '19th Century', 'Literature']", "['Historical Fiction', 'Childrens', 'Fiction', 'Christmas', 'Historical', 'Middle Grade', 'Chapter Books']", "['Fiction', 'Mystery', 'Crime', 'Noir', 'Classics', 'African American', 'Mystery Thriller']", "['Psychology', 'Nonfiction', 'Fairy Tales', 'Feminism', 'Mythology', 'Womens', 'Philosophy']", "['Romance', 'Contemporary Romance', 'Anthologies', 'Westerns', 'Harlequin', 'Western Romance', 'Silhouette']", "['Classics', 'Fiction', 'Italian Literature', 'Historical Fiction', 'Italy', 'Literature', 'Romance']", "['Historical Fiction', 'Young Adult', 'Fantasy', 'Poetry', 'Romance', 'Historical', 'Retellings']", "['Nonfiction', 'Self Help', 'Education', 'Books About Books', 'Writing', 'Reference', 'Personal Development']", "['Fiction', 'Horror', 'Thriller', 'Contemporary', 'Mystery', 'Classics', 'Scotland']", "['Fantasy', 'Horror', 'Fiction', 'Science Fiction', 'Dark Fantasy', 'Science Fiction Fantasy', 'Novels']", "['Science Fiction', 'Fantasy', 'Romance', 'Young Adult', 'Fiction', 'Robots', 'Dystopia']", "['Classics', 'Literature', 'Fiction', 'Poetry', 'Reference', 'Anthologies', 'Textbooks']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Heroic Fantasy', 'Science Fiction', 'Adventure', 'High Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Heroic Fantasy', 'Science Fiction Fantasy', 'Adventure', 'High Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Heroic Fantasy', 'Novels', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Heroic Fantasy', 'High Fantasy', 'Adventure', 'Sword and Sorcery']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Heroic Fantasy', 'High Fantasy', 'Sword and Sorcery', 'Epic']", "['History', 'Nonfiction', 'Medieval', 'European History', 'Medieval History', 'Historical', 'France']", "['Manga', 'Fantasy', 'Comics', 'Graphic Novels', 'Fiction', 'Young Adult', 'Adventure']", "['Childrens', 'Fiction', 'Middle Grade', 'Classics', 'Chapter Books', 'Realistic Fiction', 'Young Adult']", "['Young Adult', 'Fantasy', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Fairies', 'Supernatural']", "['Young Adult', 'Mystery', 'Romance', 'Contemporary', 'Fiction', 'Espionage', 'Adventure']", "['Fiction', 'Humor']", "['Politics', 'Nonfiction', 'History', 'Political Science', 'Society', 'Biography']", "['Politics', 'Nonfiction', 'History', 'Law', 'Political Science', 'American History', 'Philosophy']", "['Classics', 'Poetry', 'Fiction', 'Plays', 'Literature', 'Drama', 'Reference']", "['Horses', 'Childrens']", "['Poetry', 'Erotica']", "['Nonfiction', 'Science', 'Psychology', 'Neuroscience', 'Brain', 'Health', 'Self Help']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Historical Romance', 'Southern', 'Christian Fiction']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'Adventure', 'Action']", "['Fiction', 'Italy', 'Contemporary', 'Historical Fiction', 'Novels', 'Travel', 'Literary Fiction']", "['Religion', 'Lds', 'Church', 'Nonfiction', 'Mormonism', 'Spirituality', 'History']", "['Music', 'Nonfiction', 'History', 'Essays', 'Art', 'Cultural', 'Criticism']", "['Childrens', 'Fiction', 'Middle Grade', 'School', 'School Stories', 'British Literature', 'Mystery']", "['Memoir', 'Nonfiction', 'Biography', 'Westerns', 'History', 'Biography Memoir', 'Nature']", "['Fiction', 'Historical Fiction', 'Historical', 'Classics', 'Romance', 'Womens', 'Novels']", "['Fantasy', 'Horror', 'Fiction', 'Vampires', 'Audiobook', 'Dark Fantasy', 'High Fantasy']", "['Picture Books', 'Childrens', 'Humor']", "['Fiction', 'Historical Fiction', 'Classics', 'Literature', 'Historical', 'African American', 'Race']", "['Fiction', 'Classics', 'Humor', 'British Literature', 'Plays', 'Novels', 'Comedy']", "['Childrens', 'Chapter Books', 'Realistic Fiction', 'Humor', 'Fiction', 'Middle Grade', 'Juvenile']", "['Religion', 'Nonfiction', 'Spirituality']", "['Time Travel', 'Romance', 'Fantasy', 'Fiction', 'Science Fiction', 'Historical Fiction', 'Historical']", "['Picture Books', 'Childrens', 'Fiction', 'Classics', 'Fantasy', 'Italy', 'Magic']", "['Fiction', 'Classics', 'Chick Lit', 'Romance', 'Contemporary', 'Novels', 'Historical Fiction']", "['History', 'Politics', 'Nonfiction', 'Sociology', 'Philosophy', 'American History', 'Education']", "['Manga', 'Graphic Novels', 'Comics', 'Fiction', 'Fantasy', 'Graphic Novels Comics', 'Young Adult']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical Mystery', 'Historical', 'Crime', 'Mystery Thriller']", "['Romance', 'Contemporary Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Adult', 'Southern']", "['Romance', 'Fiction', 'Classics', 'School', 'France', 'Arthurian', 'Historical Fiction']", "['Fiction', 'Historical Fiction', 'Adventure', 'Fantasy', 'Historical', 'Literary Fiction', 'Jewish']", "['Fiction', 'Short Stories', 'Philosophy', 'Inspirational', 'Spirituality', 'Novels', 'Self Help']", "['Fiction', 'Dutch Literature', 'Roman', 'Literature', 'Drama', 'Romance', 'Contemporary']", "['Historical Fiction', 'Fiction', 'France', 'Romance', 'War', 'World War I', 'Historical']", "['Nonfiction', 'Mythology', 'Philosophy', 'Psychology', 'Writing', 'History', 'Religion']", "['Fiction', 'Classics', 'Historical Fiction', 'School', 'Novels', 'Literary Fiction', 'Literature']", "['Fiction', 'LGBT', 'Classics', 'Spanish Literature', 'Queer', 'Latin American', 'Literature']", "['Chick Lit', 'Fiction', 'Romance', 'Fantasy', 'Contemporary', 'Mystery', 'Magical Realism']", "['Spirituality', 'Self Help', 'Psychology', 'Nonfiction', 'Philosophy', 'New Age', 'Inspirational']", "['Fiction', 'Novels', 'Contemporary']", "['Young Adult', 'Fiction', 'Classics', 'Realistic Fiction', 'School', 'Teen', 'Banned Books']", "['Classics', 'Fiction', 'Mystery', 'Victorian', 'Gothic', '19th Century', 'Historical Fiction']", "['Westerns']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adult', 'Science Fiction']", "['Fantasy', 'Short Stories', 'Fiction']", "['Young Adult', 'Mystery', 'Fiction', 'Adventure', 'Fantasy', 'Middle Grade', 'Contemporary']", "['Classics', 'Short Stories', 'Fiction', 'Fantasy', 'Romance', 'Literature', 'Childrens']", "['Fantasy', 'Young Adult', 'Danish', 'Fiction', 'Childrens', 'Magic', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Danish', 'Fiction', 'Magic', 'Childrens', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Danish', 'Fiction', 'Childrens', 'Magic', 'Adventure']", "['Fantasy', 'Young Adult', 'Fiction', 'Danish', 'Dragons', 'Middle Grade', 'Childrens']", "['Young Adult', 'Fiction', 'Romance', 'Contemporary', 'Coming Of Age', 'Realistic Fiction', 'Poetry']", "['Fiction', 'Canada', 'Book Club', 'Contemporary', 'Canadian Literature', 'Adult Fiction', 'Audiobook']", "['Nonfiction', 'Science', 'Health Care']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Romance', 'Fantasy', 'Teen']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Tudor Period', 'Art', '16th Century']", "['Fiction', 'Classics', 'War', 'Novels', 'American', 'Literature', 'Psychology']", "['Poetry', 'Classics', 'Portuguese Literature', 'Portugal', 'Fiction', 'School', 'Literature']", "['Historical Fiction', 'Childrens', 'Fiction', 'Classics', 'Historical', 'Middle Grade', 'Young Adult']", "['Fiction', 'Classics', 'Thriller', 'Horror', 'Adventure', 'Literature', 'Novels']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Erotica', 'Shapeshifters', 'Fantasy', 'Erotic Romance']", "['Christian Fiction', 'Christian', 'Fiction', 'Mystery', 'Suspense', 'Romance', 'Dystopia']", "['Christian Fiction', 'Christian', 'Fiction', 'Mystery', 'Suspense', 'Dystopia', 'Thriller']", "['Mystery', 'Noir', 'Crime', 'Fiction', 'Classics', 'Novels', 'Thriller']", "['Horror', 'Fiction', 'Vampires', 'Science Fiction', 'Classics', 'Mystery', 'Psychology']", "['Horror', 'Fiction', 'Dark', 'Audiobook']", "['Religion', 'Lds', 'Nonfiction', 'Church', 'Self Help', 'Inspirational', 'Spirituality']", "['Religion', 'Nonfiction', 'Lds', 'Church', 'Self Help', 'Inspirational', 'Spirituality']", "['Religion', 'Lds', 'Nonfiction', 'Church', 'Spirituality', 'Lds Non Fiction', 'Theology']", "['Mystery', 'Crime', 'Fiction', 'Humor', 'Thriller', 'Mystery Thriller', 'Comedy']", "['Fiction', 'Italy', 'Italian Literature', 'Classics', 'Mystery', 'Crime', 'Literature']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Short Stories', 'Horror']", "['Fantasy', 'Fiction', 'Classics', 'High Fantasy', 'Epic Fantasy', 'Adventure', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Romance', 'Young Adult', 'Historical Fiction', 'Science Fiction Fantasy', 'High Fantasy']", "['Fiction', 'Historical Fiction', 'Classics', 'Young Adult', 'Childrens', 'Animals', 'Middle Grade']", "['Fiction', 'Historical Fiction', 'Classics', 'Literary Fiction', 'Novels', 'Southern', 'Historical']", "['Science Fiction', 'Short Stories', 'Fiction', 'Anthologies', 'Fantasy', 'Horror', 'Speculative Fiction']", "['Science Fiction', 'Short Stories', 'Fiction', 'Anthologies', 'Fantasy', 'Speculative Fiction', 'Horror']", "['Sports', 'Nonfiction', 'Biography', 'Reference']", "['Picture Books', 'Poetry', 'Childrens', 'Halloween', 'Animals', 'Fiction', 'Fantasy']", "['Spirituality', 'Nonfiction', 'Paranormal']", "['Spirituality', 'Nonfiction', 'Audiobook', 'Paranormal', 'Inspirational', 'Occult']", "['Spirituality']", "['Nonfiction', 'Spirituality']", "['Spirituality', 'Nonfiction', 'New Age', 'Paranormal']", "['Thriller', 'Fiction', 'Historical Fiction', 'Suspense', 'Mystery', 'Historical', 'Adventure']", "['Star Trek', 'Science Fiction', 'Fiction', 'Star Trek Original Series', 'Media Tie In', 'Science Fiction Fantasy', 'Space Opera']", "['Fiction', 'Science Fiction', 'German Literature', 'Germany', 'Literature', 'Classics', 'Dystopia']", "['Fiction', 'Fantasy', 'Mythology', 'Magical Realism', 'Greek Mythology', 'Audiobook', 'Humor']", "['Horror', 'Werewolves']", "['Mystery', 'Humor', 'Fiction', 'Crime', 'Comedy', 'Thriller', 'Audiobook']", "['Short Stories', 'Fiction', 'Anthologies', 'Queer', 'Poetry', 'Dark', 'Essays']", "['Nonfiction', 'Travel', 'History', 'Asia', 'War', 'Biography', 'Memoir']", "['Poetry', 'Classics', 'Greece', 'Literature', 'LGBT', 'Fiction', '20th Century']", "['Fiction', 'Classics', 'Romance', 'Asia', 'Russia', 'Russian Literature', 'Historical Fiction']", "['Fiction', 'Romance', 'Thriller', 'Legal Thriller', 'Mystery', 'Novels', 'United States']", "['Fiction', 'Contemporary', 'Novels', 'Scandinavian Literature', 'Humor', 'Literature', 'Young Adult']", "['Catholic']", "['Nonfiction', 'History', 'Religion', 'Conspiracy Theories', 'Mystery', 'Historical', 'Christianity']", "['Mystery', 'Historical Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Historical', 'Audiobook']", "['Poetry', 'Feminism', 'African American', 'Nonfiction', 'Classics', 'African American Literature', 'Race']", "['Polish Literature', 'Fiction', 'Poland', 'Classics', 'School', 'Literature', '20th Century']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Action', 'Adventure', 'Mystery Thriller']", "['Fiction', 'Travel', 'Thriller', 'Adventure', 'Contemporary', 'Asia', 'Novels']", "['Historical Fiction', 'Romance', 'Historical Romance', 'Historical', 'Fiction', 'War', 'Russia']", "['Short Stories', 'Fiction', 'Contemporary', 'Literature', 'American', 'Literary Fiction', 'Classics']", "['Mystery', 'Fiction', 'Crime', 'Classics', 'Detective', 'Audiobook', 'Thriller']", "['Fantasy', 'Animals', 'Middle Grade', 'Childrens', 'Fiction', 'Young Adult', 'Cats']", "['Fiction', 'Fantasy', 'Cats', 'Animals', 'Childrens', 'Adventure', 'Classics']", "['Fiction', 'Novels', 'Travel', 'Literary Fiction', 'Adventure', 'Classics', 'Literature']", "['Fiction', 'Historical Fiction', 'Classics', 'British Literature', 'Historical', 'Cozy Mystery', 'Humor']", "['Humor', 'Nonfiction', 'Comedy', 'Politics', 'Audiobook', 'Biography', 'Essays']", "['Classics', 'Historical Fiction', 'Fiction', 'Christian Fiction', 'Christian', 'Childrens', 'Historical']", "['Science', 'Nonfiction', 'Gardening', 'Nature', 'Sustainability']", "['Psychology', 'Nonfiction', 'Philosophy', 'Biography', 'Memoir', 'Spirituality', 'Autobiography']", "['Nonfiction', 'Biography', 'Memoir', 'Biography Memoir', 'History', 'Feminism', 'Womens']", "['Horror', 'Vampires', 'Fiction', 'Coming Of Age', 'Paranormal', 'Fantasy', 'Thriller']", "['Poetry', 'Music', 'Fiction', 'Humor', 'Art', 'Short Stories', 'Classics']", "['History', 'Military History', 'Military Fiction', 'Nonfiction', 'War', 'Naval History', 'European History']", "['Fantasy', 'Childrens', 'Middle Grade', 'Fiction', 'Adventure', 'Magic', 'Juvenile']", "['Fiction', 'Historical Fiction', 'Historical', 'Humor', 'Adult', 'Adventure']", "['Philosophy', 'Nonfiction', 'Metaphysics', 'Audiobook', 'Leadership', 'History', 'Logic']", "['Westerns', 'History']", "['Nonfiction', 'Art', 'Writing', 'Self Help', 'Spirituality', 'Psychology', 'Personal Development']", "['Childrens', 'Picture Books']", "['Fiction', 'Historical Fiction', 'Australia', 'War', 'School', 'Historical', 'Literature']", "['Pulp', 'Mystery', 'Fiction', 'Adventure', 'Crime', 'Action', 'Thriller']", "['Classics', 'Fiction', 'Literature', 'School', 'Africa', 'Historical Fiction', 'Novels']", "['Fiction', 'Classics', 'India', 'Novels', 'Indian Literature', 'Drama', 'Literature']", "['Fiction', 'Literature', 'Classics', 'Novels', 'American', 'Erotica', 'The United States Of America']", "['Psychology', 'Nonfiction', 'Health', 'Mental Health', 'Science', 'Self Help', 'Medicine']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Heroic Fantasy', 'Adventure', 'Sword and Sorcery']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Adult', 'Epic Fantasy', 'High Fantasy', 'Unfinished']", "['Fantasy', 'Fiction', 'High Fantasy', 'Magic', 'Epic Fantasy', 'Science Fiction Fantasy', 'Demons']", "['Fiction', 'Feminism', 'Literary Fiction', 'Novels', 'Contemporary', 'Womens', 'Adult']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'World War II', 'Adult', 'Adult Fiction']", "['Religion', 'Nonfiction', 'Philosophy', 'Theology', 'Christian', 'Atheism', 'Christianity']", "['Fantasy', 'Young Adult', 'Time Travel', 'Historical Fiction', 'Science Fiction', 'Fiction', 'Middle Grade']", "['Fiction', 'Romance', 'France', 'Humor', 'Classics', 'British Literature', 'Historical Fiction']", "['Philosophy', 'Science']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Horror', 'Spiritualism', 'Thriller']", "['Feminism']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Espionage', 'Audiobook', 'Mystery Thriller']", "['Short Stories', 'Fiction', 'Spanish Literature', 'Classics', 'Latin American', 'Literature', 'Magical Realism']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Humor', 'Childrens', 'Adventure']", "['Fiction', 'Historical Fiction', 'Contemporary', 'LGBT', 'France', 'British Literature', 'Novels']", "['Picture Books', 'Childrens', 'Monsters', 'Storytime', 'Humor', 'Fiction', 'Fantasy']", "['Fiction', 'Historical Fiction', 'Italy', 'Italian Literature', 'Literature', 'Novels', 'Classics']", "['Science Fiction', 'Fiction', '40k', 'Fantasy', 'Audiobook', 'War', 'Space Opera']", "['Fiction', 'Science Fiction', 'Dystopia', 'Lds Fiction', 'Young Adult', 'Lds', 'Fantasy']", "['Erotica', 'Romance', 'Paranormal', 'Paranormal Romance', 'Fantasy', 'Erotic Romance', 'Shapeshifters']", "['Fantasy', 'Steampunk', 'Fiction', 'Dark Fantasy', 'Horror', 'Angels', 'Science Fiction']", "['Art', 'Nonfiction', 'Drawing', 'Reference', 'Psychology', 'Self Help', 'Design']", "['Fiction', 'Historical Fiction', 'Romance', 'Love', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Espionage', 'Thriller', 'Mystery', 'War', 'World War II']", "['History', 'Nonfiction', 'American History', 'Politics', 'American', '19th Century', 'The United States Of America']", "['History', 'Nonfiction', 'Biography', 'Memoir', 'German Literature', 'Literature', '20th Century']", "['Picture Books', 'Animals', 'Childrens']", "['Doctor Who', 'Science Fiction', 'Fiction']", "['India', 'History', 'Nonfiction', 'Politics', 'Indian Literature', 'Cultural', 'Political Science']", "['Fiction', 'War', 'Historical Fiction', 'World War I', 'Military Fiction', 'Classics', 'Novels']", "['Short Stories', 'Fiction', 'LGBT', 'Literature', 'Literary Fiction', 'Contemporary', 'Gay']", "['Science Fiction', 'Fiction', 'Space Opera', 'Singularity', 'Fantasy', 'Hard Science Fiction', 'Science Fiction Fantasy']", "['Poetry', 'Fiction', 'Literature', 'Collections', 'American', '20th Century', 'Poetry Plays']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure']", "['Fiction', 'Australia', 'Historical Fiction', 'Magical Realism', 'Literature', 'Literary Fiction', 'Novels']", "['Romance', 'Historical Romance', 'Medieval', 'Historical', 'Medieval Romance', 'Paranormal', 'Historical Fiction']", "['Mystery', 'Crime', 'Fiction', 'Scotland', 'Thriller', 'Mystery Thriller', 'Detective']", "['Biography', 'Nonfiction', 'Autobiography', 'India', 'Indian Literature', 'Inspirational', 'Memoir']", "['Classics', 'Fiction', 'Historical Fiction', 'British Literature', 'Scotland', 'Family', 'Novels']", "['History', 'Nonfiction', 'Politics', 'Science', 'Eugenics', 'Race', 'American History']", "['Fiction', 'France', 'Classics', 'Novels', 'French Literature', 'Roman', 'School']", "['Feminism', 'Nonfiction', 'Race', 'History', 'Politics', 'Theory', 'Social Justice']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Speculative Fiction', 'Novels', 'Science Fiction Fantasy', 'Dystopia']", "['Turkish Literature', 'Classics', 'Turkish', 'Fiction', 'Romance', 'Historical Fiction', 'Novels']", "['Short Stories', 'Fiction', 'Literature', 'Iran', 'Novels', 'Humor', 'Classics']", "['Historical Fiction', 'Fiction', 'Adventure', 'Classics', 'Historical', 'War', 'Military Fiction']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Romance', 'Fiction', 'Magic', 'Teen']", "['Spirituality', 'Biography', 'Nonfiction', 'Philosophy', 'Religion', 'Autobiography', 'Memoir']", "['Historical Fiction', 'Young Adult', 'Fantasy', 'Mythology', 'Historical', 'Fiction', 'Greek Mythology']", "['Humor', 'Nonfiction', 'Reference']", "['Classics', 'Fiction', 'France', 'French Literature', '19th Century', 'Roman', 'Novels']", "['Fiction', 'Historical Fiction', 'German Literature', 'Historical', 'Germany', 'Novels', 'Travel']", "['Fiction', 'Mystery', 'Thriller', 'Historical Fiction', 'Adventure', 'Suspense', 'Novels']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'African American', 'Fantasy', 'Mystery', 'Speculative Fiction']", "['Fiction', 'Historical Fiction', 'Historical', 'Adult Fiction', 'Fantasy', 'Magical Realism']", "['Philosophy', 'Religion', 'Theology', 'Nonfiction', 'Christianity', 'Atheism', 'Christian']", "['Fiction', 'Historical Fiction', 'Space', 'Science Fiction', 'Historical', 'Novels', 'Adventure']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Retellings', 'Realistic Fiction', 'High School']", "['Romance', 'Fiction', 'Historical Fiction', 'Historical', 'Chick Lit', 'Contemporary', 'Novels']", "['Fiction', 'Modern', 'Novels']", "['Classics', 'Fiction', 'Childrens', 'Historical Fiction', 'Young Adult', 'Adventure', 'Historical']", "['Nonfiction', 'Classics', 'Philosophy', 'Religion', 'Spirituality', 'History', 'Theology']", "['History', 'Nonfiction', 'Holocaust', 'Psychology', 'War', 'World War II', 'Historical']", "['Buddhism', 'Spirituality', 'Nonfiction', 'Self Help', 'Philosophy', 'Religion', 'Short Stories']", "['Horror', 'Short Stories', 'Weird Fiction']", "['Fiction', 'Childrens', 'Animals', 'Young Adult', 'Dogs', 'Middle Grade', 'School']", "['Fiction', 'Humor', 'Classics', 'Historical Fiction', 'School', 'Comedy', 'British Literature']", "['Classics', 'Hungarian Literature', 'Plays', 'Fiction', 'Drama', 'Poetry', 'Philosophy']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Business', 'Mental Health', 'Inspirational']", "['Fiction', 'Fantasy', 'Magical Realism', 'Historical Fiction', 'Classics', 'Feminism', 'Novels']", "['Hungarian Literature', 'Classics', 'Fiction', 'Hungary', 'Literature', 'Historical Fiction', 'School']", "['Fiction', 'Novels', 'Literary Fiction', 'Literature', 'Classics', 'British Literature', '20th Century']", "['Nonfiction', 'Biography', 'Memoir', 'Science', 'Psychology', 'Audiobook', 'Biography Memoir']", "['Philosophy', 'Nonfiction', 'Politics', 'Anthropology', 'Psychology', 'Academic', '20th Century']", "['Nonfiction', 'History', 'Biography', 'World War II', 'Espionage', 'War', 'Historical']", "['LGBT', 'Queer', 'Nonfiction', 'Short Stories', 'Poetry', 'Lesbian', 'Anthologies']", "['Fiction', 'LGBT', 'Scandinavian Literature', 'Novels', 'Romance', 'Young Adult', 'Contemporary']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'Horror']", "['Fiction', 'Humor', 'Literary Fiction', 'Contemporary', 'Novels', 'Literature', 'Audiobook']", "['Historical Romance', 'Romance', 'Historical', 'Westerns', 'Historical Fiction', 'Disability', 'Western Romance']", "['Fiction', 'Choose Your Own Adventure', 'Chick Lit', 'Contemporary', 'Short Stories', 'Adult', 'Adult Fiction']", "['Psychology', 'Nonfiction', 'Science', 'True Crime', 'Sociology', 'Mental Health', 'Medicine']", "['Fantasy', 'Fiction', 'Magic', 'Epic Fantasy', 'High Fantasy', 'Adventure', 'Science Fiction Fantasy']", "['Young Adult', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Mental Illness', 'Contemporary', 'Psychology']", "['Novels', 'Fiction', 'Literature', 'French Literature', 'France', 'Roman', 'Romance']", "['Fiction', 'Historical Fiction', 'Historical', 'Roman', 'Fantasy', 'German Literature', 'Germany']", "['Comics', 'Graphic Novels', 'Marvel', 'Comic Book', 'Crime', 'Graphic Novels Comics', 'Fiction']", "['Historical Fiction', 'Fiction', 'Asia', 'Classics', 'Asian Literature', 'Novels', 'Travel']", "['Essays', 'Nonfiction', 'Memoir', 'Short Stories', 'Literature', 'American', 'Philosophy']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Fantasy', 'Humor']", "['Fiction', 'Classics', 'Mystery', 'Novella', 'Thriller', 'Literary Fiction', '20th Century']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Ghosts', 'British Literature', 'Paranormal']", "['Science Fiction', 'Fantasy', 'Fiction', 'Time Travel', 'Speculative Fiction', 'Science Fiction Fantasy', 'Humor']", "['Short Stories', 'Fiction', 'Gothic', 'Classics', 'Horror', 'Danish', 'Literature']", "['Fantasy', 'Dragons', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens']", "['Fiction', 'Classics', 'Africa', 'Novels', 'Historical Fiction', 'Literature', 'African Literature']", "['Religion', 'Spirituality', 'Christian', 'Psychology', 'Nonfiction']", "['History', 'Nonfiction', 'Politics', 'Philosophy', 'Sociology', 'Economics', 'Psychology']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Mythology', 'Teen', 'Action']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Magic', 'LGBT', 'Queer']", "['Fiction', 'Mythology', 'Unfinished', 'British Literature', 'Novels', 'Historical Fiction', 'Literary Fiction']", "['Fiction', 'Short Stories', 'Classics', 'Historical Fiction', 'American', 'Literature', 'Literary Fiction']", "['Christian', 'Theology', 'Nonfiction', 'Christianity', 'Christian Living', 'Religion', 'Faith']", "['Classics', 'Fantasy', 'Fiction', 'Arthurian', 'Mythology', 'Historical Fiction', 'Medieval']", "['Nonfiction', 'Occult', 'History', 'Witchcraft', 'Horror', 'Paranormal', 'Reference']", "['Historical Fiction', 'France', 'Fiction', 'Historical', 'Romance', '17th Century', 'Historical Romance']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Adult Fiction', 'Novels', 'Audiobook', 'Novella']", "['Picture Books', 'Childrens', 'History']", "['Historical Fiction', 'Fiction']", "['Fantasy', 'Childrens', 'Fairy Tales', 'Fiction', 'Middle Grade', 'Young Adult', 'Romance']", "['Young Adult', 'Fantasy', 'Witches', 'Paranormal', 'Magic', 'Romance', 'Fiction']", "['Religion', 'Philosophy', 'Nonfiction']", "['Biography', 'Nonfiction', 'Sports', 'Autobiography', 'Memoir', 'Biography Memoir']", "['Biography', 'Nonfiction', 'Sports', 'Memoir', 'Autobiography', 'History']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Young Adult', 'Classics', 'Fantasy']", "['Nonfiction', 'Horror', 'True Crime', 'Biography', 'Psychology', 'Memoir', 'Occult']", "['Fiction', 'Fantasy', 'Classics', 'Mythology', 'School', 'Literature', 'Novels']", "['Music', 'Nonfiction', 'Biography', 'Biography Memoir', '21st Century', 'Reference']", "['Doctor Who', 'Science Fiction', 'Audiobook', 'Fiction', 'Time Travel', 'Historical Fiction', 'Media Tie In']", "['Doctor Who', 'Science Fiction', 'Fiction', 'Fantasy', 'British Literature', 'Time Travel']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Realistic Fiction', 'Teen']", "['Fiction', 'Novels', 'Literary Fiction']", "['Horror', 'Short Stories', 'Fiction', 'Classics', 'Ghost Stories', 'Gothic', 'Fantasy']", "['Classics', 'Horror', 'German Literature', 'Fiction', 'Short Stories', 'School', 'Gothic']", "['Judaism', 'Judaica', 'Philosophy']", "['Nonfiction', 'History', 'Language', 'Travel', 'Humor', 'Linguistics', 'Audiobook']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Suspense', 'Spanish Literature', 'Italy']", "['Classics', 'German Literature', 'Fiction', 'Short Stories', 'Germany', 'Literature', '20th Century']", "['Fantasy', 'Childrens', 'Fiction', 'Classics', 'Finnish Literature', 'Middle Grade', 'Adventure']", "['Classics', 'Fantasy', 'Fiction', 'Adventure', 'Africa', '19th Century', 'Historical Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Classics', 'Biography Memoir', 'Coming Of Age']", "['Nonfiction', 'History', 'Holocaust', 'Memoir', 'Biography', 'World War II', 'Historical']", "['Historical Fiction', 'Fiction', 'Civil War', 'War', 'Historical', 'Military Fiction', 'Classics']", "['Fiction', 'Humor', 'Fantasy', 'Roman', 'German Literature', 'British Literature', 'Novels']", "['Islam', 'Religion', 'History', 'Nonfiction', 'Theology', 'Christianity']", "['Fiction', 'Short Stories', 'Russia', 'Russian Literature', 'Classics', 'Literature', 'Humor']", "['Philosophy', 'Christian', 'Theology', 'Nonfiction', 'Christianity', 'Religion', 'Christian Living']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Science Fiction', 'Epic Fantasy', 'High Fantasy', 'Epic']", "['Nonfiction', 'Self Help', 'Spirituality', 'Buddhism', 'Philosophy', 'Psychology', 'Religion']", "['Fantasy', 'Young Adult', 'Paranormal', 'Fiction', 'Supernatural', 'Ghosts', 'Science Fiction']", "['Romance', 'Middle Grade', 'Fiction', 'Childrens', 'Realistic Fiction', 'Contemporary', 'Chick Lit']", "['Historical Fiction', 'Christian Fiction', 'Fiction', 'Christian', 'Historical', 'World War II', 'Romance']", "['Historical Fiction', 'Historical', 'German Literature', 'Fiction', 'Audiobook', 'British Literature', 'Fantasy']", "['Science Fiction']", "['Fiction', 'Historical Fiction', 'China', 'Asia', 'Contemporary', 'Asian Literature', 'Novels']", "['History', 'Nonfiction', 'Biography', 'Historical', 'Medieval', 'France', 'European History']", "['Music', 'Biography', 'Nonfiction', 'Biography Memoir', 'History', 'Memoir', 'Rock N Roll']", "['Historical Fiction', 'Arthurian', 'Fantasy', 'Fiction', 'Romance', 'Historical', 'Medieval']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Fantasy', 'Supernatural', 'Mystery']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Humor', 'Coming Of Age', 'School']", "['Fiction', 'Dystopia', 'Science Fiction', 'Young Adult', 'Chick Lit']", "['Fiction', 'Classics', 'India', 'Indian Literature', 'Novels', 'Literature', 'Unfinished']", "['Fiction', 'Russia', 'Historical Fiction', 'Russian Literature', 'War', 'Jewish', 'Holocaust']", "['Philosophy', 'Science', 'Psychology', 'Nonfiction', 'Biology', 'Neuroscience', 'Anthropology']", "['Birds', 'Nature', 'Nonfiction', 'Science', 'Natural History', 'Animals', 'Biology']", "['Fiction', 'Swedish Literature', 'Scandinavian Literature', 'Roman', 'Sweden', 'Classics', 'Contemporary']", "['Mystery', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade', 'Mystery Thriller', 'Crime']", "['Science Fiction', 'Fiction', 'Novels', 'Speculative Fiction', 'Science Fiction Fantasy', 'Time Travel', 'Classics']", "['Science Fiction', 'Fiction', 'Novels', 'Dystopia', 'Science Fiction Fantasy', 'Speculative Fiction', 'Classics']", "['Economics', 'Nonfiction', 'Psychology', 'Business', 'Self Help', 'Personal Development', 'Social Science']", "['Regency', 'Romance', 'Historical Romance', 'Historical', 'Fiction', 'Traditional Regency', 'Historical Fiction']", "['Fiction', 'Contemporary', 'Terrorism', 'Literary Fiction', 'Adult Fiction', 'Adult', 'War']", "['Occult', 'Thelema', 'Magick', 'Nonfiction', 'Magic', 'Spirituality', 'Esoterica']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Classics', 'Childrens', 'Historical', 'Middle Grade']", "['Spirituality', 'Nonfiction', 'Self Help', 'Science', 'Health', 'Personal Development', 'Metaphysics']", "['Philosophy', 'Religion', 'Atheism', 'Nonfiction', 'Theology', 'Christianity', 'Spirituality']", "['Crime', 'Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Detective', 'Suspense']", "['Paranormal Romance', 'Paranormal', 'Vampires', 'Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Fiction', 'Classics', 'LGBT', 'Germany', 'Queer', '20th Century', 'Historical Fiction']", "['Fantasy', 'Science Fiction Fantasy']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Asia', 'Mystery Thriller', 'Detective']", "['Historical Fiction', 'Christian Fiction', 'Romance', 'Fiction', 'Christian', 'Historical', 'Christian Romance']", "['Religion', 'Lds', 'Church', 'Nonfiction', 'Inspirational', 'Spirituality', 'Self Help']", "['Lds', 'Religion', 'Nonfiction', 'Church', 'Inspirational', 'Spirituality', 'Self Help']", "['Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Space Opera', 'Aliens']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Historical Fiction', 'Audiobook', 'New York', 'Novels']", "['Fiction', 'Classics', 'Australia', 'Literature', 'Historical Fiction', 'Novels', '20th Century']", "['Nonfiction', 'Military Fiction', 'History', 'War', 'Biography', 'Memoir', 'Military History']", "['Fantasy', 'Young Adult', 'Christian Fiction', 'Christian', 'Fiction', 'Adventure', 'Middle Grade']", "['Horror', 'Fiction', 'Splatterpunk', 'Thriller', 'Pulp', 'Paranormal', 'Zombies']", "['Historical Fiction', 'Romance', 'Young Adult', 'Historical', 'Fiction', 'Historical Romance', 'Russia']", "['Self Help', 'Nonfiction', 'Inspirational', 'Business', 'Personal Development', 'Indian Literature', 'Education']", "['Historical Fiction', 'Fiction', 'Young Adult', 'School', 'Historical', 'Childrens', 'Middle Grade']", "['Young Adult', 'Romance', 'Fiction', 'Dystopia', 'Fantasy', 'Science Fiction', 'Contemporary']", "['Christmas', 'Fantasy', 'Classics', 'Fiction', 'Childrens', 'Holiday', 'Young Adult']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Audiobook', 'Contemporary Romance', 'Novels']", "['Philosophy', 'Classics', 'Poetry', 'Nonfiction', 'Essays', 'Literature', 'History']", "['Science Fiction', 'Fiction', 'Classics', 'Dystopia', 'Literature', 'Novels', 'Post Apocalyptic']", "['Fiction', 'Jewish', 'Classics', 'Historical Fiction', 'Nobel Prize', 'Novels', 'Poland']", "['Theology', 'Philosophy', 'Nonfiction']", "['Fiction', 'Historical Fiction', 'War', 'World War II', 'Novels', 'American', 'Historical']", "['Theology', 'Philosophy', 'Religion']", "['Young Adult', 'Adventure', 'Realistic Fiction', 'Fiction', 'Survival', 'Middle Grade', 'Sports']", "['History', 'Nonfiction', 'Russia', 'Russian History', 'Politics', 'Soviet Union', 'Historical']", "['Fiction', 'Magical Realism', 'Historical Fiction', 'Classics', 'Fantasy', 'British Literature', 'Novels']", "['Horror', 'Fantasy', 'Fiction', 'Witches', 'Gothic', 'Classics', 'Science Fiction']", "['Christian', 'Fiction', 'Christian Fiction', 'Classics', 'Historical Fiction', 'Christian Living', 'Christianity']", "['Nonfiction', 'Feminism', 'Politics', 'History', 'Gender', 'Terrorism', 'Sociology']", "['Classics', 'Fiction', 'Brazil', 'Romance', 'Portuguese Literature', 'Literature', 'Latin American']", "['Fantasy', 'Vampires', 'Young Adult', 'Pirates', 'Adventure', 'Fiction', 'Paranormal']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Magic', 'Christian Fiction', 'Christian']", "['Classics', 'Horror', 'Gothic', '19th Century', 'British Literature', 'Victorian', 'Fiction']", "['Classics', 'Plays', 'Romanticism', '19th Century', 'Horror']", "['Romance', 'Science Fiction', 'Paranormal', 'Time Travel', 'Aliens', 'Fantasy', 'Futuristic']", "['Classics', 'Childrens', 'Fiction', 'Young Adult', 'Historical Fiction', 'Middle Grade', '19th Century']", "['Horror']", "['Fiction', 'Classics', 'Southern', 'Literary Fiction', 'Historical Fiction', '20th Century', 'American']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'School', 'Realistic Fiction', 'Childrens']", "['Islam', 'Science', 'Religion', 'Nonfiction']", "['Fiction', 'India', 'Indian Literature', 'Classics', 'Humor', 'Childrens', 'Short Stories']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'School', 'Fantasy', 'Gothic']", "['Fiction', 'Mystery', 'Humor', 'Books About Books', 'Novels', 'Contemporary', 'Unfinished']", "['Science Fiction', 'Fiction', 'Polish Literature', 'Dystopia', 'Humor', 'Fantasy', 'Novels']", "['Horror', 'Fiction', 'Splatterpunk', 'Thriller', 'Supernatural']", "['Childrens', 'Mystery', 'Fiction', 'Adventure', 'Middle Grade', 'Classics', 'Indonesian Literature']", "['Politics', 'History', 'American', 'Nonfiction']", "['Mystery', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'Detective', 'Crime']", "['Classics', 'Mystery', 'Fiction', 'Crime', 'Detective', 'Audiobook', 'Mystery Thriller']", "['Nonfiction', 'Spirituality', 'Self Help', 'Personal Development']", "['Classics', 'Fiction', 'Childrens', 'Animals', 'Fantasy', 'Young Adult', 'Nature']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Science Fiction Fantasy', 'Novels']", "['Plays', 'Classics', 'Drama', 'Theatre', 'Fiction', 'Italian Literature', 'Italy']", "['Classics', 'Czech Literature', 'School', 'Holocaust', 'Fiction', 'War', 'Historical Fiction']", "['Young Adult', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Childrens', 'Contemporary', 'Coming Of Age']", "['Politics', 'Nonfiction', 'Philosophy', 'History', 'Biography', 'Linguistics', 'Theory']", "['Romance', 'Time Travel', 'Historical Romance', 'Fantasy', 'Paranormal Romance', 'Paranormal', 'Historical']", "['Fiction', 'Historical Fiction', 'Canada', 'Adult Fiction', 'Book Club', 'Contemporary', 'Novels']", "['Religion', 'Nonfiction', 'Lds', 'Church', 'Spirituality', 'History', 'Christian']", "['Classics', 'Fiction', 'Short Stories', 'Fantasy', 'Audiobook', 'American', 'Literature']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'British Literature', 'Detective', 'Thriller']", "['Mystery', 'Horror', 'Middle Grade', 'Fiction', 'Childrens', 'Young Adult', 'Paranormal']", "['Fiction', 'Historical Fiction', 'Classics', 'British Literature', 'Novels', '20th Century', 'War']", "['Nonfiction', 'True Crime', 'Journalism', 'Crime', 'Psychology', 'Writing', 'Essays']", "['Nonfiction', 'Economics', 'Politics', 'Business', 'History', 'International Relations', 'Sociology']", "['Fiction', 'Short Stories', 'Novels', 'Literature', 'German Literature', 'Romance', 'Audiobook']", "['Philosophy', 'Politics', 'Nonfiction', 'Essays', 'History', 'Society', 'Sociology']", "['Classics', 'Plays', 'Drama', 'Mythology', 'Fiction', 'School', 'Literature']", "['Plays', 'Classics', 'France', 'Fiction', 'Drama', 'Theatre', 'French Literature']", "['Comics', 'Graphic Novels', 'Marvel', 'Spider Man', 'Fiction', 'Superheroes', 'Comic Book']", "['Mystery', 'Classics', 'Fiction', 'Crime', 'Short Stories', 'Detective', 'Audiobook']", "['Catholic', 'Nonfiction', 'Biography', 'Spirituality', 'Faith', 'Christian', 'Religion']", "['Fiction', 'Horror', 'Young Adult', 'Romance', 'Gothic', 'Mystery', 'Drama']", "['Parenting', 'Nonfiction', 'Self Help']", "['Fiction', 'Short Stories', 'Classics', 'France', 'Nature', 'French Literature', 'Philosophy']", "['Horror', 'Fiction', 'Fantasy', 'Lovecraftian', 'Weird Fiction', 'Gothic', 'Supernatural']", "['Romance', 'Paranormal', 'Historical Romance', 'Paranormal Romance', 'Fantasy', 'Fiction', 'Historical Fiction']", "['Nonfiction', 'Animals', 'Africa', 'Biography', 'Nature', 'Memoir', 'Classics']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'Adventure']", "['Theology', 'Christian', 'Christianity', 'Church', 'Religion', 'Discipleship', 'Spirituality']", "['Turkish Literature', 'Fiction', 'Turkish', 'Roman', 'Literature', 'Classics', 'Novels']", "['Romance', 'Romantic Suspense', 'Suspense', 'Military Fiction', 'Contemporary', 'Contemporary Romance', 'Fiction']", "['Fiction', 'Contemporary', 'Adult Fiction', 'Humor', 'Audiobook', 'Book Club', 'Family']", "['Horror', 'Vampires', 'Fantasy', 'Classics', 'Gothic', 'Fiction', 'Humor']", "['Science Fiction', 'Fiction', 'Russia', 'Fantasy', 'Russian Literature', 'Classics', 'Dystopia']", "['Picture Books', 'Childrens', 'Fiction', 'Monsters', 'Fantasy', 'Classics', 'Storytime']", "['Historical Fiction', 'Ireland', 'Fiction', 'Irish Literature', 'Literature', 'Classics', 'Historical']", "['Fiction', 'Classics', 'Short Stories', 'Germany', 'LGBT', 'Historical Fiction', 'Queer']", "['Nonfiction', 'Psychology', 'Memoir', 'Biography', 'Mental Health', 'Mental Illness', 'Autobiography']", "['Fiction', 'Fantasy', 'Italian Literature', 'Short Stories', 'Classics', 'Italy', 'Literature']", "['Fantasy', 'Horror', 'Fiction', 'Halloween', 'Classics', 'Young Adult', 'Middle Grade']", "['Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Novels', 'Space Opera']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Space Opera', 'Audiobook', 'Adventure']", "['Historical Fiction', 'Young Adult', 'Romance', 'Retellings', 'Fiction', 'Historical', 'Fantasy']", "['Romance', 'Fantasy', 'Paranormal', 'Fiction', 'Paranormal Romance', 'Contemporary Romance', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Egypt', 'Classics', 'Novels', 'Literature', 'Nobel Prize']", "['Philosophy', 'Nonfiction', 'Psychology', 'Language', 'Essays', 'Classics', 'Science']", "['Fiction', 'Classics', 'Spanish Literature', 'Novels', 'Romance', 'Latin American Literature', 'Literature']", "['Fiction', 'Classics', 'Brazil', 'Literary Fiction', 'Novels', 'Literature', 'Latin American']", "['Fiction', 'Japan', 'Classics', 'Japanese Literature', 'Literature', 'Novels', 'Asia']", "['Fiction', 'Horror', 'Gothic', 'Novella', 'Contemporary', 'Literary Fiction', 'Literature']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Russia', 'Mystery Thriller', 'Espionage']", "['Chick Lit', 'Fiction', 'Romance', 'Adult', 'Contemporary', 'Contemporary Romance', 'Womens Fiction']", "['Business', 'Leadership', 'Nonfiction', 'Management', 'Self Help', 'Personal Development', 'Productivity']", "['Poetry', 'Fiction', 'Classics', 'The United States Of America', 'American', '20th Century', 'Literature']", "['Plays', 'Poetry', 'Fiction', 'Classics', 'Drama', 'Theatre', 'Literature']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'Spy Thriller', 'Action']", "['Plays', 'Drama', 'Theatre', 'France', 'Fiction', 'Humor', 'Classics']", "['Poetry', 'African American', 'Nonfiction', 'Classics', 'Feminism', '20th Century', 'Race']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Horror', 'Thriller']", "['Fantasy', 'Dragons', 'Young Adult', 'Fiction', 'Romance', 'High Fantasy', 'Childrens']", "['Philosophy', 'Nonfiction', 'Theory', 'Literary Criticism', 'France', 'Essays', 'Criticism']", "['Fantasy', 'Childrens', 'Classics', 'Fiction', 'Adventure', 'Middle Grade', 'Juvenile']", "['Philosophy', 'Film', 'Nonfiction', 'Theory', 'Art', 'France', 'Cultural Studies']", "['Philosophy', 'Nonfiction', 'Theory', 'France', 'Psychology', 'Metaphysics', 'Psychoanalysis']", "['Philosophy', 'Nonfiction', 'Theory', 'France', 'Literary Criticism', 'Writing', 'Language']", "['Picture Books', 'Art', 'Childrens', 'Fiction', 'Realistic Fiction', 'Growth Mindset', 'Inspirational']", "['Fiction', 'Short Stories', 'Classics', 'Historical Fiction', 'African American', 'Literary Fiction', 'Contemporary']", "['Japan', 'Short Stories', 'Japanese Literature', 'Horror', 'Gothic', 'Fiction', 'Classics']", "['Japanese Literature', 'Horror', 'Short Stories', 'Japan', 'Gothic', 'Fantasy', 'Literature']", "['Comics', 'Humor', 'Graphic Novels', 'Comic Strips', 'Animals', 'Fiction', 'Cartoon']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Classics', 'Fantasy', 'Kids']", "['Young Adult', 'Fiction', 'Romance', 'Contemporary', 'Realistic Fiction', 'India', 'Coming Of Age']", "['Fiction', 'France', 'French Literature', 'Classics', 'Crime', 'Roman', 'Novels']", "['Picture Books', 'Childrens', 'Animals', 'Fiction', 'Humor', 'Fantasy', 'Storytime']", "['History', 'Nonfiction', 'War', 'World War II', 'Politics', 'Germany', 'Historical']", "['History', 'Nonfiction', 'Philosophy', 'World History', 'Classics', 'Sociology', 'Historical']", "['Historical Fiction', 'Mystery', 'Fiction', 'Crime', 'Thriller', 'Historical', 'Mystery Thriller']", "['Biography', 'Music', 'Nonfiction']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Classics', 'Humor', 'Fantasy']", "['Horror', 'Short Stories', 'Fiction', 'Classics', 'Gothic', 'Fantasy', 'Ghost Stories']", "['Fantasy', 'Young Adult', 'Fiction', 'Horror', 'Adventure', 'Magic', 'Science Fiction Fantasy']", "['Fiction', 'Spirituality', 'Philosophy', 'Buddhism', 'Fantasy', 'Occult', 'Historical Fiction']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adult', 'Dragons', 'Adventure']", "['Historical Fiction', 'Fiction', 'Classics', 'Young Adult', 'Historical', 'School', 'Adventure']", "['Nonfiction', 'History', 'Holocaust', 'Biography', 'War', 'World War II', 'Historical']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Post Apocalyptic', 'Classics', 'Adventure']", "['Graphic Novels', 'Comics', 'Nonfiction', 'History', 'Politics', 'War', 'Graphic Novels Comics']", "['Atheism', 'Nonfiction', 'Religion', 'Philosophy', 'Spirituality', 'Reference', 'Humor']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Humor', 'Family', 'Fantasy']", "['School', 'Young Adult', 'Fiction', 'Self Help', 'Spanish Literature', 'Contemporary', 'Classics']", "['Classics', 'Fiction', 'Fantasy', 'Childrens', 'Adventure', 'Swedish Literature', 'Nobel Prize']", "['History', 'Nonfiction', 'War', 'Military Fiction', 'World War II', 'Biography', 'Memoir']", "['Fiction', 'Classics', 'Historical Fiction', 'Novels', 'Literature', 'Ireland', 'British Literature']", "['Nonfiction', 'Memoir', 'History', 'Biography', 'Biography Memoir', 'Historical', 'Autobiography']", "['Science Fiction', 'Space Opera', 'Military Fiction', 'Fiction', 'Fantasy', 'Military Science Fiction', 'Aliens']", "['Christian', 'Nonfiction', 'Biography', 'Religion', 'Christianity', 'Memoir', 'Faith']", "['Fiction', 'Science Fiction', 'Feminism', 'Time Travel', 'Dystopia', 'Fantasy', 'Speculative Fiction']", "['Spirituality', 'Self Help', 'Nonfiction', 'Philosophy', 'Personal Development', 'Psychology', 'Inspirational']", "['Nonfiction', 'Biography', 'Memoir', 'Humor', 'Comedy', 'Audiobook', 'Autobiography']", "['Picture Books', 'Childrens', 'Classics', 'Fiction', 'Animals', 'Spain', 'Kids']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'American', 'Adult Fiction', 'New York']", "['Classics', 'Fiction', 'School', 'Literature', 'Novels', 'Literary Fiction', 'Read For School']", "['Fiction', 'German Literature', 'Literature', 'Classics', 'Germany', 'Novels', 'Nobel Prize']", "['Fiction', 'Mystery', 'Literary Fiction', 'Contemporary', 'Crime', 'Thriller', 'Novels']", "['Classics', 'Fiction', 'Literature', 'Novels', 'American', 'France', '20th Century']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'Classics', 'Poetry', 'Detective']", "['Classics', 'Childrens', 'Fiction', 'Fantasy', 'Animals', 'Audiobook', 'Middle Grade']", "['Fiction', 'Science Fiction', 'Post Apocalyptic', 'Dystopia', 'Speculative Fiction', 'Fantasy', 'Novels']", "['Fiction', 'Classics', 'Historical Fiction', 'War', 'World War I', 'Literature', 'British Literature']", "['Romanian Literature', 'Classics', 'Fiction', 'Romance', 'Fantasy', 'Romania', '20th Century']", "['Fiction', 'Mystery', 'Thriller', 'Russia', 'Crime', 'Mystery Thriller', 'Detective']", "['Psychology', 'Science', 'Nonfiction', 'Biology', 'Neuroscience', 'Politics', 'Race']", "['Philosophy', 'Romanian Literature', 'Nonfiction', 'Religion', 'Memoir', 'Biography', 'Classics']", "['Fiction', 'Classics', 'Philosophy', 'Literature', 'British Literature', 'Novels', 'Modern Classics']", "['Classics', 'Short Stories', 'Fiction', 'Fantasy', 'Childrens', 'Fairy Tales', '19th Century']", "['Nonfiction', 'Education', 'Literary Criticism', 'Philosophy', 'Essays', 'Literature', 'Criticism']", "['Classics', 'Fiction', 'Historical Fiction', 'Romance', 'British Literature', 'Novels', 'Historical']", "['Fiction', 'France', 'French Literature', 'Classics', '19th Century', 'Literature', 'Romance']", "['Gothic', 'Classics', 'Fiction', 'Historical Fiction', 'Romance', 'Horror', 'Mystery']", "['Paranormal Romance', 'Vampires', 'Paranormal', 'Romance', 'Urban Fantasy', 'Fantasy', 'Adult']", "['Fiction', 'War', 'Historical Fiction', 'Asia', 'Literature', 'Historical', 'Novels']", "['Fiction', 'Russia', 'Historical Fiction', 'Russian Literature', 'Novels', 'War', 'Literature']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Realistic Fiction', 'Fiction', 'High School']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Middle Grade', 'School', 'Childrens']", "['Fantasy', 'Fiction', 'High Fantasy', 'Young Adult', 'Science Fiction Fantasy', 'Magic', 'Adult']", "['Business', 'Nonfiction', 'Finance', 'History', 'Economics', 'Buisness', 'Biography']", "['Theology', 'Christian', 'Religion', 'Christianity', 'Nonfiction', 'Faith']", "['Nonfiction', 'Classics', 'Memoir', 'Biography', 'Travel', 'History', 'Autobiography']", "['Psychology', 'Nonfiction', 'Death', 'Philosophy', 'Self Help', 'Medicine', 'Spirituality']", "['History', 'Biography', 'Nonfiction', 'Russia', 'Politics', 'World War II', 'Germany']", "['Poetry', 'Classics', 'Fiction', 'Literature', 'Romanticism', 'British Literature', 'Philosophy']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Parenting', 'School', 'Education']", "['Fiction', 'Contemporary', 'Adult Fiction', 'Adult', 'Drama', 'Novels', 'Family']", "['Fiction', 'Classics', 'Hungary', 'Historical Fiction', 'Hungarian Literature', 'Literature', 'Romance']", "['History', 'Turkish Literature', 'Nonfiction', 'Turkish', 'Politics', 'Classics', 'Biography']", "['Self Help', 'Nonfiction', 'Relationships', 'Psychology', 'Womens', 'Marriage', 'Personal Development']", "['Historical Romance', 'Historical', 'Romance', 'Dark', 'Historical Fiction', 'Abuse', 'Ireland']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Magic', 'Childrens']", "['Poetry', 'Spanish Literature', 'Classics', 'Latin American Literature', 'College', 'Fiction', 'Unfinished']", "['Historical Fiction', 'Fiction', 'American Revolution', 'Historical', 'War', 'American Revolutionary War', 'American History']", "['Mystery', 'Fiction', 'Thriller', 'Audiobook', 'Mystery Thriller', 'Crime', 'Suspense']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'Historical', 'Asia']", "['Fiction', 'India', 'Historical Fiction', 'Classics', 'Indian Literature', 'Pakistan', 'Historical']", "['History', 'Nonfiction', 'Essays', 'Journalism', 'Politics', 'Biography', 'Classics']", "['Picture Books', 'Childrens', 'Animals', 'Fiction', 'Family', 'Fantasy', 'Classics']", "['Poetry', 'Fiction', 'Classics', 'Literature', 'Nobel Prize', 'Mythology', 'Epic']", "['Fiction', 'Horror', 'Young Adult', 'Romance', 'Adult', 'Gothic', 'Abuse']", "['Science Fiction', 'Fiction', 'Dystopia', 'Romance', 'Fantasy', 'Feminism', 'Speculative Fiction']", "['History', 'Nonfiction', 'Politics', 'Israel', 'International Relations', 'Religion', 'Judaism']", "['Classics', 'Fiction', 'Swedish Literature', 'Sweden', 'Scandinavian Literature', 'Literature', 'Novels']", "['Fiction', 'Irish Literature', 'Philosophy', 'Classics', 'Ireland', 'Literature', 'Novels']", "['Nonfiction', 'Travel', 'Adventure', 'History', 'Classics', 'Biography', 'Memoir']", "['Poetry', 'Spanish Literature', 'Nobel Prize', 'Classics', 'Latin American', 'Literature', 'Fiction']", "['Horror', 'Fiction', 'Fantasy', 'Occult', 'Supernatural', 'Paranormal', 'Classics']", "['Classics', 'Fiction', 'Mystery', 'Historical Fiction', 'Australia', 'Horror', 'Historical']", "['Historical Fiction', 'Fiction', 'War', 'Animals', 'Young Adult', 'Historical', 'Childrens']", "['Nonfiction', 'Memoir', 'Biography', 'History', 'African American', 'Autobiography', 'Biography Memoir']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Paranormal Romance', 'Romance', 'Vampires', 'Witches']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Shapeshifters', 'Romance', 'Paranormal Romance', 'Adult']", "['Picture Books', 'Childrens', 'Africa', 'Animals', 'Folklore', 'Fiction', 'Cultural']", "['Classics', 'Fiction', 'France', 'French Literature', 'Literature', '20th Century', 'Romance']", "['History', 'American History', 'Nonfiction', 'World History', 'American Revolution', 'American', 'Politics']", "['Fiction', 'Humor', 'Novels', 'African American', 'Contemporary', 'Race', 'Literary Fiction']", "['Horror', 'Short Stories', 'Classics', 'Gothic', 'Fiction', 'Ghosts', 'Ghost Stories']", "['Classics', 'Fiction', 'Erotica', 'France', 'Philosophy', 'French Literature', '18th Century']", "['Poetry', 'Classics', 'Portuguese Literature', 'Portugal', 'Fiction', 'Literature', 'Epic']", "['Fiction', 'Music', 'Young Adult', 'Novels']", "['Fiction', 'Fantasy', 'Albanian Literature', 'Dystopia', 'Literature', 'Classics', 'Novels']", "['Classics', 'Fiction', 'Horror', 'Gothic', 'Fantasy', '19th Century', 'Religion']", "['Fiction', 'Classics', 'School', 'Literature', 'Dutch Literature', '20th Century', 'Belgium']", "['Nonfiction', 'Self Help', 'Inspirational', 'Short Stories', 'Personal Development', 'Psychology', 'Spirituality']", "['China', 'Nonfiction', 'History', 'Asia', 'Cultural']", "['Fiction', 'Classics', 'Literature', 'Magical Realism', 'Brazil', 'Portuguese Literature', 'Latin American']", "['Historical Fiction', 'Young Adult', 'Fantasy', 'Historical', 'Fiction', 'Witches', 'Paranormal']", "['Classics', 'Horror', 'Gothic', 'Literature', 'Mystery', 'Novels', 'British Literature']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Adventure', 'Classics', 'Middle Grade', 'Childrens']", "['Nonfiction', 'Spirituality', 'Classics', 'Self Help', 'Inspirational', 'Adult', 'New Age']", "['History', 'Nonfiction', 'Espionage', 'Politics', 'Military Fiction', 'Technology', 'Government']", "['Ireland', 'History']", "['Fiction', 'Horror', 'Young Adult', 'Gothic', 'Mystery', 'Romance', 'Thriller']", "['Gothic', 'Short Stories', 'Classics', 'Horror', 'Fiction', 'Anthologies', 'Victorian']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Humor', 'Book Club', 'Womens Fiction']", "['Poetry', 'American', '20th Century', 'Literature', 'Surreal', 'African American']", "['School', 'Young Adult', 'Self Help', 'Spanish Literature', 'Fiction']", "['Fantasy', 'Dragons', 'Fiction', 'Humor', 'Adventure', 'Science Fiction Fantasy', 'Audiobook']", "['Fiction', 'Contemporary', 'Novels', 'Drama', 'Classics', 'American', 'Media Tie In']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Science Fiction', 'Mystery', 'Paranormal']", "['Poetry', 'Philosophy', 'Literature', 'Religion', 'Islam', 'Classics', 'Spirituality']", "['Picture Books', 'Childrens', 'Fiction', 'Storytime', 'Family', 'Humor', 'Animals']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Contemporary', 'Romance', 'British Literature', 'Novels']", "['Fiction', 'Humor', 'Novels', 'Literature', 'Contemporary', 'Comedy', 'The United States Of America']", "['Nonfiction', 'Marriage', 'Relationships', 'Self Help', 'Christian', 'Psychology', 'Womens']", "['Science Fiction', 'Fiction', 'Classics', 'Czech Literature', 'Dystopia', 'Fantasy', 'Humor']", "['Fiction', 'Dutch Literature', 'Literature', 'School', 'Roman', 'Novels', 'Contemporary']", "['Fiction', 'Classics', 'Spanish Literature', 'Spain', 'Historical Fiction', '20th Century', 'Womens']", "['Fiction', 'Philosophy', 'Novels', 'Spirituality', 'Fantasy', 'Magical Realism', 'Inspirational']", "['Horror', 'Classics', 'Gothic', 'Fiction', 'Mystery', '19th Century', 'Victorian']", "['Historical Fiction', 'Fiction', 'Classics', 'Young Adult', 'Childrens', 'Historical', 'Middle Grade']", "['Classics', 'Fiction', 'Fantasy', 'Romance', 'Literature', 'Novels', 'Adventure']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'France', 'Mystery', 'French Revolution']", "['Classics', 'Romanian Literature', 'Fiction', 'Romance', 'School', 'Romania', 'India']", "['Romance', 'Gothic', 'Fiction', 'Historical Fiction', 'Mystery', 'Historical Romance', 'Historical']", "['Historical Fiction', 'Christian Fiction', 'Fiction', 'Historical', 'Christian', 'Civil War', 'Adult Fiction']", "['Sports', 'Nonfiction', 'Biography', 'Football', 'Biography Memoir', 'Business', 'Memoir']", "['Games']", "['Short Stories', 'Fiction', 'Canada', 'Contemporary', 'Canadian Literature', 'Fantasy', 'Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Religion', 'Cults', 'Biography Memoir', 'Autobiography']", "['Fiction', 'Historical Fiction', 'Ireland', 'Irish Literature', 'War', 'Classics', 'World War I']", "['Nonfiction', 'Memoir', 'Feminism', 'France', 'Biography', 'Nobel Prize', 'French Literature']", "['Science Fiction', 'Post Apocalyptic', 'Fiction', 'Dystopia', 'Apocalyptic', 'War', 'Horror']", "['Mythology', 'Classics', 'Nonfiction', 'History', 'Greek Mythology', 'Reference', 'Greece']", "['Mythology', 'Poetry', 'Nonfiction', 'History', 'Religion', 'Classics', 'Philosophy']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Thriller', 'Mystery', 'Novels']", "['Historical Fiction', 'Young Adult', 'Holocaust', 'Fiction', 'World War II', 'Childrens', 'Historical']", "['Memoir', 'Nonfiction', 'Nature', 'Environment', 'Biography Memoir', 'Biography', 'History']", "['Historical Fiction', 'Romance', 'Fiction', 'Historical', 'Historical Romance', 'Adventure', 'Scotland']", "['Poetry', 'Childrens', 'Classics', 'Fiction', 'Fantasy', 'Animals', 'Childrens Classics']", "['Christian', 'Fiction', 'Christian Fiction', 'Classics', 'Faith', 'Christianity', 'Spirituality']", "['Nonfiction', 'Nature', 'History', 'Travel', 'Science', 'Environment', 'Natural History']", "['Fiction', 'Australia', 'Literary Fiction', 'Contemporary', 'Romance', 'Novels', 'Literature']", "['Fantasy', 'Fiction', 'LGBT', 'Queer', 'Romance', 'Young Adult', 'Fantasy Of Manners']", "['Nonfiction', 'Biography', 'Memoir', 'History', 'Autobiography', 'Biography Memoir', 'Classics']", "['Poetry', 'Female Authors', 'Literature', 'American', 'Nonfiction', 'Mythology']", "['Vampires', 'Fantasy', 'Young Adult', 'Fiction', 'Paranormal', 'Urban Fantasy', 'Supernatural']", "['Animals', 'Dogs', 'Middle Grade', 'Childrens', 'Fiction', 'Chapter Books', 'Audiobook']", "['Fiction', 'Latin American', 'Spanish Literature', 'Humor', 'Latin American Literature', 'Nobel Prize', 'Novels']", "['Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Psychology', 'True Story', 'Abuse']", "['Fiction', 'Canada', 'Historical Fiction', 'Fantasy', 'Historical', 'Canadian Literature', 'Psychology']", "['Historical Fiction', 'Fiction', 'Canada', 'War', 'Historical', 'World War I', 'Canadian Literature']", "['Horror', 'Short Stories', 'Fiction', 'Weird Fiction', 'Fantasy', 'Gothic', 'Anthologies']", "['Christian', 'Biography', 'Nonfiction', 'History', 'Christianity', 'Faith', 'Memoir']", "['Picture Books', 'Childrens', 'Classics', 'Fiction', 'Trains', 'Fantasy', 'Kids']", "['Young Adult', 'Fiction', 'Contemporary', 'Teen', 'Realistic Fiction', 'Romance', 'Coming Of Age']", "['Fantasy', 'Childrens', 'Fiction', 'Chapter Books', 'Adventure', 'Historical Fiction', 'Middle Grade']", "['Historical Fiction', 'Fiction', 'Historical', 'Westerns', 'American History', '18th Century', 'War']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Victorian', 'British Literature', 'Gothic']", "['Picture Books', 'Art', 'Childrens', 'Fiction', 'Inspirational', 'Realistic Fiction', 'School']", "['Historical Fiction', 'Fiction', 'Thriller', 'Historical', 'Mystery', 'Audiobook', 'Drama']", "['Historical Fiction', 'Ireland', 'Fiction', 'Pirates', 'Historical', 'Fantasy', 'Irish Literature']", "['History', 'Humor', 'Nonfiction', 'Comedy', 'British Literature', 'Historical', 'Classics']", "['Picture Books', 'Childrens', 'Animals', 'Fiction', 'Humor', 'Food', 'Storytime']", "['Picture Books', 'Childrens', 'Animals', 'Fiction', 'Food', 'Fantasy', 'Humor']", "['Classics', 'Historical Fiction', 'Fiction', 'Historical', 'Literature', 'France', 'Catholic']", "['Fiction', 'Canada', 'Historical Fiction', 'Canadian Literature', 'Read For School', 'Literary Fiction']", "['Science Fiction', 'Fiction', 'Classics', 'Dystopia', 'Fantasy', 'Post Apocalyptic', 'Young Adult']", "['Young Adult', 'LGBT', 'German Literature', 'Fiction', 'Queer', 'Contemporary', 'Romance']", "['Fiction', 'Australia', 'Classics', 'Novels', 'Literature', 'Historical Fiction', 'Nobel Prize']", "['History', 'Biography', 'Nonfiction', 'Classics', 'Memoir', 'Autobiography', 'African American']", "['Young Adult', 'Music', 'Fiction', 'Middle Grade', 'Childrens', 'Contemporary', 'Coming Of Age']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Middle Grade', 'Childrens', 'Family', 'Contemporary']", "['Fiction', 'Contemporary', 'Humor', 'Ukraine', 'Novels', 'Family', 'Book Club']", "['Music', 'Biography', 'Nonfiction', 'Jazz', 'Autobiography', 'Memoir', 'History']", "['History', 'Nonfiction', 'Biography', 'Politics', 'American History', 'Classics', 'Presidents']", "['Science Fiction', 'Young Adult', 'Fiction', 'Survival', 'Fantasy', 'Teen', 'Childrens']", "['Fiction', 'Contemporary', 'British Literature', 'Literary Fiction', 'Romance', 'Literature', 'Novels']", "['Mystery', 'Fiction', 'Historical Fiction', 'Crime', 'Mystery Thriller', 'Thriller', 'Suspense']", "['Science', 'Theology', 'Nonfiction', 'Christian', 'Christianity', 'Religion', 'Evolution']", "['Science', 'Nonfiction', 'Christian', 'Religion', 'Philosophy', 'History', 'Evolution']", "['Picture Books', 'Childrens', 'Folklore', 'Africa', 'Fiction', 'Animals', 'Cultural']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Adventure', 'Middle Grade', 'Childrens']", "['Politics', 'Nonfiction', 'Social Science']", "['Fiction', 'Classics', 'Romance', 'Historical Fiction', 'British Literature', 'Humor', '20th Century']", "['Health', 'Nonfiction', 'Spirituality', 'Self Help', 'Psychology', 'Nutrition', 'Personal Development']", "['Nonfiction', 'Spirituality', 'Health', 'Self Help', 'Philosophy', 'Psychology', 'Personal Development']", "['Manga', 'Fantasy', 'Romance', 'Graphic Novels', 'Young Adult', 'Fiction', 'Comics']", "['Fiction', 'Classics', 'Historical Fiction', 'Novels', 'Literature', 'American', 'Young Adult']", "['Short Stories', 'Fiction', 'Israel', 'Jewish', 'Magical Realism', 'Literature', 'Contemporary']", "['Steampunk', 'Fantasy', 'Fiction', 'Science Fiction', 'Adventure', 'Science Fiction Fantasy', 'Historical Fiction']", "['Horror', 'Classics', 'Gothic', 'Short Stories', 'Fiction', '19th Century', 'Vampires']", "['Classics', 'Fiction', 'Childrens', 'Fantasy', 'Middle Grade', 'Childrens Classics', 'Literature']", "['Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Humor', 'Adult Fiction', 'British Literature']", "['Childrens', 'Picture Books', 'Fiction', 'Humor', 'Classics', 'Fantasy', 'Young Adult']", "['Young Adult', 'Horror', 'Fiction', 'Mystery', 'Thriller', 'Paranormal', 'Fantasy']", "['Fiction', 'Contemporary', 'Humor', 'Coming Of Age', 'English Literature', 'Mental Health', 'Unfinished']", "['Plays', 'Theatre', 'Drama', 'Fiction', 'Contemporary']", "['History', 'Nonfiction', 'Law', 'World War II', 'Germany', 'Politics', 'Biography']", "['Fiction', 'Classics', 'Plays', 'Italy', '20th Century', 'Drama', 'Novels']", "['Horror', 'Young Adult', 'Christmas', 'Fiction', 'Childrens', 'Thriller', 'Mystery']", "['History', 'Nonfiction', 'Medieval', 'Medieval History', 'European History', 'Ancient History', 'Classics']", "['Manga', 'Comics', 'Science Fiction', 'Graphic Novels', 'Cyberpunk', 'Fiction', 'Dystopia']", "['Fiction', 'Nobel Prize', 'Classics', 'Novella', 'Literature', 'American', 'Literary Fiction']", "['Fiction', 'Classics', 'Literature', 'Novels', 'Fantasy', 'British Literature', 'Literary Fiction']", "['Mathematics', 'Textbooks', 'Nonfiction', 'Reference', 'Science', 'Academic', 'Education']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Contemporary', 'Romance', 'Middle Grade', 'Teen']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Magical Realism', 'Novels', 'Speculative Fiction', 'Literature']", "['Fiction', 'Classics', 'Horror', 'Humor', 'Ghosts', 'Short Stories', '19th Century']", "['Self Help', 'Nonfiction', 'Inspirational', 'Personal Development', 'Spirituality', 'Cultural']", "['Religion', 'Christian', 'Theology', 'Christianity', 'Classics', 'Nonfiction', 'Spirituality']", "['Philosophy', 'Nonfiction', 'Metaphysics', 'Art', 'Writing']", "['Mystery', 'Fiction', 'Crime', 'Noir', 'Classics', 'Detective', 'Novels']", "['Young Adult', 'Romance', 'Mystery', 'Contemporary', 'Fiction', 'Espionage', 'Adventure']", "['Fiction', 'Classics', 'Southern', 'Humor', 'Southern Gothic', 'American', 'Literary Fiction']", "['Mystery', 'Crime', 'Fiction', 'British Literature', 'Mystery Thriller', 'Detective', '21st Century']", "['Romance', 'Chick Lit', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Humor', 'Adult']", "['Spain', 'Spanish Literature', 'Fiction', '20th Century', 'Novels', 'Own', 'Classics']", "['Gothic', 'Classics', 'Horror', 'Fiction', '18th Century', 'British Literature', 'Gothic Horror']", "['Fiction', 'Classics', 'Historical Fiction', 'Egypt', 'Literature', 'Novels', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Classics', 'Childrens', 'Young Adult', 'Adventure', 'Middle Grade']", "['Fantasy', 'Young Adult', 'Animals', 'Fiction', 'Middle Grade', 'Childrens', 'Adventure']", "['Plays', 'Classics', 'Drama', 'Theatre', 'Fiction', 'LGBT', 'Queer']", "['Plays', 'Drama', 'Classics', 'Theatre', 'Fiction', 'British Literature', 'School']", "['Plays', 'Drama', 'Ireland', 'Irish Literature', 'Classics', 'School', 'Fiction']", "['Gothic', 'Classics', 'Horror', 'Fiction', 'Fantasy', '18th Century', 'Literature']", "['Childrens', 'Fantasy', 'Fiction', 'Chapter Books', 'Adventure', 'Novels', 'Media Tie In']", "['Fantasy', 'Childrens', 'Manga', 'Fiction', 'Chapter Books', 'Novels', 'Graphic Novels']", "['Philosophy', 'Nonfiction', 'Theory', 'Literary Criticism', 'Academic', 'France', '20th Century']", "['Fiction', 'Classics', 'Russia', 'Russian Literature', 'Literature', 'War', 'Novels']", "['Picture Books', 'Childrens', 'Food', 'Storytime', 'Humor', 'Family', 'Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Prehistoric', 'Adventure', 'Prehistory']", "['Historical Romance', 'Historical Fiction', 'Historical', 'Fiction', 'Audiobook', 'Regency', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Childrens', 'Adventure', 'Classics']", "['Historical Fiction', 'Fiction', 'World War II', 'War', 'Historical', 'Holocaust', 'Novels']", "['Fiction', 'Classics', 'Fantasy', 'Science Fiction', 'American', 'The United States Of America', 'Novels']", "['Mystery', 'Fiction', 'Historical Fiction', 'Thriller', 'Mystery Thriller', 'Suspense', 'Crime']", "['Fiction', 'Classics', 'Christmas', 'Religion', 'Short Stories', 'Literature', 'Christian']", "['Nonfiction', 'Politics', 'Memoir', 'Race', 'Biography', 'History', 'Social Justice']", "['Fiction', 'Classics', 'Short Stories', 'Literature', 'American', 'Fantasy', 'Classic Literature']", "['Religion', 'Theology', 'Philosophy', 'History', 'Christianity', 'Nonfiction', 'Christian']", "['Horror', 'Short Stories', 'Classics', 'Fiction', 'Gothic', 'Mystery', 'Weird Fiction']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Contemporary Romance', 'Drama', 'Adult Fiction']", "['Romance', 'Fiction', 'Chick Lit', 'Drama', 'Contemporary', 'Adult Fiction', 'Novels']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Contemporary Romance', 'Drama', 'Novels']", "['Business', 'Leadership', 'Nonfiction', 'Management', 'Biography', 'Self Help', 'Personal Development']", "['Nonfiction', 'Memoir', 'Holocaust', 'World War II', 'History', 'France', 'War']", "['Philosophy', 'Nonfiction', 'Classics', 'History', 'Japan', 'Martial Arts', 'Business']", "['Philosophy', 'Nonfiction', 'Psychology', 'France', 'Theory', 'Classics', '20th Century']", "['Young Adult', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'School', 'Horror']", "['Fiction', 'Historical Fiction', 'Crime', 'Literature', 'Literary Fiction', 'Historical', 'American']", "['Manga', 'Fantasy', 'Fiction', 'Comics', 'Childrens', 'Action', 'Graphic Novels']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Medieval', 'Fiction', 'Medieval Romance']", "['Horror', 'Fiction', 'Short Stories', 'Weird Fiction']", "['Fantasy', 'Science Fiction', 'Fiction', 'Dying Earth', 'Sword and Sorcery', 'Classics', 'Humor']", "['Fiction', 'British Literature', 'Literary Fiction', 'Literature', 'Historical Fiction', 'Novels', 'Contemporary']", "['History', 'Politics', 'Biography', 'Nonfiction', 'Russia', 'Memoir', 'Autobiography']", "['Poetry', 'Spanish Literature', 'Short Stories', 'Fiction', 'Classics', 'School', 'Spain']", "['Fiction', 'Magical Realism', 'Contemporary', 'British Literature']", "['Classics', 'Horror', 'Short Stories', 'Gothic', 'Fiction', 'Mystery', 'Victorian']", "['Horror', 'Vampires', 'Fantasy', 'Fiction', 'Gothic', 'Mystery', 'Historical Fiction']", "['Australia', 'Fiction', 'Classics', 'Modern Classics']", "['Mystery', 'Crime', 'Fiction', 'Detective', 'Police', 'Thriller', 'American']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Childrens', 'School', 'China']", "['Fiction', 'Canada', 'Fantasy', 'Magical Realism', 'School', 'Canadian Literature', 'Contemporary']", "['Fiction', 'Classics', 'German Literature', 'Literature', 'Germany', '20th Century', 'Historical Fiction']", "['Classics', 'Fiction', 'Novels', '20th Century', 'British Literature', 'Romance', 'Historical']", "['Horror', 'Gothic', 'Ghosts', 'Mystery', 'Fiction', 'Paranormal', 'Ghost Stories']", "['Psychology', 'Nonfiction', 'History', 'Holocaust', 'Philosophy', 'Jewish', 'War']", "['Horror', 'Fiction', 'Paranormal', 'Thriller', 'Mystery', 'Ghosts', 'Crime']", "['Fiction', 'Humor', 'Novels', 'Contemporary', 'Literature', 'The United States Of America', 'Modern']", "['Fiction', 'Historical Fiction', 'Espionage', 'Germany', 'War', 'World War II', 'Historical']", "['Biography', 'Nonfiction', 'Film']", "['Historical Fiction', 'Fiction', 'Mystery', 'Medieval', 'Historical', 'British Literature', 'Crime']", "['Fiction', 'Historical Fiction', 'Literature', 'Latin American', 'Spanish Literature', 'Novels', '20th Century']", "['Childrens', 'Picture Books', 'Classics', 'Fiction', 'Animals', 'Cats', 'Fantasy']", "['Fiction', 'Historical Fiction', 'India', 'Historical', 'Asia', 'Roman', 'Contemporary']", "['Fantasy', 'Fiction', 'Adventure', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Pirates']", "['Fiction', 'Scandinavian Literature', 'Literature', 'Short Stories', 'Swedish Literature', 'Classics', 'Nobel Prize']", "['Fiction', 'Canada', 'Canadian Literature', 'Jewish', 'Literary Fiction', 'Novels', 'Classics']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Dystopia', 'Apocalyptic', 'Fantasy', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Short Stories', 'Humor', 'Polish Literature', 'Classics', 'Fantasy']", "['Gothic', 'Classics', 'Horror', '18th Century', 'Literature']", "['Young Adult', 'Contemporary', 'Realistic Fiction', 'Fiction', 'Middle Grade', 'Chick Lit', 'Childrens']", "['Poetry', 'Polish Literature', 'Essays', 'Fiction', 'Nobel Prize', 'Collections']", "['Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Drama', 'Love', 'Novels']", "['Historical Fiction', 'Fiction', 'Spain', 'Historical', 'Mystery', 'War', 'Thriller']", "['Fiction', 'Mystery', 'Crime', 'Mystery Thriller', 'British Literature', 'Literary Fiction', 'Adult']", "['Spirituality', 'Nonfiction', 'Paranormal', 'Religion', 'New Age', 'Philosophy', 'Self Help']", "['Nonfiction', 'Law', 'Self Help', 'Business', 'Communication', 'Psychology', 'Personal Development']", "['Fiction', 'Historical Fiction', 'British Literature', 'Contemporary', 'LGBT', 'Novels', 'Roman']", "['History', 'Nonfiction', 'Space', 'Science', 'Audiobook', 'Biography', 'American History']", "['Romance', 'Historical Romance', 'Historical', 'Fiction', 'Historical Fiction', 'Adult', 'Chick Lit']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Fiction', 'Beauty and The Beast', 'Regency']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Fiction', 'Civil War', 'American Civil War']", "['Fantasy', 'Fiction', 'Science Fiction', 'Classics', 'Literature', 'Speculative Fiction', 'Utopia']", "['Fiction', 'Classics', 'France', 'Young Adult', 'Coming Of Age', 'Historical Fiction', 'Novels']", "['Health', 'Nutrition', 'Nonfiction', 'Science']", "['Historical Fiction', 'Fiction', 'Book Club', 'Historical', 'Architecture', 'Romance', 'Adult Fiction']", "['Religion', 'Christian', 'Nonfiction', 'Christianity', 'Theology', 'Christian Non Fiction', 'Spirituality']", "['Plays', 'Classics', 'School', 'Fiction', 'Mystery', 'Drama', 'Crime']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Dark Fantasy', 'Adventure']", "['History', 'Nonfiction', 'Medieval', 'Medieval History', 'Art', 'European History', 'France']", "['Thriller', 'Fiction', 'Mystery', 'Action', 'Mystery Thriller', 'Suspense', 'Espionage']", "['Mystery', 'Crime', 'Fiction', 'Scotland', 'Thriller', 'Detective', 'Mystery Thriller']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Adventure', 'Childrens', 'Short Stories']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Fiction', 'Seinen', 'Supernatural']", "['Mystery', 'Fiction', 'Cozy Mystery', 'Mystery Thriller', 'Food', 'Culinary', 'Audiobook']", "['Horror', 'Zombies', 'Fiction', 'Post Apocalyptic', 'Science Fiction', 'Apocalyptic', 'Thriller']", "['Politics', 'History', 'Philosophy', 'Nonfiction', 'Economics', 'American History', 'Political Science']", "['Fiction', 'Russia', 'Historical Fiction', 'Russian Literature', 'Classics', 'Literature', 'Historical']", "['Biography', 'Spirituality', 'Nonfiction', 'Metaphysics', 'Religion', 'Philosophy', 'Paranormal']", "['Science Fiction', 'Fiction', 'Feminism', 'Classics', 'Speculative Fiction', 'LGBT', 'Gender']", "['Doctor Who', 'Science Fiction', 'Audiobook', 'Fiction', 'Historical Fiction', 'Media Tie In', 'British Literature']", "['Science Fiction', 'Fiction', 'Hugo Awards', 'Science Fiction Fantasy', 'Time Travel', 'Fantasy', 'Dystopia']", "['Spirituality', 'Nonfiction', 'Paranormal', 'New Age', 'Religion', 'Metaphysics', 'Biography']", "['Christmas', 'Short Stories', 'Classics', 'Fiction', 'American', 'Holiday', 'Book Club']", "['Horror', 'Short Stories', 'Anthologies', 'Fiction']", "['Christian Fiction', 'Amish', 'Fiction', 'Christian', 'Amish Fiction', 'Romance', 'Adult Fiction']", "['Fiction', 'Mystery', 'Historical Fiction', 'Coming Of Age', 'Book Club', 'Adult Fiction', 'Suspense']", "['Fantasy', 'Fiction', 'Science Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Epic Fantasy', 'Magic']", "['Plays', 'Classics', 'Spanish Literature', 'Fiction', 'Theatre', 'School', 'Spain']", "['Fiction', 'Classics', 'Historical Fiction', 'Humor', 'Romance', 'British Literature', 'Historical']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'Novels', '16th Century', 'Religion']", "['Horror', 'Thriller', 'Fiction', 'Crime', 'France', 'Mystery', 'French Literature']", "['Amish', 'Christian Fiction', 'Fiction', 'Christian', 'Amish Fiction', 'Romance', 'Adult']", "['Short Stories', 'Fiction', 'Horror', 'Mystery', 'Literature', 'Classics', 'British Literature']", "['Czech Literature', 'Fiction', 'Historical Fiction', 'War', 'Jewish', 'World War II', 'Holocaust']", "['Historical Fiction', 'Fiction', 'Espionage', 'Thriller', 'Mystery', 'World War II', 'War']", "['Science Fiction', 'Fiction', 'Fantasy', 'Horror', 'Cyberpunk', 'Dystopia', 'Humor']", "['Graphic Novels', 'Comics', 'Fantasy', 'Picture Books', 'Fiction', 'Young Adult', 'Art']", "['Short Stories', 'Classics', 'Fiction', 'Horror', 'Historical Fiction', 'Literature', 'War']", "['Mystery']", "['Fiction', 'Classics', 'Politics', 'Historical Fiction', 'Philosophy', 'Novels', 'Literature']", "['Historical Fiction', 'Fiction', 'Greece', 'Historical', 'Romance', 'Drama', 'Contemporary']", "['Nonfiction', 'Spain', 'Memoir', 'History', 'Biography', 'Spanish Literature', 'Literature']", "['Christmas', 'Fiction', 'Holiday', 'Inspirational', 'Christian Fiction', 'Adult', 'Adult Fiction']", "['Nonfiction', 'Psychology', 'Self Help', 'Mental Health', 'Personal Development', 'Health', 'Science']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Middle Grade', 'Post Apocalyptic', 'Adventure']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Audiobook', 'Hard Science Fiction', 'Novels']", "['Horror', 'Vampires', 'Fantasy', 'Fiction', 'Paranormal', 'Urban Fantasy', 'Science Fiction']", "['Biography', 'Nonfiction', 'Religion', 'Spirituality', 'History', 'Medicine', 'Historical']", "['History', 'Nonfiction', 'American History', 'The United States Of America', 'Historical']", "['Music', 'Reference', 'Religion', 'Christianity', 'Nonfiction', 'Faith', 'Church']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Middle Grade', 'German Literature', 'Magic']", "['Classics', 'Fiction', 'American', 'Literature', 'Novels', 'The United States Of America', 'Adventure']", "['Horror', 'Audiobook', 'Fiction']", "['Christian', 'Religion', 'Nonfiction', 'Reference', 'Christianity', 'Faith', 'Spirituality']", "['Science Fiction', 'Fiction', 'Steampunk', 'Fantasy', 'Adventure', 'Pulp', 'Science Fiction Fantasy']", "['Manga', 'Fiction', 'Comics', 'Fantasy', 'Comics Manga', 'Graphic Novels', 'Action']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Sweden', 'Mystery Thriller', 'Scandinavian Literature']", "['Fiction', 'Historical Fiction', 'African American', 'Literature', 'Classics', 'Novels', 'Race']", "['Fiction', 'Lebanon']", "['Historical Fiction', 'Fiction', 'Classics', 'Young Adult', 'Historical', 'Romance', 'Adult Fiction']", "['History', 'Nonfiction', 'War', 'World War II', 'Military Fiction', 'Historical', 'Military History']", "['Fiction', 'Humor', 'Novels', 'Literature', 'Southern', 'Travel', 'Audiobook']", "['Science Fiction', 'Fiction', 'Fantasy', 'Dystopia', 'Science Fiction Fantasy', 'Classics', 'LGBT']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Fantasy', 'Hard Science Fiction', 'Audiobook', 'Adventure']", "['Fantasy', 'Sword and Sorcery', 'Short Stories', 'Fiction', 'Science Fiction', 'Pulp', 'Classics']", "['Horror', 'Zombies']", "['Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Middle Grade', 'Sweden', 'Scandinavian Literature']", "['Horror', 'Fiction', 'Vampires', 'Fantasy', 'Paranormal', 'Thriller', 'Supernatural']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Dark Fantasy', 'Adult']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dark Fantasy', 'High Fantasy', 'Audiobook', 'Adventure']", "['Fiction', 'Fantasy', 'Magical Realism', 'Humor', 'Romance', 'Canada', 'Adult']", "['Chick Lit', 'Fiction', 'Humor', 'Romance', 'Family', 'Audiobook', 'Contemporary']", "['Nonfiction', 'Spirituality', 'Paranormal', 'Memoir', 'New Age', 'Biography', 'Autobiography']", "['Feminism', 'Short Stories', 'Fiction', 'Science Fiction', 'Classics', 'Fantasy', 'India']", "['History', 'Nonfiction', 'Religion', 'Books About Books', 'Biography', 'Science', 'Historical']", "['History', 'Biography', 'Politics', 'Nonfiction', 'Memoir', 'American History', 'Philosophy']", "['History', 'European History', 'Nonfiction', 'Politics', 'International Relations', 'World War I', '19th Century']", "['Fantasy', 'Science Fiction', 'Young Adult', 'Fiction', 'Adult', 'Dark', 'Science Fiction Fantasy']", "['Gothic', 'Horror', 'Classics', 'Fiction', 'Dark']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Mystery', 'Childrens']", "['Fiction', 'Historical Fiction', 'France', 'Classics', 'French Literature', 'Literature', 'Novels']", "['Poetry', 'Classics', 'Spanish Literature', 'Spain', 'Literature', 'Fiction', 'New York']", "['Biography', 'Nonfiction', 'Christian']", "['Young Adult', 'Science Fiction', 'Fiction', 'Dystopia', 'Cyberpunk', 'Teen', 'Thriller']", "['Classics', 'France', 'Fiction', 'Historical Fiction', 'French Literature', 'Adventure', 'Roman']", "['Fiction', 'Mystery', 'Contemporary', 'Crime', 'Novels', 'British Literature', 'Literary Fiction']", "['Politics', 'Nonfiction', 'Conspiracy Theories', 'History', 'American History', 'Science', 'Research']", "['Fiction', 'Thriller', 'Adventure', 'Espionage', 'Action', 'Military Fiction', 'Mystery']", "['Picture Books', 'Childrens', 'Realistic Fiction', 'Cultural', 'African American', 'Fiction', 'Family']", "['Psychology', 'Parenting', 'Horror', 'Nonfiction', 'Sexuality', 'Unfinished', 'Research']", "['Childrens', 'Fiction', 'Chapter Books', 'Realistic Fiction', 'Humor', 'School', 'Middle Grade']", "['Historical Romance', 'Romance', 'Historical', 'Regency', 'Historical Fiction', 'Regency Romance', 'Adult']", "['Horror', 'Fiction', 'Thriller', 'Suspense', 'Mystery', 'Fantasy', 'Science Fiction']", "['Fiction', 'Africa', 'South Africa', 'Literary Fiction', 'Crime', 'Thriller', 'Mystery']", "['Historical Fiction', 'Romance', 'Time Travel', 'Fiction', 'Fantasy', 'Historical', 'Historical Romance']", "['Comics', 'Graphic Novels', 'Marvel', 'Crime', 'Comic Book', 'Graphic Novels Comics', 'Superheroes']", "['Fantasy', 'Young Adult', 'Romance', 'Historical Fiction', 'Fiction', 'Fairy Tales', 'Historical']", "['Classics', 'German Literature', 'Fiction', 'School', '20th Century', 'Literature', 'Historical Fiction']", "['Short Stories', 'Classics', 'Fiction', 'Humor', 'Young Adult', 'School', 'Childrens']", "['Poetry', 'Classics', 'Fiction', 'Spanish Literature', 'Spain', 'Nobel Prize', 'Literature']", "['Fiction', 'Classics', 'British Literature', 'Novels', 'Literature', 'Modern Classics', '20th Century']", "['Childrens', 'Fiction', 'Classics', 'Audiobook', 'Animals', 'Fantasy', 'Middle Grade']", "['Classics', 'Fiction', 'Science Fiction', 'Horror', 'Post Apocalyptic', 'Dystopia', 'Gothic']", "['Picture Books', 'Childrens', 'Animals', 'Fiction', 'Christmas', 'Classics', 'Folklore']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Dystopia', 'Hugo Awards', 'Speculative Fiction', 'Apocalyptic']", "['Fantasy', 'Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Novels', 'Literature', 'Speculative Fiction']", "['Nonfiction', 'Parenting']", "['History', 'Nonfiction', 'American History', 'Espionage', 'War', 'Audiobook', 'Historical']", "['Historical Fiction', 'Mystery', 'Russia', 'Fiction', 'Thriller', 'Historical', 'Suspense']", "['Horror', 'Fantasy', 'Science Fiction', 'Fiction', 'Classics', 'Weird Fiction', 'Post Apocalyptic']", "['Fiction', 'Classics', 'Novels', 'Media Tie In', 'Literature', 'Historical Fiction', 'Historical']", "['Horror', 'Fiction', 'Occult', 'Fantasy', 'Thriller', 'Supernatural', 'Gothic']", "['Fiction', 'Animals', 'Classics', 'Childrens', 'Young Adult', 'Adventure', 'Historical Fiction']", "['History', 'Nonfiction', 'Americana', 'Biography', 'Childrens', 'Art', 'American History']", "['Science Fiction', 'Fiction', 'Polish Literature', 'Fantasy', 'Science Fiction Fantasy', 'Space', 'Classics']", "['Plays', 'China', 'Drama', 'Fiction', 'Chinese Literature', 'Literature']", "['Science', 'Nonfiction', 'History', 'Spirituality', 'Ecology', 'Nature']", "['Philosophy', 'Classics', 'Nonfiction', 'Ancient', 'History', 'School', 'Ancient History']", "['Fiction', 'Classics', 'Spanish Literature', 'Historical Fiction', 'Magical Realism', 'Latin American', 'Latin American Literature']", "['Science Fiction', 'Fiction', 'Novels', 'Science Fiction Fantasy']", "['Fiction', 'Ireland', 'Historical Fiction', 'Humor', 'Irish Literature', 'Family', 'Historical']", "['Historical Fiction', 'Fiction', 'Canada', 'Historical', 'Canadian Literature', 'Book Club', 'Literary Fiction']", "['Fiction', 'Australia', 'Historical Fiction', 'Romance', 'Historical', 'Contemporary', 'Audiobook']", "['Historical Fiction', 'Ireland', 'Fiction', 'Romance', 'Historical', 'Irish Literature', 'Historical Romance']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Westerns', 'Fiction', 'Adult']", "['Fiction', 'Australia', 'Classics', 'Art', 'Literature', '20th Century', 'Novels']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Adventure', 'LGBT', 'Fantasy']", "['Graphic Novels', 'Nonfiction', 'Comics', 'Memoir', 'Biography', 'History', 'Feminism']", "['Nonfiction', 'Reference', 'Occult']", "['Politics', 'Nonfiction', 'Humor', 'History', 'Comedy', 'Political Science', 'Government']", "['Historical Fiction', 'Fiction', 'Historical', 'Biblical Fiction', 'Biblical', 'Christian Fiction', 'Judaica']", "['Novels', 'Fiction', 'Romance', 'Fantasy', 'Indonesian Literature', 'Science Fiction', 'Contemporary']", "['Mystery', 'Childrens', 'Fiction', 'Adventure', 'Middle Grade', 'Classics', 'Crime']", "['Fantasy', 'Childrens', 'Fiction', 'Young Adult', 'Adventure', 'Classics', 'Dutch Literature']", "['Fiction', 'Historical Fiction', 'Canada', 'Historical', 'Westerns', 'Adventure', 'Mystery']", "['Young Adult', 'Realistic Fiction', 'Teen', 'Chick Lit', 'Romance', 'High School', 'Coming Of Age']", "['Fiction', 'Classics', 'Adventure', 'Historical Fiction', 'Mystery', 'War', 'Africa']", "['Fantasy', 'Romance', 'Magic', 'Fiction', 'Dark Fantasy', 'High Fantasy', 'Science Fiction Fantasy']", "['Classics', 'German Literature', 'Fiction', 'Literature', 'School', 'Germany', 'Novels']", "['Fiction', 'Books About Books', 'Classics', 'Historical Fiction', 'Humor', 'Novella', 'Adventure']", "['Childrens', 'Poetry', 'Picture Books', 'Classics', 'Fiction', 'Nursery Rhymes', 'Fantasy']", "['Fantasy', 'Fiction', 'Childrens', 'Classics', 'Finnish Literature', 'Middle Grade', 'Adventure']", "['Fiction', 'Roman']", "['Young Adult', 'Science Fiction', 'Adventure', 'Fiction', 'Fantasy', 'Middle Grade', 'Action']", "['Romanian Literature', 'Classics', 'Fiction', 'Romania', 'School', 'Read For School', '20th Century']", "['Fantasy', 'Childrens', 'Fiction', 'Novels', 'Adventure', 'Manga', 'Chapter Books']", "['Childrens', 'Fantasy', 'Fiction', 'Novels', 'Chapter Books']", "['Reference', 'Childrens']", "['Fantasy', 'Fiction', 'Young Adult', 'Childrens', 'Animals', 'Middle Grade', 'Horror']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Animals', 'Horror', 'Animal Fiction']", "['Science', 'Chemistry', 'Nonfiction', 'Academic']", "['Fiction', 'Horror', 'Mystery', 'Contemporary', 'Thriller', 'Fantasy', 'Novels']", "['Spirituality', 'Psychology']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Fantasy', 'Poetry', 'Storytime']", "['Doctor Who', 'Science Fiction', 'Audiobook', 'Fiction', 'Horror', 'Time Travel', 'Mystery']", "['Classics', 'Fiction', 'Historical Fiction', 'British Literature', 'Modern Classics', '20th Century', 'Feminism']", "['Fiction', 'France', 'Historical Fiction', 'Roman', 'Historical', 'Novels', 'French Literature']", "['Fiction', 'Historical Fiction', 'British Literature', 'Classics']", "['Fiction', 'Historical Fiction', 'British Literature', 'Politics', 'Modern']", "['Historical Romance', 'Romance', 'Medieval', 'Historical', 'Medieval Romance', 'Historical Fiction', 'British Literature']", "['Fantasy', 'Dragons', 'Romance', 'High Fantasy', 'Fiction', 'Magic', 'Adventure']", "['Fantasy', 'Mermaids', 'Young Adult', 'Fiction', 'Middle Grade', 'Adventure', 'Childrens']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Georgian', 'Regency', 'Fiction']", "['Fiction', 'Dogs', 'Animals']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Middle Grade', 'Humor', 'School', 'Childrens']", "['Comics', 'Graphic Novels', 'Fantasy', 'Fiction', 'Horror', 'Graphic Novels Comics', 'Mythology']", "['Fantasy', 'Epic Fantasy', 'Fiction', 'High Fantasy', 'Science Fiction Fantasy', 'Epic', 'Adult']", "['Fiction', 'Dutch Literature', 'Literature', 'Classics', 'School', 'Historical Fiction', 'War']", "['Fantasy', 'German Literature', 'Young Adult', 'Fiction', 'Childrens', 'High Fantasy', 'Germany']", "['Japan', 'History', 'Nonfiction', 'Japanese Literature', 'Memoir', 'War', 'Religion']", "['Short Stories', 'Classics', 'Fiction', 'Literary Fiction', '20th Century', 'Literature', 'Womens']", "['Nonfiction', 'History', 'German Literature']", "['Horror', 'Classics', 'Short Stories', 'Fiction', 'Thriller', 'Audiobook', 'Suspense']", "['Horror', 'Short Stories', 'Ghost Stories', 'Fiction', 'Ghosts', 'Weird Fiction']", "['Chick Lit', 'Romance', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Adult', 'Young Adult']", "['Fiction', 'Scotland', 'Contemporary', 'Literature', 'Literary Fiction', '20th Century', 'Novels']", "['Mystery', 'Cozy Mystery', 'Romance', 'Chick Lit', 'Crafts', 'Fiction', 'Thriller']", "['Fiction', 'Historical Fiction', 'Literature', 'India', 'Asia']", "['Christian Fiction', 'Fiction', 'Christian', 'Fantasy', 'Historical Fiction', 'Mystery', 'Contemporary']", "['Fiction', 'Historical Fiction', 'Canada', 'Literary Fiction', 'Historical', 'Canadian Literature', 'Novels']", "['Childrens', 'Fantasy', 'Classics', 'Fiction', 'Short Stories', 'Scandinavian Literature', 'Fairy Tales']", "['Fantasy', 'Fiction', 'High Fantasy', 'Science Fiction Fantasy', 'Epic Fantasy', 'Adventure', 'Audiobook']", "['Poetry', 'Nature', 'Fiction', 'Contemporary', 'British Literature', '21st Century', 'Female Authors']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Witches', 'Paranormal', 'Medieval']", "['Russia', 'Fiction', 'Mystery', 'Detective', 'Historical Fiction', 'Crime', 'Russian Literature']", "['Fantasy', 'Horror', 'Thriller', 'Fiction', 'Mystery', 'Paranormal', 'Vampires']", "['Horror', 'Short Stories', 'Gothic', 'Fiction', 'Classics', 'Ghost Stories', 'Supernatural']", "['Fiction', 'India', 'Canada', 'Historical Fiction', 'Literary Fiction', 'Literature', 'Asia']", "['Fiction', 'Classics', 'Historical Fiction', 'Christian', 'Christian Fiction', 'Romance', 'Adult Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'France', 'Medieval', 'Classics', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Fantasy', 'Pulp', 'Dark']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical Mystery', 'Historical', 'Mystery Thriller', 'Audiobook']", "['Nonfiction', 'Biography', 'Nature', 'Birds', 'Wildlife', 'Autobiography', 'India']", "['History', 'Ireland', 'Nonfiction']", "['Historical Fiction', 'Young Adult', 'Holocaust', 'Historical', 'Fiction', 'War', 'Childrens']", "['Horror', 'Fiction', 'Paranormal', 'Fantasy', 'Magic', 'Thriller', 'Mystery']", "['Self Help', 'Nonfiction', 'Psychology', 'Religion', 'Inspirational']", "['Historical Fiction', 'Fiction', 'Young Adult', 'War', 'Novels', 'Historical', 'School']", "['Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Essays', 'Humor', 'British Literature']", "['Plays', 'Gothic', 'Classics', 'Fiction', 'Horror', '18th Century', 'Gothic Horror']", "['Horror', 'Young Adult', 'Fiction', 'School']", "['Science Fiction', 'Fiction', 'Space Opera', 'Military Fiction', 'Military Science Fiction', 'Space', 'Science Fiction Fantasy']", "['Cookbooks', 'Cooking', 'Food', 'Nonfiction', 'Reference', 'Indian Literature', 'Vegetarian']", "['Religion', 'Lds', 'Nonfiction', 'Church', 'Spirituality', 'Self Help', 'Inspirational']", "['Nonfiction', 'Politics', 'Memoir', 'Feminism', 'Biography', 'History', 'Autobiography']", "['Classics', 'Fiction', 'Sweden', 'Swedish Literature', 'Fantasy', 'Nobel Prize', 'Historical Fiction']", "['Cookbooks', 'Cooking', 'Reference', 'Food']", "['War', 'Historical Fiction', 'Fiction', 'World War II', 'Military Fiction', 'Historical', 'Novels']", "['Fiction', 'Classics', 'Dutch Literature', 'Literature', 'School', 'Belgium', '20th Century']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Novels', 'Contemporary', 'Mystery Thriller']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Fairies', 'Horror', 'Magic']", "['Horror', 'Fantasy', 'Fiction', 'Supernatural', 'Magic', 'Adult']", "['Historical Fiction', 'Fiction', 'Civil War', 'Historical', 'Jewish', 'War']", "['Fiction', 'France', 'Contemporary', 'French Literature', 'Novels', 'Roman', 'Literature']", "['Picture Books', 'Childrens', 'Realistic Fiction', 'Fiction', 'Humor', 'Family', 'Storytime']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Science Fiction', 'Mythology', 'Childrens']", "['Parenting', 'Nonfiction', 'Self Help', 'Family', 'Christian', 'Relationships', 'Psychology']", "['Horror', 'Fiction', 'Mystery', 'Novels', 'Thriller', 'Classics', 'Religion']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Demons', 'Romance', 'Fiction', 'Paranormal Romance']", "['Fiction', 'Spanish Literature', 'Latin American', 'Classics', 'Latin American Literature', '20th Century']", "['Historical Fiction', 'Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Spain', 'Historical']", "['Fiction', 'Roman', 'Literature', 'Dutch Literature', 'Collections', 'Belgium', 'Novels']", "['Fiction', 'Dutch Literature', 'Literature', 'Belgium', 'Novels', 'Roman', 'School']", "['Horror', 'Short Stories', 'Weird Fiction', 'Fantasy', 'Fiction', 'Classics', 'Lovecraftian']", "['Nonfiction', 'Biography', 'Japan', 'Biography Memoir', 'Classics', 'Memoir', 'Nobel Prize']", "['Mystery', 'Historical Fiction', 'Historical', 'Medieval', 'Fiction', 'Historical Mystery', 'France']", "['Military Fiction', 'History', 'War', 'Military History', 'Leadership', 'Nonfiction', 'Biography']", "['Romance', 'Graphic Novels', 'Young Adult', 'Manga', 'Fiction', 'Humor', 'Comedy']", "['Fiction', 'Short Stories', 'Poetry', 'Literature', 'Classics', 'Ireland', 'Irish Literature']", "['Fiction', 'Short Stories', 'Novels', 'Literature', 'Literary Fiction', 'Polish Literature', 'American']", "['Fiction', 'Books About Books', 'Humor', 'Contemporary', 'British Literature', 'Novella', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Spanish Literature', 'Fiction', 'Dragons', 'Magic']", "['Fantasy', 'Young Adult', 'Spanish Literature', 'Romance', 'Fiction', 'Dragons', 'Magic']", "['Mystery', 'Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Childrens']", "['Fantasy', 'Urban Fantasy', 'Werewolves', 'Fiction', 'Paranormal', 'Young Adult', 'Horror']", "['Horror', 'Gothic', 'Classics', 'Werewolves', 'Fiction', 'Fantasy', 'Victorian']", "['Fiction', 'Canada', 'Historical Fiction', 'War', 'Literary Fiction', 'Historical', 'World War II']", "['Fiction', 'Short Stories', 'Canada', 'Canadian Literature', 'Unfinished', 'Contemporary']", "['Fiction', 'Canada', 'Fantasy', 'Historical Fiction', 'Religion', 'Classics', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'War', 'Classics', 'Literature', 'World War II', 'Historical']", "['Romance', 'Paranormal', 'Fantasy', 'Paranormal Romance', 'Mermaids', 'Urban Fantasy', 'Chick Lit']", "['Historical Fiction', 'American History', 'Fiction', 'School', 'American Revolution', 'Childrens', 'Historical']", "['History', 'Nonfiction', 'American History', 'Politics', 'Biography', 'Presidents', 'True Crime']", "['Science Fiction', 'Space Opera', 'Fiction', 'Military Fiction', 'Military Science Fiction', 'Space', 'Science Fiction Fantasy']", "['Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Indian Literature', 'Historical', 'Fantasy']", "['Fiction', 'Historical Fiction', 'Childrens', 'Middle Grade', 'Young Adult', 'Adventure', 'Historical']", "['Fantasy', 'Young Adult', 'Mythology', 'Japan', 'Fiction', 'Romance', 'Japanese Literature']", "['Fantasy', 'Fiction', 'Classics', 'Humor', 'Mythology', 'Novels', 'Comedy']", "['Nonfiction', 'Biography', 'Sports', 'Autobiography', 'Memoir', 'Canada', 'Biography Memoir']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Fiction', 'Adventure', 'Childrens', 'Magic']", "['Classics', 'Gothic', 'Fiction', 'Horror', '19th Century', 'Historical Fiction', 'Literature']", "['Nonfiction', 'Travel', 'Biography', 'German Literature', 'Audiobook', 'Memoir', 'Humor']", "['Picture Books', 'Halloween', 'Childrens', 'Fairy Tales', 'Cinderella', 'Fantasy', 'Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'Canada', 'Autobiography', 'Biography Memoir', 'Unfinished']", "['Westerns', 'Fiction', 'Historical Fiction', 'Classics', 'Historical', 'Adventure', 'Novels']", "['Science Fiction', 'Fiction', 'Space Opera', 'Audiobook', 'Space', 'Fantasy', 'Science Fiction Fantasy']", "['Romance', 'France', 'Fiction', 'Novels', 'Contemporary', 'Mystery', 'Thriller']", "['Fantasy', 'Fiction', 'Short Stories', 'Audiobook', 'High Fantasy', 'Adult', 'Magic']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Crime', 'Suspense', 'Detective']", "['Philosophy', 'Politics', 'Nonfiction', 'History', 'Science', 'Sociology', 'Classics']", "['Nonfiction', 'Travel', 'Essays', 'Psychology', 'Walking', 'Philosophy', 'Geography']", "['Fiction', 'Classics', 'German Literature', 'Germany', 'Literature', 'Novels', 'School']", "['Classics', 'Plays', 'German Literature', 'Fiction', 'Drama', 'School', 'Theatre']", "['Fiction', 'Swedish Literature', 'School', 'Sweden', 'Contemporary', 'Read For School', 'Scandinavian Literature']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Business', 'Philosophy', 'Spirituality']", "['Fiction', 'Russia', 'Russian Literature', 'Classics', 'Philosophy', 'Politics', 'Literature']", "['Steampunk', 'Fantasy', 'Science Fiction', 'Fiction', 'Zombies', 'Alternate History', 'Young Adult']", "['Fantasy', 'Horror', 'Paranormal', 'Fiction', 'Supernatural', 'Urban Fantasy', 'Graphic Novels']", "['Horror', 'Science Fiction', 'Fiction', 'Thriller', 'Cyberpunk', 'Speculative Fiction', 'Aliens']", "['Poetry', 'Science Fiction', 'Classics', 'Fiction', 'Swedish Literature', 'Nobel Prize', 'Dystopia']", "['Fiction', 'Fantasy', 'Contemporary', 'Literature', 'Literary Fiction', 'Novels', '21st Century']", "['Fiction', 'Romance', 'Historical Fiction', 'Portugal', 'Portuguese Literature', 'Historical', 'Africa']", "['Theology', 'Christian', 'Christianity', 'Science', 'Faith', 'Nonfiction', 'Spirituality']", "['Fantasy', 'LGBT', 'Historical Fiction', 'Fiction', 'Queer', 'M M Romance', 'Epic Fantasy']", "['Fantasy', 'M M Romance', 'High Fantasy', 'Science Fiction Fantasy', 'Fiction', 'Gay', 'Historical Fiction']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Gay', 'LGBT', 'M M Romance', 'Historical Fiction']", "['Fantasy', 'Fiction', 'Canada', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Arthurian']", "['Music', 'Biography', 'Nonfiction', 'Biography Memoir', 'Memoir', 'Audiobook', 'History']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Historical Fiction', 'Action', 'Fantasy']", "['Fiction', 'France', 'Thriller', 'Horror', 'Mystery', 'French Literature', 'Contemporary']", "['Nature', 'Birds', 'Nonfiction', 'Natural History', 'Travel', 'Science', 'Memoir']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Audiobook', 'Mystery Thriller', 'Suspense']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Crime', 'Suspense', 'Audiobook']", "['Fiction', 'Italian Literature', 'Classics', 'Italy', 'Fantasy', 'Literature', 'Magical Realism']", "['Nature', 'Nonfiction', 'Memoir', 'Essays']", "['Fiction', 'Italy', 'Italian Literature', 'Historical Fiction', 'Classics', 'War', 'Novels']", "['Fiction', 'Magical Realism', 'Fantasy', 'Romance', 'Chick Lit', 'Magic', 'Contemporary']", "['Fiction', 'Literary Fiction', 'British Literature', '20th Century', 'Contemporary', 'Novels', 'Female Authors']", "['Horror', 'Fiction', 'Fantasy', 'Occult', 'Gothic', 'Supernatural', 'Magic']", "['Fantasy', 'Young Adult', 'Animals', 'Fiction', 'Wolves', 'Adventure', 'Childrens']", "['Pulp', 'Adventure', 'Fiction', 'Science Fiction', 'Fantasy', 'Action', 'Crime']", "['Young Adult', 'Contemporary', 'Fiction', 'Mystery', 'Romance', 'Realistic Fiction', 'Australia']", "['Philosophy', 'History', 'Nonfiction', 'Religion', 'Science', 'History Of Science', 'Politics']", "['Young Adult', 'Fiction', 'Adventure', 'Action', 'Espionage', 'Mystery', 'Thriller']", "['Science', 'Nonfiction', 'Physics', 'Popular Science', 'Technology', 'Astronomy', 'Space']", "['Young Adult', 'Fantasy', 'Vampires', 'Romance', 'Paranormal', 'Fiction', 'Paranormal Romance']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Speculative Fiction', 'Space']", "['Fantasy', 'Fiction', 'Young Adult', 'Classics', 'Science Fiction Fantasy', 'Science Fiction', 'Epic Fantasy']", "['Horror', 'Fiction', 'Gothic', 'Fantasy', 'Classics', 'Weird Fiction', 'Belgium']", "['Memoir', 'Nonfiction', 'Writing', 'Biography', 'Humor', 'Biography Memoir', 'Essays']", "['Romance']", "['Historical Fiction', 'Romance', 'Historical', 'Fiction', 'France', 'Historical Romance', 'Adventure']", "['Childrens', 'Fiction', 'School Stories', 'Classics', 'Young Adult', 'Boarding School', 'School']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Science Fiction', 'Mystery', 'Middle Grade']", "['Science Fiction', 'Fiction', 'Time Travel', 'Science Fiction Fantasy', 'Adventure', 'Fantasy', 'Classics']", "['Memoir', 'Nonfiction', 'Biography', 'Mental Health', 'Biography Memoir', 'Contemporary', 'Mental Illness']", "['Manga', 'Graphic Novels']", "['Baseball', 'Sports', 'Science', 'Nonfiction', 'Physics']", "['Nonfiction', 'Biography', 'Australia', 'Classics', 'Memoir', 'History', 'Autobiography']", "['Young Adult', 'Fiction', 'Romance', 'LGBT', 'Contemporary', 'Realistic Fiction', 'Humor']", "['Fantasy', 'Young Adult', 'Fiction', 'Animals', 'Middle Grade', 'Childrens', 'Adventure']", "['Philosophy', 'Law', 'Nonfiction']", "['Science Fiction', 'Middle Grade', 'Young Adult', 'Humor', 'Fiction', 'Fantasy', 'Childrens']", "['Politics', 'Nonfiction', 'Cultural', 'Adult', 'Feminism', 'Language']", "['Fiction', 'Thriller', 'Crime', 'Suspense', 'Mystery', 'Espionage', 'Finance']", "['Economics']", "['Nonfiction', 'Health', 'Reference', 'Philosophy', 'Collections', 'Spirituality']", "['Science Fiction', 'Fiction', 'Classics', 'Space Opera', 'Science Fiction Fantasy', 'Speculative Fiction', 'Novels']", "['Horror', 'Halloween', 'Fiction', 'Fantasy', 'Novella', 'Paranormal', 'Supernatural']", "['Fiction', 'Sports', 'Italy', 'Football', 'Contemporary', 'Audiobook', 'Travel']", "['Christmas', 'Childrens', 'Picture Books', 'Holiday', 'Fiction', 'Classics', 'Animals']", "['History', 'Nonfiction', 'American History', 'American Revolution', 'War', 'American Revolutionary War', 'Military History']", "['Poetry', 'Cultural', 'Childrens', 'Spanish Literature', 'Fiction', 'Picture Books', 'Realistic Fiction']", "['Horror', 'Short Stories', 'Gothic', 'Fiction', 'Ghosts', 'Classics', 'Ghost Stories']", "['Biography', 'Nonfiction', 'Sports', 'Autobiography']", "['Fiction', 'LGBT', 'Gay', 'Australia', 'Queer', 'Novels', 'Literature']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Romance', 'Retellings', 'Fiction', 'Fairy Tale Retellings']", "['Science Fiction', 'Fiction', 'Adventure', 'Science Fiction Fantasy', 'Fantasy', 'Dystopia', 'Novels']", "['Romance', 'Time Travel', 'Paranormal', 'Paranormal Romance', 'Magic', 'Fantasy', 'Contemporary']", "['Historical Romance', 'Romance', 'Historical', 'Scotland', 'Historical Fiction', 'Regency', 'Adult']", "['Fiction', 'China', 'Historical Fiction', 'Asia', 'Chinese Literature', 'Animals', 'Asian Literature']", "['History', 'Nonfiction', 'Politics', 'Philosophy', 'Historical', 'American History', 'Government']", "['Fiction', 'Literary Fiction', 'Novels', 'Literature']", "['Fiction', 'Chick Lit', 'Romance', 'Drama', 'Contemporary', 'Womens Fiction', 'Adult Fiction']", "['Fiction', 'Novels', 'Egypt', 'Literature', 'The United States Of America', 'Contemporary', 'Politics']", "['Spirituality', 'Nonfiction', 'Christian', 'Theology']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Historical Fiction', 'Childrens', 'Historical']", "['Historical Fiction', 'Fantasy', 'Young Adult', 'Mystery', 'Horror', 'Paranormal', 'Fiction']", "['Mystery', 'Fiction', 'Cozy Mystery', 'American']", "['Thriller', 'Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'Canada']", "['Psychology', 'Nonfiction', 'Self Help', 'Business', 'Philosophy', 'Design', 'Personal Development']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Vampires', 'Witches', 'Magic', 'Demons']", "['Young Adult', 'Fantasy', 'Paranormal', 'Supernatural', 'Romance', 'Mystery', 'Magic']", "['Fiction', 'France', 'Humor', 'French Literature', 'Roman', 'Crime', 'Contemporary']", "['Classics', 'Finnish Literature', 'Fiction', 'Historical Fiction', 'Historical', 'War', 'Novels']", "['Fiction', 'Egypt', 'Novels', 'Literature', 'Africa', 'Historical Fiction', 'Classics']", "['Fiction', 'Historical Fiction', 'Religion', 'Literary Fiction', 'Literature']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Book Club', 'Audiobook', 'Womens', 'Family']", "['Nonfiction', 'Politics', 'Essays', 'History', 'Classics', 'Literature', 'Philosophy']", "['Business', 'Biography', 'Nonfiction', 'Self Help', 'Personal Development', 'Leadership', 'Audiobook']", "['Romanian Literature', 'Romania', 'Fiction']", "['Nonfiction', 'Politics', 'Economics', 'History', 'Sociology', 'Philosophy', 'Business']", "['Manga', 'Fantasy', 'Comics', 'Graphic Novels', 'Adventure', 'Fiction', 'Pirates']", "['Historical Fiction', 'Adventure', 'Young Adult', 'Fiction']", "['Historical Fiction', 'Lds Fiction', 'Lds', 'Fiction', 'Historical', 'Religion', 'World War II']", "['Graphic Novels', 'Fantasy', 'Middle Grade', 'Adventure', 'Childrens', 'Fiction', 'Young Adult']", "['Fiction', 'Novels', 'Mystery', 'Thriller', 'British Literature', 'Literary Fiction']", "['Manga', 'Horror', 'Mystery', 'Supernatural', 'Ghosts', 'Paranormal', 'Shojo']", "['Fiction', 'Romance', 'Crime', 'Classics', 'Drama', 'Historical Fiction', 'Novels']", "['Fiction', 'Historical Fiction', 'Canada', 'Spirituality', 'Classics', 'Novels', 'Religion']", "['Russia', 'Fiction', 'Mystery', 'Historical Fiction', 'Detective', 'Crime', 'Russian Literature']", "['Fiction', 'Short Stories', 'Novels', 'Indonesian Literature', 'Literature', 'Romance', 'Anthologies']", "['Short Stories', 'Fiction', 'Romance', 'Anthologies', 'Unfinished', 'Love', 'Literature']", "['Classics', 'Fiction', 'Portuguese Literature', 'Portugal', 'Romance', 'School', 'Literature']", "['Horror', 'Fiction', 'Supernatural', 'Thriller', 'Ghosts', 'Paranormal', 'Mystery']", "['Nonfiction', 'Romance', 'Self Help', 'Relationships']", "['Young Adult', 'LGBT', 'Fantasy', 'Fiction', 'Superheroes', 'Queer', 'Gay']", "['Short Stories', 'Fiction', 'Literature', 'LGBT', 'American', 'Essays', 'Literary Fiction']", "['History', 'Biography', 'Nonfiction', 'Race', 'Politics', 'American History', 'Civil War']", "['Childrens', 'Fiction', 'Classics']", "['Historical Fiction', 'Young Adult', 'Romance', 'Historical', 'Fiction', 'Historical Romance', 'Chick Lit']", "['Nonfiction', 'Inspirational', 'Religion', 'Memoir', 'Spirituality', 'Faith', 'Biography']", "['Politics', 'Nonfiction', 'History', 'Cultural', 'Social Science', 'Political Science', 'Education']", "['Fantasy', 'Romance', 'Magic', 'Fantasy Romance', 'Adventure', 'Fiction', 'Epic Fantasy']", "['Amish', 'Christian Fiction', 'Christian', 'Young Adult', 'Fiction', 'Amish Fiction', 'Contemporary']", "['Mystery', 'Fiction', 'Young Adult', 'Childrens', 'Adventure', 'Middle Grade', 'Detective']", "['Paranormal Romance', 'Vampires', 'Paranormal', 'Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['School', 'Polish Literature', 'Classics', 'Fiction', 'Historical Fiction', 'Poland', 'Read For School']", "['Fiction', 'China', 'Literary Fiction', 'Asia', 'Novels', 'Contemporary', 'The United States Of America']", "['Fiction', 'Mystery', 'Chick Lit', 'Southern', 'Audiobook', 'Contemporary', 'Adult']", "['Fiction', 'India', 'Classics', 'Indian Literature', 'Historical Fiction', 'Novels', 'Literature']", "['Russia', 'Classics', 'Short Stories', 'Fiction', 'Russian Literature', 'Nobel Prize', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Spain', 'Adventure', 'Medieval History']", "['Graphic Novels', 'Fantasy', 'Vampires', 'Fiction', 'Buffy The Vampire Slayer', 'Graphic Novels Comics', 'Horror']", "['Fiction', 'Contemporary', 'British Literature', 'Literary Fiction', 'Novels', 'Historical Fiction', 'Audiobook']", "['Graphic Novels', 'Comics', 'Nonfiction', 'Bande Dessinée', 'Iran', 'Biography', 'France']", "['Christmas', 'Picture Books', 'Childrens', 'Holiday', 'Fiction', 'Classics', 'Comics']", "['Historical Fiction', 'Fiction', 'Historical', 'Egypt', 'Travel', 'Africa', 'Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Asia', 'War', 'Adventure']", "['Fiction', 'Classics', 'Historical Fiction', 'Religion', 'British Literature', 'Novels', 'Boarding School']", "['History', 'Nonfiction', 'Civil War', 'American History', 'War', 'American Civil War', 'Death']", "['Spirituality', 'Self Help', 'Philosophy', 'Personal Development', 'Nonfiction', 'Audiobook', 'Psychology']", "['Vampires', 'BDSM', 'Paranormal', 'Erotica', 'Paranormal Romance', 'Romance', 'Fantasy']", "['Fiction', 'Mystery', 'LGBT', 'Queer', 'Gay', 'Gay Fiction', 'Novels']", "['Young Adult', 'Fiction', 'Action', 'Adventure', 'Espionage', 'Childrens', 'Thriller']", "['Fiction', 'Thriller', 'Crime', 'Mystery', 'Suspense', 'Mystery Thriller', 'Action']", "['Nonfiction', 'Biography', 'Holocaust', 'Jewish', 'War', 'Read For School', 'History']", "['Fiction', 'Australia', 'Classics', 'Nobel Prize', 'Novels', 'Literature', 'Historical Fiction']", "['Horses', 'Fiction', 'Childrens', 'Animals', 'Young Adult', 'Classics', 'Adventure']", "['Fiction', 'Classics', 'German Literature', 'Historical Fiction', 'War', 'Germany', 'Novels']", "['Nonfiction', 'Music', 'Science', 'Psychology', 'Neuroscience', 'Medicine', 'Medical']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Fantasy', 'Retellings', 'Adventure']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Animals', 'Fantasy', 'Media Tie In']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'British Literature', 'World War II']", "['Historical Fiction', 'Fiction', 'British Literature', 'War', 'Historical', 'World War II', 'Romance']", "['Fiction', 'Indonesian Literature', 'Novels', 'Fantasy', 'Science Fiction', 'Literature', 'Adventure']", "['Religion', 'Science', 'Nonfiction', 'Theology', 'Christianity', 'Evolution', 'Spirituality']", "['Nonfiction', 'Reference', 'Childrens', 'Adventure', 'Middle Grade', 'How To', 'Science']", "['Gothic', 'Classics', 'Horror', 'Fiction', '18th Century', 'British Literature', 'Literature']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Teen', 'Childrens']", "['Horror', 'Fiction', 'Thriller', 'Religion', 'Literature', 'Suspense', 'Mystery']", "['Fiction', 'Historical Fiction', 'Classics', 'American', '20th Century', 'Novels', 'Literature']", "['Historical Fiction', 'Fiction', 'Canada', 'War', 'Historical', 'Gardening', 'World War II']", "['Fiction', 'Canada', 'Classics', 'Literary Fiction', 'Canadian Literature', 'Literature', 'Romance']", "['Fantasy', 'Urban Fantasy', 'Young Adult', 'Fiction', 'German Literature', 'Adventure', 'British Literature']", "['Plays', 'France', 'Fiction', 'French Literature', 'Theatre', 'Classics', 'Drama']", "['Fantasy', 'Fiction', 'Science Fiction', 'Magic', 'Adult Fiction', 'Science Fiction Fantasy', 'High Fantasy']", "['Manga', 'Comics', 'Graphic Novels', 'Mystery', 'Science Fiction', 'Fiction', 'Seinen']", "['Fiction', 'Childrens', 'Young Adult', 'Historical Fiction', 'Religion', 'Middle Grade', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Mythology', 'British Literature', 'Romance']", "['Mystery', 'Fiction', 'Historical Fiction', 'Romance', 'Crime', 'Historical', 'British Literature']", "['Fiction', 'German Literature', 'Classics', 'Literature', 'Novels', 'Germany', 'Literary Fiction']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Death', 'Teen']", "['Writing', 'Nonfiction', 'Classics', 'Literature', 'Memoir', 'Reference', 'Biography']", "['Fiction', 'Romance', 'Adult Fiction', 'Chick Lit', 'Adult', 'Christian Fiction', 'Contemporary']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Vampires', 'Demons']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Magical Realism', 'India', 'Literature', 'Italy']", "['Fiction', 'Classics', 'German Literature', 'Historical Fiction', 'Novels', 'School', 'Historical']", "['Science Fiction', 'Short Stories', 'Christmas', 'Humor', 'Fiction', 'Anthologies', 'Fantasy']", "['Fiction', 'Classics', 'Literature', '20th Century', 'Literary Fiction', 'British Literature', 'Novels']", "['Horror', 'Short Stories', 'Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Paranormal']", "['Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Middle Grade', 'German Literature', 'Sweden']", "['Thriller', 'Crime', 'Mystery', 'Fiction', 'Audiobook', 'Mystery Thriller', 'German Literature']", "['Nonfiction', 'Literature', 'Essays', 'Books About Books', 'Italian Literature', 'Writing', 'Italy']", "['Fiction', 'Historical Fiction', 'Historical', 'Asia', 'Indian Literature', 'China', 'Literature']", "['Fiction', 'Historical Fiction', 'Asia', 'Womens', 'Historical', 'Cultural', 'Book Club']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller', 'Herbs', 'Crime', 'Amateur Sleuth']", "['Biography', 'Nonfiction', 'Politics', 'History', 'Presidents', 'Race', 'United States']", "['Fiction', 'Historical Fiction', 'Indonesian Literature', 'Novels', 'Classics', 'Romance', 'Literature']", "['Horror', 'Fantasy', 'Fiction', 'Classics', 'Short Stories', 'Science Fiction', 'Audiobook']", "['Science Fiction', 'Fiction', 'Fantasy', 'Post Apocalyptic', 'Speculative Fiction', 'Dystopia', 'Science Fiction Fantasy']", "['Horror', 'Fiction', 'Short Stories', 'Fantasy', 'Gothic', 'Weird Fiction', 'Classics']", "['Nonfiction', 'Biography', 'Classics', 'German Literature', 'Memoir', 'Germany', 'Contemporary']", "['Short Stories', 'Fiction', 'Japan', 'Japanese Literature', 'Horror', 'Contemporary', 'Asian Literature']", "['Historical Fiction', 'Fiction', 'War', 'European Literature', 'World War II', 'Germany']", "['Science', 'Nonfiction', 'Astronomy', 'Physics', 'Popular Science', 'Contemporary', 'Space']", "['France', 'Fiction', 'Roman', 'Novels', 'Literature', 'French Literature', '20th Century']", "['Fiction', 'Philosophy', 'Religion', 'Spirituality', 'Islam', 'Humor', 'Short Stories']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Space Opera', 'Novels']", "['Fiction', 'Historical Fiction', 'Westerns', 'Historical', 'Novels']", "['Fiction', 'Novels', 'Literature', 'Literary Fiction', 'Contemporary', 'Drama', 'Adult']", "['Fiction', 'Horror', 'Fantasy', 'Mystery', 'Romance', 'Supernatural', 'Ghosts']", "['History', 'Nonfiction', 'Science', 'Biography', 'Technology', 'Business', 'Engineering']", "['Short Stories', 'Fiction', 'Poetry', 'Canada', 'Feminism', 'Literary Fiction', 'Canadian Literature']", "['Nonfiction', 'Writing', 'Literary Criticism', 'Books About Books', 'Essays', 'Criticism', 'Literature']", "['Mystery', 'Fiction', 'Legal Thriller', 'Suspense', 'Thriller', 'Mystery Thriller', 'Audiobook']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Adult', 'Humor', 'Contemporary Romance']", "['Religion', 'Lds', 'Nonfiction', 'History', 'Mormonism', 'Theology', 'Cultural']", "['Fiction', 'Novels', 'Indonesian Literature', 'Childrens', 'Education', 'Asia', 'Young Adult']", "['Historical Fiction', 'Romance', 'Historical', 'Mystery', 'Historical Romance', 'Fiction', 'Chick Lit']", "['Nonfiction', 'LGBT', 'Queer', 'Memoir', 'Gay', 'Biography', 'Romance']", "['Fiction', 'Spanish Literature', 'Short Stories', 'Classics', 'Latin American', 'Novels', 'Historical Fiction']", "['Fantasy', 'Childrens', 'Vampires', 'Fiction', 'German Literature', 'Classics', 'Middle Grade']", "['Cookbooks', 'Cooking', 'Food', 'Nonfiction', 'Italian Literature', 'Reference', 'Italy']", "['Historical Fiction', 'Young Adult', 'Russia', 'Fiction', 'Fantasy', 'Historical', 'Fairy Tales']", "['Childrens', 'Classics', 'Poetry', 'Juvenile', 'Fiction', 'Animals']", "['Young Adult', 'Science Fiction', 'Fiction', 'Mystery', 'Dystopia', 'Teen', 'Adventure']", "['Novels', 'Fiction', 'Romance', 'Indonesian Literature', 'Drama', 'Literature', 'Philosophy']", "['Fiction', 'War', 'American Revolutionary War', 'Historical Fiction']", "['Historical Fiction', 'Fiction', 'Books About Books', 'Historical', 'Mystery', 'Book Club', 'Jewish']", "['Fiction', 'Dutch Literature', 'Classics', 'Literature', 'School', '20th Century', 'Roman']", "['Fiction', 'Classics', 'Historical Fiction', '20th Century', 'Race', 'School', 'Literature']", "['Poetry', 'Classics', '20th Century', 'American', 'School', 'The United States Of America', 'College']", "['Fantasy', 'Epic Fantasy', 'Fiction', 'High Fantasy', 'Science Fiction Fantasy', 'Magic', 'Demons']", "['Fiction', 'Australia', 'Contemporary', 'Literary Fiction', 'Novels', 'Audiobook', 'Family']", "['Fiction', 'Lds Fiction', 'Religion', 'Lds', 'Church', 'Christian', 'Suspense']", "['Nonfiction', 'Psychology', 'Biography', 'True Crime', 'Thriller', 'Crime', 'Mental Health']", "['Fiction', 'German Literature', 'Literature', 'LGBT', 'Novels', 'Short Stories', '20th Century']", "['Fantasy', 'Young Adult', 'Horror', 'Fiction', 'Magic', 'Paranormal', 'Witches']", "['Poetry', 'Classics', 'Criticism', 'Literature']", "['Childrens', 'Fiction', 'Short Stories', 'Picture Books', 'Fantasy', 'Childrens Classics', 'Art']", "['Fiction', 'Romance', 'Brazil', 'Classics', 'Portuguese Literature', 'Literature', 'Novels']", "['Fiction', 'Hungarian Literature', 'Hungary', 'Nobel Prize', 'Novella', '20th Century', 'Novels']", "['Fantasy', 'Science Fiction', 'France', 'Fiction', 'Roman', 'Novels', 'French Literature']", "['Historical Fiction', 'Fiction', 'Novels', 'Indonesian Literature', 'Classics', 'Literature', 'Asia']", "['Fiction', 'Canada', 'Classics', 'Literature', 'Canadian Literature', 'Coming Of Age', 'Historical Fiction']", "['Fiction', 'Romance', 'Literature', 'Novels']", "['Nonfiction', 'Economics', 'Business', 'Finance', 'Poverty', 'Politics', 'Biography']", "['Nonfiction', 'Spirituality', 'Paranormal', 'Ghosts', 'Religion', 'New Age', 'Inspirational']", "['Feminism', 'Nonfiction', 'Politics', 'Russia', 'History', 'Essays', 'Gender']", "['Spirituality', 'Religion', 'Self Help', 'Nonfiction', 'Philosophy', 'Theology', 'Metaphysics']", "['Doctor Who', 'Science Fiction', 'Audiobook', 'Fiction', 'Media Tie In', 'Time Travel', 'Plays']", "['Novels', 'Fiction', 'Indonesian Literature', 'Young Adult', 'Adventure', 'Drama', 'Inspirational']", "['Horror', 'Fiction', 'Pulp']", "['Plays', 'Drama', 'Classics', 'Fiction', 'Theatre', 'Italian Literature', 'Italy']", "['Politics', 'History', 'Nonfiction', 'Religion', 'Historical', 'Philosophy', 'Antisemitism']", "['History', 'Biography', 'Nonfiction', 'American History', 'World History', 'European History', 'Adventure']", "['Historical Fiction', 'Romance', 'Historical Romance', 'Fiction', 'Historical', 'Chick Lit', 'Drama']", "['Science Fiction', 'Fiction', 'Humor', 'Science Fiction Fantasy', 'Fantasy', 'Space Opera', 'Adventure']", "['Politics', 'History', 'Nonfiction', 'Religion', 'Conspiracy Theories', 'Judaism', 'Philosophy']", "['Science', 'Reference', 'Geology', 'Nature', 'Nonfiction', 'Guides', 'Field Guides']", "['Language', 'Reference', 'Nonfiction', 'Education', 'Self Help', 'Writing', 'Linguistics']", "['Fiction', 'Novels', 'Indonesian Literature', 'Fantasy', 'Science Fiction', 'Romance', 'Literature']", "['Paranormal', 'Vampires', 'Urban Fantasy', 'Romance', 'Fantasy', 'Paranormal Romance', 'Adult']", "['Romance', 'Vampires', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Fiction', 'Urban Fantasy']", "['Paranormal Romance', 'Romance', 'Vampires', 'Paranormal', 'Fantasy', 'Fiction', 'Adult']", "['Mystery', 'Thriller']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Supernatural', 'Young Adult Fantasy', 'Paranormal']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Suspense', 'Crime', 'Historical Fiction']", "['Classics', 'Fiction', 'Childrens', 'Italian Literature', 'Italy', 'Literature', 'Novels']", "['Sports', 'History', 'Cycling', 'Biography', 'Nonfiction', 'Race']", "['Fantasy', 'Fiction', 'Finnish Literature', 'Science Fiction', 'Speculative Fiction', 'Short Stories', 'Weird Fiction']", "['Manga', 'Fantasy', 'Graphic Novels', 'Romance', 'Comics', 'Young Adult', 'Fiction']", "['History', 'Nonfiction', 'Religion', 'Philosophy', 'Magic', 'Anthropology', 'Witchcraft']", "['Mystery', 'Thriller', 'Fiction', 'Historical Fiction', 'Crime', 'Suspense', 'Mystery Thriller']", "['Fiction', 'Scotland', 'Mental Health', 'Mental Illness', 'Contemporary', 'Psychology', 'British Literature']", "['Mystery', 'Fiction', 'Humor', 'Chick Lit', 'Romance', 'Comedy', 'Crime']", "['Mystery', 'Thriller', 'Suspense', 'Fiction', 'Mystery Thriller', 'Adult', 'Crime']", "['Biography', 'Nonfiction', 'Sports', 'Autobiography', 'Memoir', 'History', 'American']", "['Horror', 'Fiction', 'Science Fiction', 'Thriller', 'Lovecraftian']", "['Science Fiction', 'Russia', 'Fiction', 'Dystopia', 'Fantasy', 'Russian Literature', 'Classics']", "['Fantasy', 'Science Fiction', 'Fiction', 'Time Travel', 'Steampunk', 'Science Fiction Fantasy', 'British Literature']", "['Fantasy', 'Science Fiction', 'Time Travel', 'Fiction', 'Science Fiction Fantasy', 'Romance', 'Magic']", "['Plays', 'German Literature', 'Classics', 'Drama', 'Fiction', 'School', '20th Century']", "['Fiction', 'India', 'Historical Fiction', 'Classics', 'Literary Fiction', 'Literature', 'Asia']", "['Horror', 'Short Stories', 'Fiction', 'Ghosts', 'Gothic', 'Classics', 'Ghost Stories']", "['Fiction', 'Mystery', 'Thriller', 'Legal Thriller', 'Mystery Thriller', 'Crime', 'Suspense']", "['Science Fiction', 'Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Adventure', 'Classics']", "['Indonesian Literature', 'Fiction', 'Short Stories', 'Novels', 'Literature', 'Classics', 'Drama']", "['Picture Books', 'Fairy Tales', 'Childrens', 'Fiction', 'Fantasy', 'Classics']", "['Picture Books', 'Poetry', 'Childrens', 'Cats', 'Japan', 'Animals', 'Fiction']", "['Novels', 'Fiction', 'Indonesian Literature', 'Adventure', 'Young Adult', 'Romance', 'Travel']", "['Romance', 'Fiction', 'Novels', 'Chick Lit', 'Contemporary', 'Adult Fiction', 'Family']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Historical Fiction', 'Audiobook', 'Adult']", "['Fiction', 'Mystery', 'Fantasy', 'Historical Fiction', 'Magical Realism', 'Literary Fiction', 'Contemporary']", "['Czech Literature']", "['Fiction', 'Young Adult', 'School', 'War', 'Contemporary', 'Africa', 'Ethiopia']", "['Horror', 'Pulp']", "['Fiction', 'Humor', 'German Literature', 'Young Adult', 'Audiobook', 'High Fantasy', 'Cats']", "['Fiction', 'German Literature', 'Classics', 'Literature', 'Novels', 'Contemporary', 'New York']", "['Nonfiction', 'Sociology', 'Memoir', 'Crime', 'Economics', 'Biography', 'True Crime']", "['Short Stories', 'Fiction', 'Horror', 'Classics', 'Ghost Stories', 'Fantasy', 'Victorian']", "['Horror', 'Short Stories', 'Fiction', 'Gothic', 'Classics', 'Ghost Stories', 'Supernatural']", "['Novels', 'Fiction', 'Indonesian Literature', 'Romance', 'Adventure', 'Travel', 'Young Adult']", "['Classics', 'Fiction', 'Young Adult', 'Romance', 'Historical Fiction', 'Childrens', 'Novels']", "['Mathematics', 'Childrens', 'Picture Books', '1st Grade']", "['Books About Books', 'Nonfiction', 'Reference', 'Womens', 'Feminism', 'Anthologies', 'Writing']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Civil War', 'Classics', 'Southern']", "['Theology', 'Christian', 'Christian Living', 'Christianity', 'Nonfiction', 'Faith', 'Religion']", "['Fantasy', 'Childrens', 'Animals', 'Cats', 'Fiction', 'Middle Grade', 'Young Adult']", "['Education', 'Nonfiction', 'Race', 'Politics', 'Sociology', 'Teaching', 'History']", "['Baseball', 'Sports', 'Nonfiction', 'History', 'Reference', 'Essays', 'American']", "['Horror', 'Fiction', 'Fantasy', 'Gothic', 'Mystery', 'Paranormal', 'Supernatural']", "['Horror', 'Young Adult', 'Fiction', 'Christmas', 'Childrens', 'Thriller', 'Mystery']", "['Mystery', 'Fiction', 'Suspense', 'Mystery Thriller', 'Romance', 'Chick Lit', 'Contemporary']", "['Fiction', 'India', 'Historical Fiction', 'Indian Literature', 'Contemporary', 'Literary Fiction', 'Asia']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Middle Grade', 'Action', 'Young Adult Fantasy']", "['History', 'France', 'Nonfiction', 'True Crime', '17th Century']", "['Historical Fiction', 'Mystery', 'Horror', 'Fiction', 'Historical', 'Thriller', 'Witches']", "['Horror', 'Fiction', 'Short Stories', 'Fantasy', 'Collections']", "['Fiction', 'Philosophy', 'Portugal', 'Historical Fiction', 'Literature', 'German Literature', 'Novels']", "['Fiction', 'Japan', 'Japanese Literature', 'Classics', 'Feminism', 'Asian Literature', 'Asia']", "['Childrens', 'Picture Books', 'Fiction', 'Media Tie In', 'Fantasy']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Supernatural', 'Fiction']", "['War', 'Fiction', 'World War I', 'Classics', 'Historical Fiction', 'Military Fiction', 'Poetry']", "['Christian Fiction', 'Christian', 'Fiction', 'Romance', 'Horses', 'Christian Romance', 'Contemporary']", "['Westerns', 'Fiction', 'Fantasy']", "['Religion', 'Nonfiction', 'Biography', 'Catholic', 'Spirituality', 'Christian', 'Faith']", "['Fiction', 'Historical Fiction', 'German Literature', 'Classics', 'Germany', 'Novels', 'Literary Fiction']", "['Turkish Literature', 'Fiction', 'Turkish', 'Roman', 'Novels', 'Fantasy', 'Historical Fiction']", "['Novels', 'Fiction', 'Indonesian Literature', 'Islam', 'Drama', 'Inspirational', 'Religion']", "['Childrens', 'Humor', 'School Stories', 'Fiction', 'British Literature', 'School', 'Young Adult']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Romance', 'Food', 'Culinary', 'Mystery Thriller']", "['Fiction', 'Thriller', 'Drama', 'Roman', 'Science Fiction', 'Adult Fiction', 'Family']", "['Horror', 'Short Stories', 'Fiction', 'Classics', 'Gothic', 'Ghost Stories', 'Ghosts']", "['Fiction', 'Contemporary', 'Romance', 'Adult', 'Poetry', 'Classics', 'Dark']", "['Biography', 'Nonfiction', 'Journalism', 'Politics', 'Literature', 'History', 'Memoir']", "['Nonfiction', 'Philosophy', 'Atheism', 'Science', 'Essays', 'History', 'Sociology']", "['Fantasy', 'Fiction', 'Mythology', 'Classics', 'Epic Fantasy', 'High Fantasy', 'Sword and Sorcery']", "['Buddhism', 'Biography', 'Memoir', 'Nonfiction', 'Biography Memoir', 'Religion', 'Autobiography']", "['Art', 'Biography', 'Nonfiction', 'Pop Culture', 'Memoir', 'Art History', 'Cultural']", "['Comics', 'Graphic Novels', 'Horror', 'Fiction', 'Graphic Novels Comics', 'Bande Dessinée', 'Mystery']", "['Classics', 'Horror', 'Gothic', 'German Literature', 'Fiction', 'Germany', 'Romanticism']", "['Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Southern', 'Novels', 'Literary Fiction']", "['Picture Books', 'Biography', 'Nonfiction', 'History', 'Childrens', 'Historical', 'Biography Memoir']", "['Historical Fiction', 'Fiction', 'Ireland', 'Historical', 'Canada', 'Novels', 'Irish Literature']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Romance', 'Science Fiction']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Fae', 'Paranormal', 'Paranormal Romance', 'Magic']", "['Historical Fiction', 'Fiction', 'Romance']", "['Nonfiction', 'History', 'Adventure', 'Science', 'Biography', 'Maritime', 'American History']", "['Horror', 'Fantasy', 'Fiction', 'Mystery', 'Paranormal', 'Classics', 'Pulp']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Gardening', 'Adult Fiction', 'Crime', 'Adult']", "['Self Help', 'Marriage', 'Nonfiction', 'Relationships', 'Parenting']", "['Mystery', 'Fiction', 'Art', 'Crime', 'Thriller', 'Mystery Thriller', 'Art History']", "['History', 'Nonfiction', 'Religion', 'Politics', 'American History', 'Biography', 'Presidents']", "['Fiction', 'Australia', 'Historical Fiction', 'Classics', 'Novels', '20th Century', 'Literature']", "['Mystery', 'Fiction', 'Africa', 'Botswana', 'Crime', 'Detective', 'Audiobook']", "['Politics', 'Philosophy', 'Economics', 'Nonfiction', 'Law', 'Classics', 'History']", "['Fiction', 'Contemporary', 'Chick Lit', 'Adult Fiction', 'Drama', 'Adult', 'Realistic Fiction']", "['Fiction', 'Romance', 'Polish Literature', 'Contemporary', 'Novels', 'Poland', 'Modern']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Ghosts']", "['Fantasy', 'Fiction', 'Middle Grade', 'Childrens', 'Young Adult', 'Christian', 'Christian Fiction']", "['Manga', 'Fantasy', 'Josei', 'Romance', 'Graphic Novels']", "['Manga', 'Graphic Novels', 'Josei', 'Fantasy', 'Romance', 'Comics']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Suspense', 'Mystery Thriller', 'Audiobook']", "['Fiction', 'India', 'Indian Literature', 'Short Stories', 'Novella', 'Childrens', 'Novels']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Drama', 'Adult', 'Family']", "['Historical Fiction', 'Fiction', 'Mythology', 'Greek Mythology', 'Fantasy', 'Historical', 'Greece']", "['Fiction', 'Quilting', 'Chick Lit', 'Historical Fiction', 'Womens Fiction', 'Contemporary', 'Audiobook']", "['Nonfiction', 'Reference', 'Language', 'Linguistics', 'Education', 'Writing', 'Textbooks']", "['Young Adult', 'Contemporary', 'Romance', 'Music', 'Fiction', 'Teen', 'Realistic Fiction']", "['Short Stories', 'Fiction', 'Literature', 'Classics', 'British Literature']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Teen', 'Romance', 'Boarding School']", "['Horror', 'Fiction', 'Classics', 'Gothic', 'Crime', 'Read For College', 'Novels']", "['Historical Fiction', 'Fiction', 'Mystery', 'Religion', 'Historical', 'Thriller', 'Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Adventure', 'Asia', 'Fantasy']", "['Photography', 'Art', 'Nonfiction', 'Art and Photography', 'Reference', 'Nature', 'Travel']", "['Science', 'Religion', 'Christian', 'Philosophy', 'Nonfiction', 'Christianity', 'Theology']", "['Language', 'Nonfiction', 'Linguistics', 'Education']", "['Fiction', 'Science Fiction', 'Anthologies']", "['Post Apocalyptic', 'Fiction', 'Science Fiction', 'Humor', 'Dystopia', 'Apocalyptic', 'Fantasy']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Romance', 'Fiction', 'Dystopia', 'Paranormal']", "['Fiction', 'Contemporary', 'Art', 'Literary Fiction', 'Mental Health', 'British Literature', 'Book Club']", "['Historical Fiction', 'Fiction', 'Medicine', 'Classics']", "['Fantasy', 'Fiction', 'Speculative Fiction', 'Novels', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Middle Grade', 'Young Adult', 'Childrens', 'Adventure', 'Mystery']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Fiction', 'Supernatural', 'Mystery']", "['Science', 'Nonfiction', 'Biology', 'Evolution', 'History', 'Nature', 'Palaeontology']", "['Science Fiction', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Robots', 'Speculative Fiction', 'Science Fiction Fantasy']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Mystery Thriller', 'Murder Mystery', 'Adult Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Fiction', 'Fae', 'Mystery']", "['Nonfiction', 'Animals']", "['Young Adult', 'Romance', 'Contemporary', 'Road Trip', 'Chick Lit', 'Realistic Fiction', 'Fiction']", "['Science Fiction', 'Young Adult', 'Mystery', 'Time Travel', 'Fantasy', 'Middle Grade', 'Fiction']", "['Philosophy', 'Metaphysics', 'Nonfiction']", "['Fiction', 'Canada', 'Contemporary', 'Canadian Literature', 'Book Club', 'Historical Fiction', 'Literary Fiction']", "['Fiction', 'Canada', 'Historical Fiction', 'Literary Fiction', 'Canadian Literature', 'Contemporary', 'Coming Of Age']", "['Spirituality', 'Nonfiction', 'Religion', 'Philosophy', 'Christianity', 'Self Help', 'Theology']", "['Fiction', 'Classics', 'Historical Fiction', 'Historical', 'Literature', 'Novels', 'Serbian Literature']", "['Horror', 'Fiction', 'Suspense']", "['Spirituality', 'Paranormal']", "['Film', 'History']", "['Humor', 'Business', 'Nonfiction', 'Comics', 'Comedy', 'Management', 'Leadership']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'Audiobook', 'Suspense']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Mystery Thriller', 'Crime', 'Audiobook']", "['Fantasy', 'Fiction', 'Childrens', 'Chapter Books', 'Historical Fiction', 'Adventure', 'Middle Grade']", "['Fiction', 'Australia', 'Classics', 'Nobel Prize', 'Literature', 'Novels', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Historical', 'Romance', 'Scandinavian Literature', 'Classics', 'Roman']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Mystery', 'Cyberpunk', 'Thriller', 'Crime']", "['History']", "['Biography', 'Nonfiction', 'Literature', 'History']", "['Mystery', 'Fiction', 'Crime', 'Detective', 'Novels', 'Thriller', 'Mystery Thriller']", "['Fiction', 'Short Stories', 'Southern Gothic', 'Contemporary', 'Horror', 'Crime', 'Literature']", "['Short Stories', 'Science Fiction', 'Fiction', 'Post Apocalyptic', 'Horror', 'Anthologies', 'Dystopia']", "['Biography', 'Nonfiction', 'Music', 'History', 'Photography', 'Art']", "['Psychology', 'Nonfiction', 'Business', 'Science', 'Self Help', 'Sociology', 'Personal Development']", "['Alternate History', 'Historical Fiction', 'Science Fiction', 'Fiction', 'Fantasy', 'Historical', 'Speculative Fiction']", "['Vampires', 'Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Supernatural', 'Teen']", "['Young Adult', 'Mystery', 'Realistic Fiction', 'Fiction', 'Teen', 'Contemporary', 'Middle Grade']", "['Poetry', 'Horror', 'Fantasy', 'Fiction', 'Werewolves', 'Urban Fantasy', 'Paranormal']", "['Czech Literature', 'Classics', 'Humor', 'Fiction', 'School', 'Comedy', 'Audiobook']", "['Bulgarian Literature', 'Contemporary', 'Bulgaria', 'Fiction', 'Literature']", "['Fiction', 'German Literature', 'Classics', 'Novels', 'Literature', '20th Century', 'Dark']", "['Fiction', 'Humor', 'Contemporary', 'Adult Fiction', 'Roman', 'Chick Lit']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Witches', 'Fantasy', 'Magic', 'Urban Fantasy']", "['Romantic Suspense', 'Mystery', 'Suspense', 'Thriller', 'Romance', 'Crime', 'Mystery Thriller']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Crime', 'Mystery Thriller', 'Spy Thriller']", "['Fiction', 'Short Stories', 'Literary Fiction', 'Contemporary', 'Book Club', 'Adult Fiction', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Retellings', 'Historical Fiction', 'Fiction', 'Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'Roman', 'Italy', 'Egypt', 'Ancient History']", "['Politics', 'Nonfiction', 'Philosophy', 'Economics', 'History', 'Russia', 'Theory']", "['Food', 'Nonfiction', 'Health', 'Science', 'Agriculture', 'Environment', 'Economics']", "['Mystery', 'Classics', 'Fiction', 'Novels', 'Thriller', 'Mystery Thriller', 'Gothic']", "['Mystery', 'Thriller', 'Fiction', 'Suspense', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Nonfiction', 'True Crime', 'History', 'Mystery', 'Crime', 'Historical', 'Victorian']", "['Short Stories', 'Fiction', 'Humor', 'American']", "['Young Adult', 'Survival', 'Fiction', 'Adventure', 'Nature', 'Teen', 'Childrens']", "['Short Stories', 'Fiction', 'Literature', 'American', 'Contemporary', 'Literary Fiction', 'Adult Fiction']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Realistic Fiction', 'High School', 'Teen']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Adult', 'Fiction', 'Abuse']", "['Fiction', 'Historical Fiction', 'Classics', 'Family', 'Literary Fiction', 'Historical', 'Book Club']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Dystopia', 'France', 'Novels', 'Apocalyptic']", "['Mystery', 'Fiction', 'Romance', 'Suspense', 'Thriller', 'Chick Lit', 'Crime']", "['Fiction', 'India', 'Contemporary', 'Indian Literature', 'Novels', 'Literary Fiction', 'Literature']", "['Classics', 'Fiction', 'Russian Literature', 'Russia', 'Short Stories', 'Romance', 'Literature']", "['Fiction', 'Fantasy', 'Latin American', 'Spanish Literature', 'Magical Realism', 'Novels', 'Latin American Literature']", "['Fiction', 'Mythology', 'Fantasy', 'Historical Fiction', 'India', 'Indian Literature', 'Historical']", "['Fiction', 'Historical Fiction', 'Classics', 'British Literature', 'Literary Fiction', 'World War II', 'Modern Classics']", "['Historical Romance', 'Romance', 'Medieval', 'Historical', 'Historical Fiction', 'Medieval Romance', 'Fiction']", "['Mystery', 'Scotland', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'British Literature']", "['Fantasy', 'Childrens', 'Science Fiction', 'Fiction', 'Adventure', 'Middle Grade']", "['Fiction', 'Contemporary', 'Romance', 'Historical Fiction', 'British Literature', 'Literature', 'Novels']", "['Science', 'Nonfiction', 'Space', 'Astronomy', 'Engineering', 'Technology', 'Politics']", "['Picture Books', 'Fantasy', 'Mythology', 'Childrens', 'Fiction', 'Art', 'Fairies']", "['Fiction', 'China', 'Historical Fiction', 'Asian Literature', 'Asia', 'Historical', 'Adult']", "['Horror', 'Childrens', 'Fantasy', 'Young Adult', 'Short Stories']", "['Fiction', 'German Literature', 'Germany', 'Historical Fiction', 'Classics', 'War', 'World War II']", "['Mystery', 'Fiction', 'Crime', 'Detective', 'Mystery Thriller', 'Classics', 'Thriller']", "['Romance', 'Romantic Suspense', 'Mystery', 'Suspense', 'Contemporary']", "['Philosophy', 'Nonfiction', 'Psychology', 'Spirituality', 'History', 'Religion', 'Metaphysics']", "['Fantasy', 'Childrens', 'Fiction', 'Middle Grade', 'Animals', 'Cats', 'Classics']", "['Picture Books', 'Childrens', 'Storytime', 'Animals', 'Fiction', 'Emotion', 'Kids']", "['Childrens', 'Fiction', 'Brazil', 'Portuguese Literature', 'Classics', 'Comics', 'Literature']", "['True Crime', 'Nonfiction', 'Crime', 'Biography', 'Audiobook', 'Memoir', 'History']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Werewolves', 'Magic', 'Romance', 'Paranormal Romance']", "['History', 'Military History', 'Military Fiction', 'War', 'Nonfiction', 'Economics', 'Academic']", "['Horror', 'Fiction', 'Splatterpunk', 'Pulp', 'British Literature']", "['Historical Fiction', 'Young Adult', 'Adventure', 'Historical', 'War', 'Fiction', 'World War II']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Chick Lit', 'Humor', 'Realistic Fiction']", "['Fiction', 'Crime', 'Music', 'Noir', 'Mystery', 'Thriller']", "['Fantasy', 'Fiction', 'Science Fiction', 'Alternate History', 'Historical Fiction', 'Historical', 'Historical Fantasy']", "['Fiction', 'Humor', 'Childrens', 'Middle Grade', 'Realistic Fiction', 'Graphic Novels', 'Young Adult']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Vampires', 'Romance', 'Paranormal Romance']", "['Fiction', 'Christian', 'Christian Fiction', 'Spirituality', 'Faith', 'Religion', 'Inspirational']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Polish Literature', 'Historical', 'Audiobook', 'Historical Fantasy']", "['Childrens', 'Fantasy', 'Fiction', 'Adventure', 'Middle Grade', 'Dinosaurs', 'Chapter Books']", "['Fiction', 'Science Fiction', 'Mystery', 'Fantasy', 'Thriller', 'Paranormal', 'Suspense']", "['Historical Fiction', 'Fiction', 'Historical', 'Evolution', 'American', 'Adventure', 'Nature']", "['Horror', 'Classics', 'Gothic', 'Fiction', 'Mystery', 'Ireland', '19th Century']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Middle Grade', 'Action', 'Childrens']", "['History', 'Nonfiction', 'Scotland', 'Biography', 'Travel', 'Ornithology', 'Religion']", "['Historical Fiction', 'Fiction', 'Dutch Literature', 'School', 'Roman', 'Literature', 'Historical']", "['Fiction', 'Spanish Literature', 'Classics', 'Latin American Literature', 'Literature', 'Novels', 'Latin American']", "['Romance', 'Fiction', 'Chick Lit', 'Drama', 'Historical Fiction', 'Historical']", "['Short Stories', 'Fiction', 'Classics', 'Literary Fiction', 'Literature', 'American', '20th Century']", "['Romance', 'Fiction', 'Contemporary', 'German Literature', 'Chick Lit', 'Roman', 'Audiobook']", "['Fiction', 'Thriller', 'Adventure', 'Mystery', 'Suspense', 'Action', 'Crime']", "['Crime', 'Mystery', 'Fiction', 'Italy', 'Italian Literature', 'Thriller', 'Audiobook']", "['Horror', 'Fiction', 'Mystery', 'Fantasy', 'Supernatural', 'Thriller', 'Suspense']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Paranormal', 'Demons', 'Magic', 'Fiction']", "['Paranormal Romance', 'Romance', 'Paranormal', 'Fantasy', 'Shapeshifters', 'Urban Fantasy', 'Adult']", "['History', 'Nonfiction', 'Linguistics', 'Anthropology', 'Language', 'Archaeology', 'Science']", "['Poetry', 'Classics']", "['Young Adult', 'Romance', 'Paranormal', 'Poetry', 'Ghosts', 'Fantasy', 'Contemporary']", "['Fiction', 'Australia', 'Novels', 'Contemporary', 'Humor', 'Literature', 'Philosophy']", "['Horror', 'Fiction', 'Paranormal', 'Thriller', 'Supernatural', 'Audiobook', 'Fantasy']", "['Fiction', 'Classics', 'British Literature', 'Novels', '20th Century', 'Literary Fiction', 'Books About Books']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'Classics', 'Middle Grade']", "['Middle Grade', 'Fiction', 'Childrens', 'Realistic Fiction', 'Audiobook', 'Young Adult', 'Family']", "['Fiction', 'Contemporary', 'Novels', 'Adult', 'Horror', 'American', 'Humor']", "['Horror', 'Young Adult', 'Fantasy', 'Vampires', 'Fiction', 'Historical Fiction', 'Paranormal']", "['Pulp']", "['Turkish Literature', 'Turkish', 'Fiction', 'Classics', 'Roman', 'Novels', 'Literature']", "['Mystery', 'Crime', 'Fiction', 'Scotland', 'Detective', 'Thriller', 'Mystery Thriller']", "['Historical Fiction']", "['Mystery', 'Classics', 'Fiction', 'Crime', 'Short Stories', 'Detective', 'Mystery Thriller']", "['Fiction', 'France', 'French Literature', 'Novels', 'Classics', 'Roman', 'Philosophy']", "['Nonfiction', 'History', 'True Crime', 'Biography', 'Crime', 'Science', 'Medicine']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', '18th Century', 'Historical Mystery', 'Mystery Thriller']", "['Horror', 'Fiction', 'Gothic', 'Mystery', 'Ghost Stories', 'Ghosts', 'Paranormal']", "['Horror', 'Fiction', 'Fantasy', 'Humor', 'Science Fiction', 'Comedy', 'Urban Fantasy']", "['Military Fiction', 'World War II', 'War', 'Military History', 'History']", "['Fiction', 'Crime', 'Mystery', 'New York', 'Novels', 'Audiobook', 'Mystery Thriller']", "['School', 'Polish Literature', 'Classics', 'Mythology', 'Nonfiction', 'History', 'Read For School']", "['France', 'Fiction', 'French Literature', 'Classics', 'Roman', 'Literature', 'Greece']", "['Bulgarian Literature', 'Classics', 'School', 'Historical Fiction', 'Fiction', 'Historical', 'Bulgaria']", "['Gothic', 'Classics', 'Horror', 'Fiction', '18th Century', 'Fantasy', 'Literature']", "['Middle Grade', 'Realistic Fiction', 'Family', 'Childrens', 'Fiction', 'Contemporary', 'Humor']", "['Fiction', 'France', 'Historical Fiction', 'French Literature', 'Roman', 'Novels', '20th Century']", "['Business', 'Self Help', 'Nonfiction', 'Personal Development', 'Biography', 'Money', 'Leadership']", "['Nonfiction', 'Atheism', 'Science', 'Philosophy', 'Mathematics', 'Skepticism', 'Spirituality']", "['Nonfiction', 'Polish Literature', 'School', 'History', 'Classics', 'War', 'Biography']", "['Fantasy', 'Fiction', 'High Fantasy', 'Polish Literature', 'Audiobook', 'Adventure', 'Epic Fantasy']", "['Fiction', 'Iran', 'Historical Fiction', 'Dutch Literature', 'Literature', 'Roman', 'Novels']", "['Memoir', 'Nonfiction', 'Biography', 'Romance', 'Autobiography', 'Biography Memoir', 'Relationships']", "['Comics', 'Graphic Novels', 'Marvel', 'Comic Book', 'Superheroes', 'Fiction', 'Graphic Novels Comics']", "['Manga', 'Fantasy', 'Romance', 'Graphic Novels', 'Anime', 'Comics', 'Shojo']", "['Fiction', 'Historical Fiction', 'Classics', 'British Literature', 'Historical', 'Novels', '20th Century']", "['Graphic Novels', 'Comics', 'Horror', 'Zombies', 'Fiction', 'Post Apocalyptic', 'Graphic Novels Comics']", "['Horror', 'Ghost Stories', 'Short Stories', 'Gothic', 'Anthologies', 'Weird Fiction', 'Fantasy']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Supernatural', 'Fiction']", "['Horror', 'Short Stories', 'Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Middle Grade']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Teen', 'Fantasy', 'Mystery']", "['Historical Fiction', 'Classics', 'Fiction', 'Polish Literature', 'Poland', 'Historical', 'War']", "['Polish Literature', 'Classics', 'School', 'Drama', 'Plays', 'Fiction', 'Poland']", "['Nonfiction', 'History', 'Espionage', 'Russia', 'Biography', 'Military Fiction', 'True Crime']", "['Romance', 'Fiction', 'France', 'Contemporary', 'Time Travel', 'Fantasy', 'Roman']", "['Childrens', 'Fiction', 'Young Adult', 'British Literature']", "['Novels', 'Fiction', 'Indonesian Literature', 'Romance', 'Historical Fiction']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Ireland', 'Audiobook']", "['Nonfiction', 'Travel', 'Memoir', 'Psychology', 'Humor', 'Philosophy', 'Audiobook']", "['Self Help', 'Nonfiction', 'Psychology', 'Marriage', 'Inspirational', 'Audiobook']", "['Horror', 'Classics', 'Fiction', 'Pirates', 'Fantasy', 'Weird Fiction', 'Mystery']", "['Religion', 'Classics', 'Nonfiction', 'Christian', 'Philosophy', 'Christianity', 'History']", "['Graphic Novels', 'Comics', 'Memoir', 'Nonfiction', 'Graphic Novels Comics', 'Autobiography', 'Short Stories']", "['Memoir', 'Nonfiction', 'Mental Illness', 'Mental Health', 'Psychology', 'Biography Memoir', 'Adult']", "['Historical Fiction', 'Young Adult', 'Mythology', 'Fantasy', 'Historical', 'Fiction', 'Adventure']", "['Picture Books', 'Childrens', 'Witches', 'Fiction', 'Halloween']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Shapeshifters', 'Adult']", "['Historical Fiction', 'Historical', 'Fiction', 'Tudor Period', 'British Literature', '16th Century', 'Adult']", "['Horror', 'Fiction', 'Mystery', 'Crime', 'Fantasy', 'Novels', 'Thriller']", "['Romance', 'Contemporary Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Christmas', 'Holiday']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'British Literature', 'Historical Mystery', 'Romance']", "['Politics', 'Nonfiction', 'Religion', 'History', 'Humor', 'War', 'Journalism']", "['Fiction', 'Mystery', 'Historical Fiction', 'Magical Realism', 'Fantasy', 'Contemporary', 'Adult Fiction']", "['Fiction', 'Mystery', 'Crime', 'Mystery Thriller', 'Thriller']", "['Holiday', 'Christmas']", "['Christian Fiction', 'Christian', 'Fiction', 'Mystery', 'Suspense', 'Dystopia', 'Romance']", "['Fiction', 'Historical Fiction', 'Coming Of Age', 'Novels', 'Romance']", "['Comics', 'Humor']", "['Fantasy', 'Time Travel', 'Science Fiction', 'Romance', 'Fiction', 'Historical Fiction', 'Historical']", "['Classics', 'Fiction', 'Music', '20th Century', 'Historical Fiction', 'Germany', 'Australia']", "['Nonfiction', 'Biography', 'Romance', 'Classics', 'Travel', 'France', '20th Century']", "['Science Fiction', 'Time Travel', 'Alternate History', 'Fiction', 'Historical Fiction', 'Fantasy', 'Science Fiction Fantasy']", "['Fiction', 'Polish Literature', 'Short Stories', 'Poland', 'Magical Realism', 'Stories', 'Contemporary']", "['Manga', 'Graphic Novels', 'Comics', 'Japan', 'Short Stories', 'Fiction', 'Japanese Literature']", "['Historical Fiction', 'Young Adult', 'Holocaust', 'Historical', 'World War II', 'Fiction', 'War']", "['Music', 'Biography', 'Nonfiction', 'Autobiography', 'Memoir', 'Biography Memoir', 'Rock N Roll']", "['Historical Fiction', 'Fiction', 'War', 'Historical', 'Russia', 'World War II', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Marriage', 'Literary Fiction', 'LGBT', 'Novels', 'The United States Of America']", "['Travel', 'Nonfiction', 'China', 'Humor', 'Memoir', 'Asia', 'History']", "['Fiction', 'Czech Literature', 'Classics', 'Literature', '20th Century', 'Literary Fiction', 'Novels']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Audiobook', 'Suspense']", "['Fiction', 'German Literature', 'Germany', 'Classics', 'Politics', 'Literary Fiction', 'Literature']", "['Fiction', 'Mystery', 'Ireland', 'Humor', 'Irish Literature', 'Animals', 'Adult Fiction']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Detective']", "['Fiction', 'Chick Lit', 'Romance', 'Audiobook', 'Contemporary', 'Womens Fiction', 'Novels']", "['Christian', 'Nonfiction', 'Religion', 'Christianity', 'Theology', 'Christian Living', 'Faith']", "['Historical Fiction', 'World War II', 'Fiction', 'Holocaust', 'Historical', 'War', 'Romance']", "['Nonfiction', 'Memoir', 'Christian', 'Faith', 'Self Help', 'Biography', 'Religion']", "['Nonfiction', 'Memoir', 'Philosophy', 'Essays', 'Death', 'Biography', 'Biography Memoir']", "['Fiction', 'Historical Fiction', 'Romance', 'Humor', 'Audiobook', 'Historical', 'Adult Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Humor', 'Chick Lit', 'Southern', 'Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Magic', 'Dark Fantasy']", "['Fiction', 'Novels', 'Contemporary', 'Chick Lit', 'Book Club', 'Family', 'Adult Fiction']", "['Historical Fiction', 'Fiction', 'World War II', 'Historical', 'Holocaust', 'War', 'Germany']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Weird Fiction', 'Gothic', 'Poland']", "['Picture Books', 'Cats', 'Animals', 'Childrens', 'Realistic Fiction', 'Fiction', 'Romance']", "['Manga', 'Mystery', 'Fiction', 'Light Novel', 'Fantasy', 'Crime', 'Thriller']", "['Young Adult', 'Romance', 'Realistic Fiction', 'Contemporary', 'Teen', 'Fiction', 'Divorce']", "['Fiction', 'Short Stories', 'Essays', 'War', 'Humor', 'Literature', 'Classics']", "['Music', 'Nonfiction', 'History', 'Photography', 'Art', 'Punk']", "['Horror', 'Fiction', 'Thriller']", "['Romance', 'Fiction', 'Chick Lit', 'Fantasy', 'Contemporary', 'Adult', 'Adult Fiction']", "['Picture Books', 'Nature', 'Childrens']", "['Mystery', 'Fiction', 'Crime', 'Cozy Mystery', 'Audiobook']", "['Crime', 'Mystery', 'Fiction', 'Thriller', 'Scandinavian Literature', 'Nordic Noir', 'Detective']", "['Philosophy', 'Science', 'Nonfiction', 'Politics', 'Psychology', 'Education', 'Sociology']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Thriller', 'Audiobook', 'Wolves', 'Suspense']", "['Fiction', 'Turkish Literature', 'Turkish', 'Classics', 'Roman', 'Literature', 'Novels']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'New York', 'Literature', 'American']", "['Fiction', 'Politics', 'Mystery', 'Novels', 'Book Club']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Supernatural', 'Demons', 'Paranormal']", "['Nonfiction', 'Memoir', 'Humor', 'Biography', 'Books About Books', 'Adult', 'Biography Memoir']", "['Nonfiction', 'Audiobook', 'Psychology', 'History', 'Cultural', 'Finance', 'Business']", "['Historical Fiction', 'Christian Fiction', 'Christian', 'Historical', 'Fiction', 'World War II', 'War']", "['Historical Fiction', 'Christian Fiction', 'Fiction', 'Christian', 'Historical', 'Adult Fiction', 'Romance']", "['Fiction', 'Historical Fiction', 'War', 'German Literature', 'Germany', 'Contemporary', 'Historical']", "['History', 'Nonfiction', 'Science', 'Environment', 'Climate Change', 'Archaeology', 'Anthropology']", "['Young Adult', 'Fantasy', 'Steampunk', 'Historical Fiction', 'Fiction', 'Adventure', 'Science Fiction']", "['Africa', 'Anthologies', 'Fiction', 'Feminism', 'Short Stories', 'African American', 'Poetry']", "['Vampires', 'Young Adult', 'Romance', 'Fantasy', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Christian', 'Christianity', 'Christian Living', 'Spirituality']", "['Biography', 'Business', 'Finance', 'Nonfiction', 'Economics', 'Biography Memoir', 'History']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Supernatural', 'Fantasy', 'Mystery Thriller']", "['Fiction', 'Novels', 'Contemporary', 'Literary Fiction', 'Horror']", "['Young Adult', 'Fiction']", "['Picture Books', 'Childrens', 'Animals', 'Dogs', 'Fiction', 'Storytime', 'Classics']", "['History', 'Nonfiction', 'Memoir', 'American History', 'Africa', 'American', 'Historical']", "['Short Stories', 'Fiction', 'Spanish Literature', 'Classics', 'Latin American', 'Literature', 'Latin American Literature']", "['Science Fiction', 'Fiction']", "['Fiction', 'British Literature', 'Literature', 'Contemporary']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Adult Fiction', 'Drama', 'Thriller', 'Literature']", "['Philosophy', 'Theology', 'Religion', 'Nonfiction', 'Christianity']", "['Philosophy', 'Nonfiction', 'Atheism', 'Spirituality', 'Science', 'Psychology', 'Self Help']", "['Nonfiction', 'Science', 'Humor', 'Sexuality', 'Psychology', 'History', 'Biology']", "['Short Stories', 'Fiction', 'Humor', 'Chick Lit', 'Womens', 'Audiobook', 'Adult Fiction']", "['Crime', 'Mystery', 'Fiction', 'Scotland', 'Thriller']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Womens Fiction', 'Adult Fiction', 'Novels']", "['Manga', 'Graphic Novels', 'Fantasy', 'Animals', 'Middle Grade', 'Comics', 'Cats']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Fiction', 'Childrens', 'Science Fiction', 'Adventure']", "['Film', 'Nonfiction', 'History', 'Media Tie In', 'Pop Culture', 'Audiobook', 'Cultural']", "['Fantasy', 'France', 'Young Adult', 'Roman', 'Fiction', 'Adventure', 'Childrens']", "['Nonfiction', 'Gender', 'LGBT', 'Queer', 'Biography']", "['Philosophy', 'Religion']", "['Picture Books', 'Childrens', 'Fiction', 'Environment', 'School', 'Nature']", "['School', 'Childrens', 'Picture Books', 'Fiction', 'Back To School', 'Animals']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Apocalyptic', 'Dystopia', 'Science Fiction Fantasy', 'Thriller']", "['Fantasy', 'Romance', 'Fiction', 'Fantasy Romance', 'Science Fiction Fantasy', 'Audiobook', 'Magic']", "['Fantasy', 'Fiction', 'Dystopia', 'Science Fiction', 'Humor', 'Mystery', 'Science Fiction Fantasy']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult', 'Adult Fiction', 'Audiobook']", "['Fiction', 'Music', 'Humor', 'African American', 'Novels', 'Literary Fiction', 'African American Literature']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Adult', 'Adult Fiction', 'Audiobook']", "['Classics', 'Horror', 'Fiction', 'Gothic', 'Music', 'Mystery', 'Victorian']", "['Christian Fiction', 'Historical Fiction', 'Romance', 'Christian', 'Historical', 'Historical Romance', 'Fiction']", "['Military Fiction']", "['Fantasy', 'Fiction', 'Humor', 'Classics', 'Science Fiction', 'Comedy', 'Short Stories']", "['Mystery', 'Mystery Thriller', 'Suspense', 'Fiction', 'Thriller']", "['Fantasy', 'Romance', 'Fiction', 'Steampunk', 'Young Adult', 'France', 'Magical Realism']", "['Poetry', 'Nonfiction', 'Literature', 'Literary Fiction', 'Essays']", "['Nonfiction', 'Politics', 'History', 'True Crime', 'Law', 'American History', 'Audiobook']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Mystery', 'Fiction', 'Ghosts', 'Vampires']", "['Historical Fiction', 'Fiction', 'Historical', 'Southern', 'Adult Fiction', 'Book Club', 'Adult']", "['Chick Lit', 'Fiction', 'Audiobook', 'Romance', 'Adult', 'Adult Fiction', 'Contemporary']", "['Feminism', 'Nonfiction', 'Writing', 'Essays', 'Literature', 'Literary Criticism', 'Womens']", "['Nonfiction', 'History', 'British Literature', 'Archaeology', 'Occult', 'Nature', 'Folklore']", "['Biography', 'Nonfiction', 'China', 'Christian', 'History', 'Asia', 'Historical']", "['Psychology', 'History']", "['Memoir', 'Nonfiction', 'Biography', 'Humor', 'Biography Memoir', 'Autobiography', 'Audiobook']", "['Young Adult', 'Fiction', 'Science Fiction', 'Dystopia', 'Australia', 'Childrens', 'Post Apocalyptic']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Fairy Tales', 'Fables']", "['Fiction', 'Fantasy', 'Philosophy', 'Science Fiction', 'Contemporary', 'Novels', 'Science Fiction Fantasy']", "['Young Adult', 'Mystery', 'Thriller', 'Fiction', 'Contemporary', 'Crime', 'Mystery Thriller']", "['Young Adult', 'Mystery', 'Thriller', 'Romance', 'Science Fiction', 'Fiction', 'Mystery Thriller']", "['Gothic', 'Classics', 'Horror', 'Fiction', '19th Century', 'Mystery', 'Historical']", "['Fantasy', 'Romance', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Erotica']", "['Fiction', 'Contemporary', 'Psychology', 'Book Club', 'Adult Fiction', 'Adult', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Fiction', 'Magic', 'Adventure']", "['Relationships', 'Nonfiction', 'Psychology', 'Self Help', 'Marriage', 'Love', 'Counselling']", "['Fantasy', 'Young Adult', 'Fiction', 'Urban Fantasy', 'Magic', 'Mystery', 'Middle Grade']", "['Philosophy', 'Nonfiction', 'Religion', 'Psychology']", "['Young Adult', 'Chick Lit', 'Realistic Fiction', 'Fiction', 'Contemporary', 'Middle Grade', 'Childrens']", "['Fiction', 'Humor', 'Contemporary', 'Novels', 'Adult', 'Audiobook', 'Literary Fiction']", "['Mystery', 'Fiction', 'Middle Grade', 'Young Adult', 'Adventure', 'Fantasy', 'Childrens']", "['Psychology', 'Sexuality', 'Psychoanalysis', 'Nonfiction', 'Philosophy', 'History', 'Theory']", "['Fiction', 'Historical Fiction', 'Thriller', 'Mystery', 'Crime', 'Russia', 'Historical']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Contemporary', 'Middle Grade', 'Childrens', 'Death']", "['Fiction', 'Science Fiction', 'Dystopia', 'Humor', 'Comedy', 'Fantasy', 'Post Apocalyptic']", "['Self Help', 'Nonfiction', 'Productivity', 'Business', 'Personal Development', 'Psychology', 'Audiobook']", "['Poetry', 'Religion', 'Literature', 'Islam', 'Nonfiction', 'Philosophy', 'Spirituality']", "['Vampires', 'Paranormal', 'Urban Fantasy', 'Paranormal Romance', 'Fantasy', 'Adult', 'Supernatural']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Post Apocalyptic', 'Fiction', 'Apocalyptic', 'Survival']", "['Fantasy', 'Fiction', 'LGBT', 'Dark Fantasy', 'Epic Fantasy', 'Queer', 'High Fantasy']", "['Travel', 'Nonfiction', 'History', 'Adventure', 'World History', 'Anthropology', 'Memoir']", "['Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Scandinavian Literature', 'Sweden', 'German Literature']", "['Manga', 'Manhwa', 'Comics', 'Fantasy', 'Graphic Novels']", "['Young Adult', 'Fiction', 'Science Fiction', 'Teen', 'Adventure', 'Mystery', 'Fantasy']", "['True Crime', 'Nonfiction', 'Crime', 'Biography']", "['Nonfiction', 'Music', 'Biography', 'Memoir', 'Mental Illness', 'Psychology', 'Mental Health']", "['Fiction', 'Australia', 'Contemporary', 'Coming Of Age', 'Literary Fiction', 'Book Club', 'Young Adult']", "['Mystery', 'Thriller', 'Fiction', 'Suspense', 'Crime', 'Mystery Thriller', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Science Fiction', 'Middle Grade', 'Adventure', 'Magic']", "['Music']", "['Travel', 'Nonfiction', 'Africa', 'History', 'Adventure', 'Memoir', 'Biography']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'High Fantasy', 'Romance', 'Epic Fantasy', 'Adult']", "['Nonfiction', 'Biography', 'History', 'Germany', 'Queer', 'Gay', 'Biography Memoir']", "['Nonfiction', 'Memoir', 'Music', 'Biography', 'Autobiography', 'Pakistan', 'British Literature']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Horror', 'Russia', 'Vampires', 'Paranormal']", "['Comics', 'Humor', 'Fiction', 'Comic Strips', 'Cats', 'Graphic Novels', 'Comic Book']", "['Nonfiction', 'Memoir', 'Biography', 'Japan', 'Sports', 'Audiobook', 'Japanese Literature']", "['Fiction', 'Westerns', 'Literature', 'Novels', 'The United States Of America', 'American', 'American Fiction']", "['Mystery', 'Thriller', 'Fiction', 'Horror', 'Suspense', 'Mystery Thriller', 'Crime']", "['Mystery', 'Fiction', 'Thriller', 'Suspense', 'Audiobook', 'Mystery Thriller', 'Crime']", "['Fiction', 'German Literature', 'Classics', 'Novels', 'Modern Classics', 'Germany', 'Literature']", "['Christian Fiction', 'Fiction', 'Contemporary Romance', 'Humor', 'Chick Lit', 'Contemporary']", "['Mystery', 'Middle Grade', 'Young Adult', 'Fiction', 'Childrens', 'Art', 'Adventure']", "['Fiction', 'Magical Realism', 'Romance', 'Fantasy', 'Chick Lit', 'Contemporary', 'Magic']", "['Fiction', 'LGBT', 'Lesbian', 'Israel', 'Historical Fiction', 'Jewish', 'Gay']", "['Nonfiction', 'Memoir', 'Humor', 'Chick Lit', 'Biography', 'Biography Memoir', 'Comedy']", "['Fiction', 'Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Fiction', 'Middle Grade', 'Mythology']", "['Nonfiction', 'Science', 'Nature', 'Ecology', 'Natural History', 'Environment', 'Biology']", "['Young Adult', 'Music', 'Fiction', 'Contemporary', 'Punk', 'Teen', 'Realistic Fiction']", "['Fantasy', 'Dragons', 'Young Adult', 'Middle Grade', 'Childrens', 'Adventure', 'Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Fairy Tales', 'Middle Grade', 'Adventure']", "['Israel', 'Fiction', 'Jewish', 'Contemporary', 'Historical Fiction', 'Novels', 'Romance']", "['History', 'Music', 'Nonfiction', 'Cultural', 'Biography', 'Art']", "['Africa', 'Nonfiction', 'Memoir', 'Biography', 'Kenya', 'Travel', 'Autobiography']", "['Nonfiction', 'History', 'Biography', 'Politics', 'Terrorism', 'Islam', 'War']", "['Young Adult', 'Romance', 'Chick Lit', 'Contemporary', 'Fiction', 'Science Fiction', 'Teen']", "['Fantasy', 'Young Adult', 'Fiction', 'Horror', 'Middle Grade', 'Paranormal', 'Childrens']", "['Fantasy', 'Fiction', 'Science Fiction', 'Science Fiction Fantasy', 'Epic Fantasy', 'Classics', 'Speculative Fiction']", "['Short Stories', 'Fiction', 'Historical Fiction', 'Contemporary', 'Literature', 'Short Story Collection', 'Literary Fiction']", "['Nonfiction', 'Health', 'Cookbooks', 'Cooking', 'Food', 'Diets', 'Fitness']", "['Sports', 'History', 'Nonfiction', 'Italy', 'Politics', 'World History', 'American History']", "['Fantasy', 'Young Adult', 'Fiction', 'Short Stories', 'Audiobook', 'Steampunk', 'Adventure']", "['Nonfiction', 'Psychology', 'History', 'Feminism', 'Mental Health', 'Science', 'Mental Illness']", "['Fiction', 'Magical Realism', 'Fantasy', 'Romance', 'France', 'Contemporary', 'Magic']", "['Fiction', 'Historical Fiction', 'Mystery', 'Literary Fiction', 'Novels', 'Historical', 'Literature']", "['Fiction', 'India', 'Romance', 'Chick Lit', 'Asia', 'Indian Literature', 'Contemporary']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Fiction', 'Aliens', 'Adventure', 'Teen']", "['Spirituality', 'Nonfiction', 'Religion', 'Theology', 'Faith', 'Christianity', 'Christian']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Harlequin', 'Fiction', 'Chick Lit', 'Adult']", "['Historical Fiction', 'Fiction', 'Art', 'Historical', 'Greece', 'British Literature', '18th Century']", "['Comics', 'Graphic Novels', 'Batman', 'Dc Comics', 'Comic Book', 'Superheroes', 'Graphic Novels Comics']", "['Fiction', 'Chick Lit', 'Contemporary', 'Adult Fiction', 'Coming Of Age', 'Audiobook', 'Adult']", "['Young Adult', 'Poetry', 'Fiction', 'Contemporary', 'Mental Health', 'Realistic Fiction', 'Abuse']", "['Historical Fiction', 'Fiction', 'Historical', 'Tudor Period', 'Romance', 'British Literature', 'Adult']", "['Cycling', 'Sports', 'Nonfiction', 'Biography', 'Biography Memoir', 'Memoir', 'Autobiography']", "['Picture Books', 'Childrens', 'Humor', 'Fiction', 'Animals', 'Storytime', 'Juvenile']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Suspense', 'Mystery Thriller', 'Novels']", "['Steampunk', 'Fantasy', 'Science Fiction', 'Short Stories', 'Anthologies', 'Fiction', 'Alternate History']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Gothic', 'Victorian', 'Historical Mystery']", "['Young Adult', 'Humor', 'Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Teen']", "['Biography', 'Nonfiction', 'Business', 'Autobiography', 'Management', 'Politics', 'Unfinished']", "['Fiction', 'Mystery', 'Classics', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense']", "['Fantasy', 'Historical Fiction', 'Young Adult', 'Romance', 'Historical', 'Magic', 'Witches']", "['Comics', 'Graphic Novels', 'Dc Comics', 'Superman', 'Comic Book', 'Fiction', 'Superheroes']", "['Romance', 'Erotica', 'Erotic Romance', 'Contemporary Romance', 'Romantic Suspense', 'Contemporary', 'Suspense']", "['Realistic Fiction', 'Fiction', 'Childrens', 'Young Adult', 'Juvenile', 'Divorce', 'Middle Grade']", "['Nonfiction', 'Psychology', 'Science', 'Self Help', 'Education', 'Business', 'Brain']", "['Fiction', 'Historical Fiction', 'Literature', 'Literary Fiction', 'Novels', 'Historical', 'American']", "['Poetry', 'Anthologies', 'Asia', 'Turkish', 'Japanese Literature', 'Indonesian Literature', 'France']", "['Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Mystery', 'Epic Fantasy', 'Adventure', 'High Fantasy']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Magic', 'Paranormal Romance', 'Paranormal', 'Urban Fantasy']", "['History', 'Nonfiction', 'War', 'World War II', 'Poland', 'Aviation', 'Military Fiction']", "['Horror', 'Fiction']", "['Romance', 'Historical Romance', 'Historical', 'Westerns']", "['Romance', 'Historical Romance']", "['Romance', 'Historical Romance', 'Historical Fiction', 'Adult', 'Historical']", "['Romance', 'Historical Romance', 'Historical']", "['Fiction', 'Science Fiction', 'Literary Fiction', 'Humor', 'Science Fiction Fantasy']", "['Fiction', 'Historical Fiction', 'Ireland', 'Audiobook', 'Irish Literature', 'Humor', 'Historical']", "['Fantasy', 'Young Adult', 'Childrens', 'Middle Grade', 'Adventure', 'Magic', 'Fiction']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Fiction', 'Supernatural', 'Horror']", "['Nonfiction', 'Science', 'Psychology', 'Mathematics', 'Economics', 'Business', 'Philosophy']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Teen', 'Relationships', 'Death']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Shapeshifters', 'Fantasy', 'Humor', 'Urban Fantasy']", "['Science Fiction', 'Fiction', 'Cyberpunk']", "['Science Fiction', 'Fiction', 'Space Opera', 'Robots', 'Cyberpunk', 'Speculative Fiction', 'Space']", "['Fiction', 'Dutch Literature', 'Belgium', 'Novels', 'Literature', 'Roman', 'Comedy']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Demons', 'Romance', 'Paranormal Romance', 'Fiction']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Urban Fantasy', 'Paranormal Romance']", "['Historical Fiction', 'Fiction', 'Native Americans']", "['Christian', 'Religion', 'Nonfiction', 'Reference', 'Christianity', 'Theology', 'Classics']", "['Fiction', 'Canada', 'France', 'Canadian Literature', 'Contemporary', 'Novels']", "['Mystery', 'Romantic Suspense', 'Romance', 'Suspense', 'Fiction', 'Ireland', 'Thriller']", "['Mystery', 'Historical Fiction', 'Historical Mystery', 'Historical', 'Fiction', 'Cozy Mystery', 'New York']", "['Christian Fiction', 'Historical Fiction', 'Romance', 'Christian', 'Historical', 'Christian Romance', 'Fiction']", "['Horror', 'Vampires', 'Classics', 'Gothic', 'Fiction', 'Fantasy', '19th Century']", "['Horror', 'Fantasy', 'Fiction', 'Magical Realism', 'Urban Fantasy', 'Coming Of Age', 'Young Adult']", "['Horror', 'Mystery', 'Middle Grade', 'Fiction', 'Ghosts', 'Paranormal', 'Fantasy']", "['Fiction', 'Classics', 'Novels', 'American', 'Humor', 'Literature', '20th Century']", "['Fiction', 'Short Stories', 'Africa', 'Historical Fiction', 'War', 'African Literature', 'Rwanda']", "['Comics', 'Fantasy', 'Horror', 'Crime', 'Graphic Novels Comics', 'Superheroes', 'Fiction']", "['Literary Criticism', 'Criticism']", "['Picture Books']", "['Nonfiction', 'Science', 'Business', 'Economics', 'Psychology', 'Sociology', 'Philosophy']", "['Fiction', 'Chick Lit']", "['Fiction', 'Historical Fiction', 'Poetry', 'Catholic', 'Novels', 'Religion', 'Literature']", "['Fantasy', 'Dragons', 'Steampunk', 'LGBT', 'Fiction', 'M M Romance', 'Queer']", "['Mystery', 'Romantic Suspense', 'Romance', 'Suspense', 'Fiction', 'Thriller', 'Contemporary']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'Scotland']", "['Historical Fiction', 'Fiction', 'Russia', 'Historical', 'Romance', 'Historical Romance', 'Adult']", "['Manga', 'Romance', 'Graphic Novels', 'Shojo', 'Young Adult', 'Comics', 'Comics Manga']", "['Nonfiction', 'Spirituality', 'Paranormal', 'Audiobook', 'Religion', 'History', 'Dystopia']", "['Politics', 'Nonfiction', 'Philosophy', 'Sociology', 'History', 'Religion', 'Islam']", "['Textbooks', 'Engineering', 'Reference', 'Science', 'Physics', 'College', 'Nonfiction']", "['Novels', 'Fiction']", "['Urban Fantasy', 'Paranormal', 'Shapeshifters', 'Fantasy', 'Romance', 'Paranormal Romance', 'Adult']", "['Africa', 'Memoir', 'Nonfiction', 'Biography', 'Botswana', 'Travel', 'Biography Memoir']", "['Short Stories', 'Fiction', 'Womens']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dark Fantasy', 'Audiobook', 'High Fantasy', 'Adventure']", "['Picture Books', 'Childrens', 'Holiday', 'Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'Self Help', 'Inspirational', 'Philosophy', 'Autobiography']", "['Fantasy', 'Fiction', 'Science Fiction', 'Young Adult', 'Adventure', 'High Fantasy', 'Speculative Fiction']", "['Theology', 'Christian', 'Christianity', 'Religion', 'Nonfiction', 'Faith', 'Spirituality']", "['Animals', 'Fantasy', 'Fiction', 'Childrens', 'Middle Grade', 'Adventure', 'Mystery']", "['Nonfiction', 'Medical', 'Medicine', 'Science', 'Health Care', 'Health', 'Memoir']", "['Novels']", "['Science Fiction', 'Space Opera', 'Steampunk', 'Fiction', 'Speculative Fiction', 'Fantasy', 'Audiobook']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Urban Fantasy', 'Fairies', 'Fae']", "['Graphic Novels', 'Young Adult', 'Comics', 'Fiction', 'Teen', 'Contemporary', 'Canada']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Chick Lit', 'Fashion', 'Murder Mystery', 'Humor']", "['Islam', 'Biography', 'History']", "['Science', 'Nonfiction', 'Biology', 'Writing', 'Popular Science', 'Essays', 'Physics']", "['Politics', 'Nonfiction', 'Political Science']", "['Nonfiction', 'Biography', 'Sports', 'Mixed Martial Arts', 'Autobiography', 'Martial Arts', 'Memoir']", "['Fantasy', 'Steampunk', 'Science Fiction', 'Young Adult', 'Middle Grade', 'Adventure', 'Childrens']", "['Science Fiction', 'Anthologies', 'Short Stories']", "['Fantasy', 'Young Adult', 'Horror', 'Mystery', 'Fiction', 'Paranormal', 'Time Travel']", "['France', 'Fiction', 'Classics', '20th Century', 'Roman']", "['Horror', 'Science Fiction', 'Fiction', 'Thriller', 'Zombies', 'Audiobook', 'Aliens']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Ireland', 'Irish Literature', 'Audiobook']", "['Fiction', 'Chick Lit', 'Southern', 'Contemporary', 'Adult', 'Adult Fiction', 'Coming Of Age']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Adventure', 'Espionage', 'Action']", "['Nonfiction', 'Religion', 'Humor', 'Christianity', 'Sociology', 'Christian', 'Memoir']", "['Chick Lit', 'Fiction', 'Romance', 'Literature', 'Contemporary', 'Humor']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Romance', 'Shonen', 'Adventure']", "['Fiction', 'Historical Fiction', 'Romance', 'Germany', 'Politics', 'Historical', 'The United States Of America']", "['Picture Books', 'Animals', 'Storytime', 'Childrens', 'Fiction', 'Juvenile']", "['Young Adult', 'Mythology', 'Fantasy', 'Romance', 'Paranormal', 'Greek Mythology', 'Fiction']", "['Nonfiction', 'Philosophy', 'Linguistics', 'Language', 'Writing', 'Communication', 'Psychology']", "['Paranormal', 'Mystery', 'Romance', 'Romantic Suspense', 'Paranormal Romance', 'Suspense', 'Fiction']", "['Horror', 'Short Stories', 'Fiction', 'Collections', 'Anthologies']", "['Urban Fantasy', 'Fantasy', 'Vampires', 'Paranormal', 'Mystery', 'Horror', 'Fiction']", "['Romance', 'Contemporary Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Anthologies', 'M F Romance']", "['Fiction', 'Middle Grade', 'Young Adult', 'Adventure', 'Childrens', 'Realistic Fiction', 'Family']", "['Science Fiction', 'Fiction', 'Space Opera', 'Steampunk', 'Fantasy', 'Zombies', 'Adventure']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Werewolves', 'Shapeshifters']", "['Mathematics', 'Science', 'Textbooks', 'Nonfiction']", "['Science Fiction', 'Doctor Who', 'Fiction', 'Fantasy', 'Media Tie In', 'Tv', 'Science Fiction Fantasy']", "['Nonfiction', 'Politics', 'Environment', 'Science', 'Economics', 'Business', 'History']", "['Mystery', 'Thriller', 'Romance', 'Mystery Thriller', 'Fiction', 'Contemporary']", "['Writing', 'Nonfiction', 'Humor', 'Reference', 'Books About Books', 'How To', 'Self Help']", "['Young Adult']", "['Politics', 'Nonfiction', 'Crime', 'True Crime', 'Memoir', 'Biography', 'History']", "['Fiction', 'Gothic', 'Mystery', 'Thriller', 'Suspense', 'Mystery Thriller', 'Horror']", "['Fiction', 'Classics', 'Brazil', 'Literature', 'Romance', 'Portuguese Literature', 'Novels']", "['Fiction', 'Novels', 'Classics', 'Literature', 'Egypt', 'Historical Fiction', 'Africa']", "['Graphic Novels', 'Comics', 'Horror', 'Graphic Novels Comics', 'Fiction', 'Comic Book', 'Fantasy']", "['History', 'Nonfiction', 'Politics', 'Science']", "['Fiction', 'Classics', 'Historical Fiction', 'German Literature', 'Literary Fiction', 'Novels', '20th Century']", "['Picture Books', 'Biography', 'Africa', 'Nonfiction', 'Environment', 'Childrens', 'History']", "['Fantasy', 'Pirates', 'Historical', 'Adventure', 'Historical Fiction', 'Science Fiction Fantasy', 'Fiction']", "['Religion', 'Reference', 'Classics', 'Spirituality', 'Theology', 'Christianity', 'Nonfiction']", "['Horror', 'Science Fiction', 'Fiction', 'Survival', 'Dystopia', 'Adult Fiction', 'Apocalyptic']", "['Classics', 'Fiction', 'French Literature', 'Romance', 'Roman', 'France']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Fiction', 'Vampires', 'Witches', 'Mystery']", "['Religion', 'Lds', 'Music', 'Nonfiction', 'Church', 'Inspirational', 'Reference']", "['Fiction', 'Historical Fiction', 'Contemporary', 'British Literature', 'Historical', 'Audiobook', 'Novels']", "['Horror', 'Gothic', 'Fiction', 'Pulp', 'Literature']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Cozy Mystery']", "['History', 'Politics', 'Nonfiction', 'Biography', 'American History', 'Presidents', 'American']", "['Nonfiction', 'Philosophy', 'Sociology', 'Politics', 'France', 'Psychology', 'Essays']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Mythology', 'Adventure', 'Urban Fantasy']", "['Chick Lit', 'Fiction', 'Jewish', 'Contemporary', 'Contemporary Romance', 'Romance']", "['Christian', 'Biography']", "['Science Fiction', 'Fiction', 'Short Stories', 'Fantasy', 'Africa', 'Utopia', 'Science Fiction Fantasy']", "['Historical Fiction', 'Classics', 'Fiction', 'Gothic', 'Horror', 'Fantasy', 'Witches']", "['Fantasy', 'Middle Grade', 'Childrens', 'Fairies', 'Fiction', 'Young Adult', 'Magic']", "['Young Adult', 'Fiction', 'Contemporary', 'Magical Realism', 'Canada', 'Teen', 'Dark']", "['Romance', 'Time Travel', 'Historical Romance', 'Historical', 'Fantasy', 'Paranormal', 'Historical Fiction']", "['Holocaust', 'Nonfiction']", "['Nonfiction', 'Comics', 'Literature', 'Literary Criticism', 'Criticism', 'Art', 'Books About Books']", "['History', 'Nonfiction', 'Queer', 'LGBT', 'Transgender', 'Gender', 'Feminism']", "['Essays', 'Nonfiction', 'Politics', 'Literary Criticism', 'History', 'Criticism', 'Queer']", "['Romance', 'Sports', 'Sports Romance', 'Contemporary Romance', 'Contemporary', 'Baseball', 'Fiction']", "['History', 'Civil War', 'American History', 'Nonfiction', 'American Civil War', 'Politics', 'Terrorism']", "['History', 'Nonfiction', 'War', 'Biography', 'World War II', 'Dutch Literature', 'Audiobook']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'The United States Of America']", "['True Crime', 'Nonfiction', 'Biography', 'Mystery', 'Audiobook', 'Queer']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Contemporary']", "['Fiction', 'Thriller', 'Romance', 'Portuguese Literature', 'Mystery', 'Portugal', 'Roman']", "['Science', 'Nonfiction', 'Politics', 'History', 'Religion', 'Evolution', 'Education']", "['Romance', 'Sports', 'Sports Romance', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Football']", "['Biography', 'History', 'Nonfiction', 'Presidents', 'American History', 'Politics', 'World War II']", "['Plays', 'Drama', 'Theatre', 'Fiction', 'Family', 'American', 'Contemporary']", "['Comics', 'Graphic Novels', 'Marvel', 'Young Adult', 'Superheroes', 'Graphic Novels Comics', 'Fantasy']", "['Historical', 'LGBT', 'M M Romance', 'Historical Fiction', 'Romance', 'Military Fiction', 'Fiction']", "['Humor', 'Nonfiction']", "['Crime', 'Fiction', 'Thriller', 'Mystery', 'Historical Fiction', 'Mystery Thriller', 'Historical']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Shapeshifters', 'Fiction', 'Adult']", "['Science Fiction', 'Short Stories', 'Fiction', 'Speculative Fiction', 'Anthologies', 'Fantasy', 'Collections']", "['Science', 'History', 'Nonfiction', 'History Of Science', 'Nature', 'Conspiracy Theories', 'Philosophy']", "['Science Fiction', 'Audiobook', 'Doctor Who', 'Fiction', 'Media Tie In', 'Science Fiction Fantasy', 'Tv']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Crafts', 'Romance']", "['Science Fiction', 'Doctor Who', 'Fiction', 'Fantasy', 'Media Tie In', 'Science Fiction Fantasy', 'Tv']", "['Fiction', 'Historical Fiction', 'Religion', 'Christianity', 'Audiobook']", "['Picture Books', 'Childrens', 'Humor', 'Kids', 'Storytime', 'Fiction']", "['Fiction', 'Canada', 'Short Stories', 'Literary Fiction', 'Historical Fiction', 'Portuguese Literature', 'Family']", "['Christian', 'Prayer', 'Nonfiction', 'Spirituality', 'Christian Non Fiction', 'Faith', 'Christian Living']", "['Short Stories', 'Horror', 'Fiction', 'Classics', 'Gothic', 'Mystery', 'Suspense']", "['History', 'Nonfiction', 'Military Fiction', 'Politics', 'Science', 'American History', 'American']", "['Zombies', 'Young Adult', 'Horror', 'Paranormal', 'Fantasy', 'Teen', 'Fiction']", "['Fiction', 'Young Adult', 'Contemporary', 'Coming Of Age', 'Romance', 'Novels', 'British Literature']", "['Sports', 'Nonfiction', 'Football', 'Memoir', 'Biography', 'American', 'Humor']", "['Picture Books', 'Animals']", "['Fantasy', 'Fiction', 'Childrens', 'Horror', 'Young Adult', 'Magic', 'Adventure']", "['Historical Fiction', 'Fiction', 'War', 'Historical', 'Canada', 'Music', 'Book Club']", "['Biography', 'Nonfiction', 'Memoir', 'Christian']", "['Chick Lit', 'Fiction', 'Family', 'Contemporary']", "['Fiction', 'Classics', 'American', 'Short Stories', 'Novels', 'Czech Literature', '20th Century']", "['Fantasy', 'Young Adult', 'Fiction', 'Dragons', 'Adventure', 'Magic', 'Childrens']", "['Memoir', 'Nonfiction', 'Psychology', 'Death', 'Biography', 'Mental Health', 'Mental Illness']", "['Fiction', 'Mystery', 'Chick Lit', 'Contemporary', 'Thriller', 'Adult Fiction', 'Suspense']", "['Romantic Suspense', 'Suspense', 'Romance', 'Mystery', 'Thriller', 'Fiction', 'Adult']", "['Comics', 'Graphic Novels', 'Fiction', 'Comix', 'Graphic Novels Comics', 'Queer', 'Graphica']", "['Young Adult', 'Dystopia', 'Fantasy', 'Science Fiction', 'Fiction', 'Middle Grade', 'Post Apocalyptic']", "['Chick Lit', 'Fiction', 'Romance', 'Womens Fiction', 'Contemporary', 'Novels', 'Adult']", "['Classics', 'Fiction', 'Literature', 'Short Stories', 'Novels', 'Philosophy', 'Fantasy']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Demons', 'Mythology', 'Adult']", "['Novels', 'Romance', 'Fiction', 'Literature', 'Drama', 'Politics', 'Algeria']", "['Fiction', 'Novels', 'Romance', 'Literature', 'Algeria', 'Romantic', 'Drama']", "['Novels', 'Fiction', 'Romance', 'Algeria', 'Literature', 'Historical Fiction', 'Africa']", "['Nonfiction', 'Science', 'Mathematics', 'Physics']", "['Fiction', 'Mystery', 'Scotland', 'Philosophy', 'Audiobook', 'Cozy Mystery', 'Adult Fiction']", "['Fiction', 'Chick Lit', 'Romance', 'Womens Fiction', 'Contemporary', 'Humor', 'Adult Fiction']", "['Science Fiction', 'Fiction', 'Mystery', 'Fantasy', 'Space', 'Audiobook', 'Science Fiction Fantasy']", "['Fantasy', 'Pirates', 'Young Adult', 'Fiction', 'Adult', 'Magic', 'Historical Fiction']", "['Young Adult', 'Fantasy', 'Paranormal', 'Ghosts', 'Romance', 'Fiction', 'Supernatural']", "['Music', 'Nonfiction', 'Essays']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Thriller', 'Fantasy', 'Romance']", "['Romance', 'Fiction', 'Historical Fiction', 'Contemporary Romance', 'Adult Fiction', 'Adult', 'Family']", "['Biography', 'Christian', 'Nonfiction', 'Memoir', 'Leadership', 'History', 'Church History']", "['History', 'Classics']", "['Fantasy', 'Novels', 'Fiction', 'Young Adult', 'Childrens', 'France', 'Adventure']", "['M M Romance', 'Sports', 'Romance', 'Contemporary', 'LGBT', 'Gay', 'Contemporary Romance']", "['Young Adult', 'Dystopia', 'Fantasy', 'Science Fiction', 'Fiction', 'Paranormal', 'Romance']", "['Nonfiction', 'Memoir', 'Classics', 'Danish', 'Denmark', 'Biography', 'Scandinavian Literature']", "['Humor', 'Nonfiction', 'Memoir', 'Southern', 'Short Stories', 'Essays', 'Biography']", "['Short Stories', 'Fiction', 'Poetry', 'Historical Fiction', 'Sexuality', 'Literary Fiction', 'Literature']", "['Travel', 'Humor']", "['Comics', 'Nonfiction', 'American History', 'Graphic Novels', 'Judaica']", "['Young Adult', 'Fiction', 'Contemporary', 'Teen', 'Childrens', 'Banned Books', 'Chick Lit']", "['Historical Fiction', 'Young Adult', 'Childrens', 'Fiction', 'Historical', 'Middle Grade', 'Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Fan Fiction', 'Adventure', 'Childrens']", "['Historical Fiction', 'Fiction', 'Spain', 'Historical', 'Romance', 'War', 'Spanish Civil War']", "['Nonfiction', 'Essays', 'Memoir', 'Audiobook', 'Self Help', 'Inspirational', 'Writing']", "['Programming', 'Computer Science', 'Computers', 'Software', 'Technology', 'Nonfiction', 'Self Help']", "['Romantic Suspense', 'Mystery', 'Suspense', 'Fiction', 'Crime']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Crime', 'Audiobook', 'Supernatural']", "['Fiction', 'Thriller']", "['Nonfiction', 'Memoir', 'Adventure', 'Travel', 'Survival', 'Audiobook', 'Biography Memoir']", "['Biography', 'History']", "['Graphic Novels', 'Comics', 'Fantasy', 'Vampires', 'Fiction', 'Buffy The Vampire Slayer', 'Graphic Novels Comics']", "['Comics', 'Graphic Novels', 'Fantasy', 'Graphic Novels Comics', 'Horror', 'Action', 'Superheroes']", "['Comics', 'Graphic Novels', 'Fantasy', 'Horror', 'Action', 'Graphic Novels Comics', 'Superheroes']", "['Nonfiction', 'Politics', 'Sociology', 'History', 'Psychology', 'Society', 'Economics']", "['Economics', 'Politics', 'Nonfiction', 'Political Science']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Paranormal', 'Vampires', 'Mystery', 'Short Stories']", "['Comics', 'Graphic Novels', 'Memoir', 'Comix', 'Graphic Novels Comics', 'Bande Dessinée', 'Nonfiction']", "['Thriller', 'Fiction', 'Espionage', 'Mystery', 'Suspense', 'Mystery Thriller', 'Crime']", "['Romantic Suspense', 'Mystery', 'Suspense', 'Romance', 'Fiction', 'Mystery Thriller', 'Contemporary Romance']", "['Art', 'History', 'Nonfiction', 'Art History', 'American History', 'European History', 'Museums']", "['Fantasy', 'Fiction', 'Romance', 'Historical Fiction', 'Magic', 'Historical', 'Regency']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Novels', 'Short Stories', 'Collections']", "['History', 'Biography', 'Picture Books', 'Childrens', 'Nonfiction', 'Historical', 'School']", "['Novels', 'Politics', 'Biography Memoir', 'Morocco']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Books About Books', 'Audiobook', 'Mystery Thriller', 'Adult']", "['Nonfiction', 'History', 'Biography', 'Race', 'Audiobook', 'Africa', 'African American']", "['Realistic Fiction', 'Humor', 'Middle Grade', 'Childrens', 'Fiction', 'Chapter Books', 'Juvenile']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Romance', 'Historical', 'Gothic', 'Contemporary']", "['Historical Fiction', 'Christian Fiction', 'Fiction', 'Christian', 'Historical', 'Romance', 'Adult Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Christian Fiction', 'Romance', 'Christian', 'Travel']", "['Nonfiction', 'Books About Books', 'Reference', 'Writing', 'Literary Criticism', 'Literature', 'Literary Fiction']", "['History', 'Archaeology', 'Nonfiction']", "['Portuguese Literature', 'Classics', 'Fiction', 'Romance', 'Portugal', 'Philosophy', 'Literature']", "['Mystery', 'Horror', 'Death']", "['Romance', 'Paranormal', 'Romantic Suspense', 'Paranormal Romance', 'Suspense', 'Fantasy', 'Fiction']", "['History', 'Nonfiction', 'Politics', 'American History', 'War', 'Russia', 'Military Fiction']", "['Thriller', 'History']", "['Crafts', 'Nonfiction']", "['Spirituality', 'Nonfiction', 'New Age', 'Paranormal', 'Philosophy']", "['Fiction', 'New York', 'Novels', 'Contemporary', 'Literary Fiction', 'Literature', 'Book Club']", "['Fantasy', 'Roman', 'France']", "['Graphic Novels', 'Fantasy', 'Young Adult', 'Fairy Tales', 'Comics', 'Adventure', 'Middle Grade']", "['Georgian', 'Fiction', 'Childrens', 'Humor', 'Classics', 'Russia', 'Literature']", "['Paranormal Romance', 'Paranormal', 'Urban Fantasy', 'Romance', 'Fantasy', 'Demons', 'Erotica']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Magical Realism', 'Novels', 'Scandinavian Literature', 'Literary Fiction']", "['Young Adult', 'Fiction', 'Action', 'Childrens', 'Adventure', 'Espionage', 'Thriller']", "['Fantasy', 'Fiction']", "['History', 'Nonfiction', 'Medieval', 'European History', 'Archaeology', 'Medieval History', 'Ancient History']", "['Classics', 'Fantasy', 'Fiction', 'Childrens', 'Adventure', 'Fairy Tales', 'Young Adult']", "['Fiction', 'Pakistan', 'Literature', 'Islam', 'Novels', 'Coming Of Age', 'Historical Fiction']", "['Historical Fiction', 'France', 'Fiction', 'Classics', 'Historical', 'French Literature', 'Roman']", "['Picture Books', 'Childrens', 'Fiction', 'Animals', 'Storytime', 'Humor', 'Music']", "['Nonfiction', 'Memoir', 'Biography', 'Religion', 'Cults', 'True Crime', 'Autobiography']", "['Fiction', 'Horror', 'Classics', 'Thriller', 'Noir', 'Mystery', 'Crime']", "['Poetry', 'Queer', 'Disability Studies']", "['Fantasy', 'Young Adult', 'Fiction', 'Fairy Tales', 'Retellings', 'Dark', 'Magic']", "['Picture Books', 'Childrens', 'Fantasy', 'Storytime']", "['Fantasy', 'Russia', 'Fiction', 'Magic', 'Urban Fantasy', 'Humor', 'Audiobook']", "['History', 'World War II', 'Nonfiction', 'Germany', 'Military Fiction']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller', 'Chick Lit', 'Suspense', 'Adult']", "['Islam', 'Religion', 'Self Help', 'Nonfiction', 'Psychology', 'Unfinished', 'Spirituality']", "['Fantasy', 'Young Adult', 'Fiction', 'Pirates', 'Retellings', 'Adventure', 'Historical Fantasy']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Demons', 'Fantasy', 'Urban Fantasy', 'Vampires']", "['Horror', 'Mystery']", "['Picture Books', 'Childrens', 'Fiction', 'Animals']", "['Fiction', 'Pakistan', 'Travel', 'Novels', 'Travelogue']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Adult', 'Contemporary']", "['Fiction', 'Mystery', 'Gothic', 'Audiobook', 'Literary Fiction', 'Historical Fiction', 'Family']", "['Short Stories', 'Portugal', 'Romance', 'Portuguese Literature']", "['Nonfiction', 'Finance', 'Self Help', 'Business', 'Money', 'Personal Finance', 'Economics']", "['Literary Criticism', 'Writing', 'Nonfiction']", "['Polish Literature', 'Classics', 'School', 'Fiction', 'Read For School', 'Poland', 'Favorites']", "['Fiction', 'Contemporary', 'Adult', 'Family', 'Book Club', 'Modern', 'Drama']", "['Paranormal Romance', 'Romance', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Shapeshifters', 'Magic']", "['Picture Books', 'Africa', 'Childrens', 'Nonfiction', 'Cultural', 'Family', 'Ghana']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Espionage', 'Novels']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Fiction', 'Mystery', 'Christian Fiction', 'Legal Thriller', 'Thriller', 'Christian', 'Suspense']", "['Nonfiction', 'Memoir', 'Philosophy', 'Biography', 'Death', 'Essays', 'Religion']", "['Fiction', 'Chick Lit', 'Inspirational', 'Christian Fiction', 'Southern', 'Christian', 'Humor']", "['Nonfiction', 'Animals', 'Science', 'Short Stories', 'Nature', 'Memoir', 'Biography']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'World War II', 'Book Club', 'War']", "['Fiction', 'Animals', 'Dogs', 'Adult Fiction', 'Coming Of Age', 'Contemporary', 'Literary Fiction']", "['Politics', 'Nonfiction', 'Economics', 'Philosophy', 'History', 'Political Science', 'Government']", "['Nonfiction', 'Cookbooks', 'Tea']", "['China', 'Nonfiction', 'Memoir', 'Asian Literature', 'Biography', 'Asia', 'Biography Memoir']", "['Travel', 'Nonfiction', 'Adventure', 'Memoir', 'History', 'Travelogue', 'Crime']", "['Historical Fiction', 'Childrens', 'Fiction', 'Historical', 'Middle Grade', 'Civil War', 'Juvenile']", "['Mystery', 'Thriller', 'Suspense', 'Romantic Suspense', 'Fiction', 'Mystery Thriller', 'Romance']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Urban Fantasy', 'Magic', 'Fiction']", "['Science Fiction', 'Fiction', 'Classics', 'Philosophy', 'Speculative Fiction', 'Fantasy', 'Science Fiction Fantasy']", "['Islam', 'Religion', 'Nonfiction', 'Self Help', 'Psychology', 'Philosophy', 'Spirituality']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Angels', 'Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Fae', 'Paranormal Romance', 'Magic']", "['Fiction', 'Mythology', 'Classics', 'India', 'Novels', 'Indian Literature', 'Fantasy']", "['Adventure', 'Fiction', 'Horror', 'Historical Fiction', 'Historical', 'Thriller']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Fantasy', 'Medieval', 'British Literature']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Chick Lit', 'Adult', 'Abuse']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Legal Thriller', 'Mystery Thriller', 'Detective']", "['Young Adult', 'Fiction', 'Fantasy', 'Science Fiction', 'Teen', 'Audiobook', 'Post Apocalyptic']", "['Horror', 'Classics', 'Gothic', 'Fiction', 'Ireland', '19th Century', 'Mystery']", "['Science', 'Sports', 'Nonfiction', 'Racing', 'Physics']", "['Chick Lit', 'Thriller', 'Fiction', 'Contemporary', 'Mystery', 'Romance', 'France']", "['Fantasy', 'Middle Grade', 'Animals', 'Fiction', 'Young Adult', 'Childrens', 'Juvenile']", "['Horror', 'Short Stories', 'Classics']", "['Nonfiction', 'Mystery', 'Books About Books', 'Literary Criticism', 'Literature', 'Audiobook', 'Philosophy']", "['Fiction', 'Chick Lit', 'Autistic Spectrum Disorder']", "['Nonfiction', 'Psychology', 'Science', 'Sociology', 'Urban Planning', 'Transport', 'History']", "['Cookbooks', 'Nonfiction', 'Cooking', 'Food', 'Books About Books', 'Childrens', 'Classics']", "['History', 'Nonfiction', 'Medieval', 'Historical', 'British Literature', 'Medicine', 'Medieval History']", "['Fiction', 'Historical Fiction', 'World War II']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fantasy', 'Fiction', 'Romance', 'Teen']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Science Fiction', 'Graphic Novels Comics', 'Superheroes']", "['Young Adult', 'Fantasy', 'Paranormal', 'Urban Fantasy', 'Supernatural', 'Romance', 'Magic']", "['Fiction', 'Historical Fiction', 'Politics', 'Chick Lit', 'Contemporary', 'Historical', 'Book Club']", "['Nonfiction', 'Russia', 'History', 'War', 'Journalism', 'Military Fiction', 'Islam']", "['Romance', 'Christian Fiction', 'Christian', 'Fiction', 'Historical Fiction', 'Inspirational', 'Christian Romance']", "['Fiction', 'British Literature']", "['Young Adult', 'Paranormal', 'Mystery', 'Fantasy', 'Romance', 'Fiction', 'Supernatural']", "['Politics', 'Nonfiction', 'History', 'Islam', 'Religion', 'Cultural', 'Philosophy']", "['Short Stories', 'Fiction', 'Historical Fiction', 'Literary Fiction', 'American', 'Historical']", "['Nonfiction', 'Self Help', 'Business', 'Audiobook', 'Communication', 'Psychology']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Crime', 'Thriller', 'Audiobook']", "['Romantic Suspense', 'Suspense', 'Mystery', 'Romance', 'Crime', 'Fiction', 'Contemporary Romance']", "['Fiction', 'Fantasy', 'Witches', 'Literary Fiction', 'Literature', 'Novels', 'Contemporary']", "['Graphic Novels', 'Comics', 'Fantasy', 'Horror', 'Fiction', 'Graphic Novels Comics', 'Westerns']", "['Humor', 'Nonfiction', 'Comedy', 'Essays', 'Memoir', 'Biography', 'Short Stories']", "['Comics', 'Graphic Novels', 'Manga', 'Batman', 'Art', 'Japan', 'Dc Comics']", "['Middle Grade', 'Childrens', 'Realistic Fiction', 'Romance', 'Fiction', 'Chick Lit', 'Contemporary']", "['Science Fiction', 'Fiction', 'Fantasy', 'Philosophy', 'Speculative Fiction', 'Science Fiction Fantasy', 'Audiobook']", "['Memoir', 'France', 'Nonfiction', 'Biography', 'Travel']", "['History', 'Politics', 'Nonfiction', 'Biography', 'American History', 'The United States Of America', 'Historical']", "['Fiction', 'Mystery', 'Historical Fiction', 'Thriller', 'Fantasy', 'Adventure', 'Mystery Thriller']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Fiction', 'Teen', 'Fantasy']", "['Comics', 'Graphic Novels', 'Superheroes', 'Crime', 'Mystery', 'Fiction', 'Graphic Novels Comics']", "['Nonfiction', 'History', 'Essays', 'Ukraine', 'Ukrainian Literature']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical Mystery', 'Historical', 'Regency', 'Romance']", "['Feminism', 'Nonfiction', 'Politics', 'Gender', 'Gender Studies', 'War', 'Philosophy']", "['Romance', 'Historical Fiction', 'Regency', 'Historical Romance', 'Historical', 'Fiction', 'Regency Romance']", "['Star Wars', 'Comics', 'Graphic Novels', 'Science Fiction', 'Comic Book', 'Graphic Novels Comics', 'Fiction']", "['Comics', 'Graphic Novels']", "['Bizarro Fiction', 'Horror', 'Fiction', 'Fantasy', 'Erotica', 'Romance', 'Science Fiction']", "['Picture Books', 'Childrens', 'Adventure', 'Animals', 'Fiction', 'Humor', 'Birds']", "['Picture Books', 'Childrens', 'Cats', 'Animals', 'Fiction', 'Food', 'Storytime']", "['Fantasy', 'Young Adult', 'Magic', 'Fiction', 'Urban Fantasy', 'Young Adult Fantasy', 'Dragons']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Crime', 'Audiobook', 'British Literature', 'Humor']", "['Fantasy', 'Young Adult', 'Fiction', 'Horror', 'Adventure', 'Supernatural', 'Paranormal']", "['Biography', 'Christian', 'Religion', 'Nonfiction', 'History', 'Christianity', 'Christian Non Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Anthologies', 'Short Stories', 'Vampires', 'Werewolves']", "['Humor', 'Politics']", "['Horror', 'Fiction', 'Southern Gothic', 'Gothic', 'Pulp', 'Paranormal', 'Historical Fiction']", "['Vampires', 'Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Fiction', 'Quilting', 'Chick Lit', 'Cookbooks', 'Cooking', 'Contemporary', 'Food']", "['Erotica', 'BDSM', 'Anthologies', 'Romance', 'Erotic Romance', 'Contemporary', 'Contemporary Romance']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Romantic Suspense', 'Suspense']", "['Science Fiction', 'Horror', 'Short Stories', 'Fantasy', 'Fiction', 'Collections', 'Classics']", "['Nonfiction', 'Crime', 'True Crime', 'Biography', 'History', 'Autobiography', 'Memoir']", "['Science Fiction', 'Fiction', 'Steampunk', 'Fantasy', 'Dystopia', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Japanese Literature', 'Japan', 'Manga']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Anthologies', 'Fantasy', 'Shapeshifters', 'Christmas']", "['Politics', 'Nonfiction', 'History', 'Biography', 'American History', 'Presidents', 'Biography Memoir']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Adventure', 'Audiobook', 'Adult']", "['Romance', 'Fiction', 'Historical Fiction', 'Historical', 'Chick Lit', 'Novels', 'Drama']", "['Harlequin', 'Romance', 'Contemporary Romance', 'Harlequin Romance', 'Romantic', 'Hqn', 'Harlequin Presents']", "['Historical Fiction', 'Historical', 'Fiction', 'Egypt', 'Romance', 'Adult', 'Africa']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Thriller', 'Suspense', 'Crime', 'Detective']", "['Science', 'Nonfiction', 'Environment', 'Climate Change', 'Nature', 'Green', 'Technology']", "['Romance', 'Young Adult', 'Chick Lit', 'Teen', 'Slice Of Life']", "['Fiction', 'Animals', 'Nature', 'Historical Fiction', 'Contemporary', 'Adult Fiction', 'Literary Fiction']", "['Horror', 'Short Stories', 'Fiction', 'Thriller', 'Fantasy', 'Anthologies', 'Supernatural']", "['Education', 'Nonfiction', 'Teaching', 'Memoir']", "['Contemporary Romance', 'Romance', 'Contemporary', 'Firefighters', 'Fiction']", "['Nonfiction', 'Memoir', 'Iran', 'Biography', 'Biography Memoir', 'History', 'Womens']", "['Fiction', 'German Literature', 'Roman', 'Germany', 'Fantasy', 'Magical Realism', 'Novels']", "['Fiction', 'Contemporary', 'German Literature', 'Feminism', 'Germany', 'Roman', 'Erotica']", "['Fiction', 'Young Adult', 'Chick Lit', 'Contemporary', 'Literary Fiction', 'Fashion', 'Romance']", "['Fantasy', 'Romance', 'Historical Fiction', 'Fiction', 'Historical', 'Historical Fantasy', 'Magic']", "['Horror', 'Fiction', 'Ghosts', 'Halloween', 'Paranormal', 'Thriller', 'Splatterpunk']", "['Mystery', 'Adventure', 'Middle Grade', 'Young Adult', 'Fiction', 'Fantasy', 'Childrens']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Novels', 'Literature', 'Religion', 'Contemporary']", "['Poetry', 'Middle Grade', 'Fiction', 'Childrens', 'Realistic Fiction', 'Young Adult', 'Animals']", "['Fiction', 'Contemporary', 'Latin American', 'Novella', 'Literary Fiction', 'Spanish Literature', 'Novels']", "['Literature', 'Nonfiction', 'Philosophy', 'Essays', 'Religion', 'Islam', 'Unfinished']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Thriller', 'Detective', 'Young Adult']", "['Short Stories', 'Fiction', 'Horror', 'France', '19th Century', 'French Literature', 'Weird Fiction']", "['Horror', '20th Century', 'Weird Fiction', 'Short Stories']", "['Mystery', 'Fiction', 'Historical Fiction', 'Historical', 'Cozy Mystery', 'Historical Mystery', 'Crime']", "['Horror', 'Short Stories', 'Young Adult', 'Fantasy', 'Fiction', 'Childrens', 'Middle Grade']", "['Religion', 'Nonfiction', 'Islam', 'Theology', 'Spirituality']", "['Islam', 'Religion', 'History', 'Nonfiction', 'Biography', 'Spirituality', 'Reference']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Historical Fiction', 'Crime', 'Thriller', 'Own']", "['Mystery', 'Cozy Mystery', 'Christmas', 'Fiction', 'Holiday', 'Adult', 'Crime']", "['Fantasy', 'Forgotten Realms', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Dungeons and Dragons', 'Adventure']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Paranormal', 'Adult', 'Chick Lit']", "['Fiction', 'Dutch Literature', 'Literature', 'Classics', 'Short Stories', 'School', '20th Century']", "['Mystery', 'Thriller', 'Suspense', 'Mystery Thriller', 'Crime', 'Fiction']", "['Lds Fiction', 'Suspense', 'Mystery', 'Lds', 'Fiction', 'Thriller', 'Mystery Thriller']", "['Young Adult', 'Horror', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Abuse', 'Dark']", "['M M Romance', 'Fantasy', 'Historical', 'Yaoi', 'LGBT', 'Romance']", "['Cookbooks', 'Cooking', 'Food', 'Nonfiction', 'Health', 'Reference', 'Diets']", "['Romance', 'Science Fiction', 'Erotica', 'Paranormal Romance', 'Aliens', 'Paranormal', 'Fantasy']", "['Nonfiction', 'Spirituality', 'Animals', 'Dogs', 'Audiobook']", "['Romantic Suspense', 'Mystery', 'Romance', 'Suspense', 'Thriller', 'Fiction', 'Crime']", "['Nonfiction', 'History', 'Sports', 'Biography', 'Africa', 'South Africa', 'Politics']", "['Discipleship', 'Leadership', 'Christian', 'Theology', 'Religion', 'Teaching', 'Spirituality']", "['Fiction', 'France', 'Philosophy', 'Literary Fiction', 'Book Club', 'Contemporary', 'Novels']", "['Fiction', 'Contemporary', 'German Literature', 'Germany', 'Romance', 'Roman', 'Family']", "['Paranormal Romance', 'Paranormal', 'Vampires', 'Romance', 'Fantasy', 'Adult', 'Fiction']", "['Horror', 'Gothic', 'Fiction']", "['Biography', 'Nonfiction', 'Christian', 'Autobiography', 'Memoir', 'Biography Memoir', 'Christianity']", "['Mystery', 'Christmas', 'Cozy Mystery', 'Fiction', 'Holiday', 'Food', 'Culinary']", "['Picture Books', 'Childrens', 'Fiction']", "['Science', 'Nonfiction', 'Economics', 'Politics', 'Africa', 'Food', 'Social Issues']", "['Short Stories', 'Science Fiction', 'Horror', 'Fantasy', 'Dystopia', 'Collections', 'Speculative Fiction']", "['Short Stories', 'Mystery', 'Fiction', 'Crime', 'Audiobook', 'Mystery Thriller', 'Thriller']", "['Humor', 'Nonfiction', 'Comedy', 'Biography', 'Adult', 'Essays', 'Autobiography']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Suspense', 'Mystery Thriller', 'Horror']", "['Short Stories', 'Classics', 'Fiction', 'Horror', 'Gothic', 'School', 'Read For School']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Supernatural', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Dragons', 'Magic', 'Fiction', 'Young Adult Fantasy', 'High Fantasy']", "['Short Stories', 'Fiction', 'Brazil', 'Classics', 'Female Authors', 'Portuguese Literature', 'Womens']", "['Nonfiction', 'Self Help']", "['Nonfiction', 'Philosophy', 'Religion', 'Spirituality', 'Self Help']", "['Nonfiction', 'Religion', 'Christian', 'Faith', 'Christian Living', 'Christianity', 'Spirituality']", "['Romance', 'Paranormal Romance', 'Fantasy', 'Science Fiction', 'Paranormal', 'Aliens', 'Adult']", "['Fantasy', 'Short Stories', 'Science Fiction', 'Fiction', 'Horror', 'Anthologies', 'Science Fiction Fantasy']", "['Fantasy', 'High Fantasy', 'Fiction', 'Sword and Sorcery', 'Science Fiction Fantasy']", "['Nonfiction', 'Occult', 'World War II', 'History', 'Mythology', 'Magic']", "['Graphic Novels', 'Short Stories', 'Fantasy', 'Fiction', 'Young Adult', 'Picture Books', 'Comics']", "['Science Fiction', 'Military Fiction', 'Military Science Fiction', 'Fiction', 'Space Opera', 'Aliens', 'Adventure']", "['Nonfiction', 'Animals', 'Memoir', 'Nature', 'Science', 'Birds', 'Biography']", "['Historical Fiction', 'Young Adult', 'Historical', 'Fiction', 'Middle Grade', 'School', 'African American']", "['Picture Books', 'Fiction', '1st Grade', 'Childrens']", "['Biography', 'Nonfiction', 'Literature', 'India', 'History', 'Biography Memoir', 'British Literature']", "['Science Fiction', 'Fiction', 'Fantasy', 'Post Apocalyptic', 'Dystopia', 'Humor', 'Science Fiction Fantasy']", "['Military Fiction', 'Nonfiction', 'History', 'War', 'Military History', 'Terrorism', 'Historical']", "['Fiction', 'Historical Fiction', 'African American', 'Classics', 'Historical', 'Literary Fiction', 'Literature']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Audiobook', 'Romance', 'Mystery Thriller', 'New York']", "['Fiction', 'Mystery', 'India', 'Crime', 'Thriller', 'Mystery Thriller', 'Asia']", "['Fiction', 'Historical Fiction', 'Novels', 'American', 'Literary Fiction', 'Literature', 'Jewish']", "['Nonfiction', 'Animals', 'Science', 'Memoir', 'Birds', 'Biography', 'Psychology']", "['Fiction', 'Fantasy', 'Magical Realism', 'Portugal', 'Novels', 'Portuguese Literature', 'Literature']", "['Childrens', 'Picture Books', 'Fiction', 'Adventure']", "['Historical Fiction', 'Young Adult', 'Adventure', 'Historical', 'Fiction', 'Pirates', 'Teen']", "['Science Fiction', 'Fiction', 'Mystery', 'Space Opera', 'Adventure', 'Thriller', 'Action']", "['Science Fiction', 'Cyberpunk', 'Fiction', 'Science Fiction Fantasy', 'Short Stories', 'Collections']", "['Science Fiction', 'Fiction', 'Speculative Fiction']", "['History', 'Nonfiction', 'World War II', 'War', 'European History', 'Military History', 'Military Fiction']", "['Mystery', 'Historical Fiction', 'Young Adult', 'Fiction', 'Middle Grade', 'Historical', 'Audiobook']", "['Short Stories', 'Fiction', 'Anthologies']", "['Horror', 'Fiction', 'Fantasy', 'Zombies', 'Apocalyptic', 'Post Apocalyptic']", "['Mystery', 'Crime', 'Canada', 'Noir']", "['Young Adult', 'Mystery', 'Fiction', 'Contemporary', 'Chick Lit', 'Romance', 'Thriller']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Contemporary', 'Crafts', 'Chick Lit', 'Amateur Sleuth']", "['Picture Books', 'Animals', 'Childrens', 'Storytime', 'Birds', 'Fiction', 'Humor']", "['Doctor Who', 'Science Fiction', 'Fiction', 'Time Travel', 'Audiobook', 'Fantasy', 'Adventure']", "['Time Travel', 'Thriller', 'Historical Fiction']", "['Picture Books', 'Childrens', 'Animals', 'Fiction']", "['Mystery', 'Historical Fiction', 'Fiction', 'Crime', 'Thriller', 'Noir', 'Germany']", "['Realistic Fiction', 'Fiction', 'Middle Grade', 'Chapter Books', 'Childrens', 'Contemporary']", "['Mystery', 'Fiction', 'Suspense', 'Romance', 'Thriller', 'Romantic Suspense', 'Mystery Thriller']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Greece', 'War']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fairies', 'Urban Fantasy', 'Fae']", "['Urban Fantasy', 'Vampires', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Magic']", "['Romance', 'Paranormal', 'Vampires', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Humor']", "['History', 'Germany', 'Nonfiction', 'Holocaust', 'World War II', 'European History', 'Politics']", "['Mystery', 'Crime', 'Fiction', 'Italy', 'Italian Literature', 'Detective', 'Thriller']", "['Fiction', 'American', 'Literature', 'Novels', 'Contemporary', 'The United States Of America', 'Literary Fiction']", "['Nonfiction', 'Memoir', 'France', 'Biography', 'History', 'Nobel Prize', 'French Literature']", "['History', 'Nonfiction', 'China', 'Tea', 'Food', 'Asia', 'Historical']", "['History', 'Nonfiction', 'World War II', 'War', 'Military History', 'Military Fiction', 'Audiobook']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Novels']", "['Leadership', 'Church', 'Christian', 'Christianity', 'Nonfiction', 'Ecclesiology', 'Religion']", "['Fiction', 'Childrens', 'Classics', 'Animals', 'Fantasy', 'Audiobook', 'Humor']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Adult Fiction', 'Adult', 'Literary Fiction', 'Novels']", "['Nonfiction', 'Art', 'Travel', 'Self Help', 'Writing', 'Reference', 'Journal']", "['Food', 'Memoir', 'Nonfiction', 'Cookbooks', 'Cooking', 'Food Writing', 'Biography']", "['Fiction', 'LGBT', 'Queer', 'Contemporary', 'Literature', 'Spanish Literature', 'Latin American']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Crime', 'Suspense', 'Mystery Thriller']", "['Nonfiction', 'True Crime', 'Biography', 'Crime', 'Memoir']", "['Mystery', 'Cozy Mystery', 'Knitting', 'Fiction', 'Crafts', 'Mystery Thriller', 'Crime']", "['Music', 'Nonfiction', 'Punk', 'Reference', 'History']", "['Young Adult', 'Mental Health', 'Contemporary', 'Fiction', 'LGBT', 'Mental Illness', 'Realistic Fiction']", "['Christmas', 'Nonfiction', 'Biography', 'History', 'Holiday', 'Books About Books', 'Adult']", "['Young Adult', 'Fantasy', 'Paranormal', 'Witches', 'Romance', 'Magic', 'Supernatural']", "['Sports', 'Nonfiction', 'Football', 'History', 'Biography', 'Audiobook', 'Westerns']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Southern', 'Humor', 'Contemporary']", "['Poetry', 'American', 'Nonfiction', 'Contemporary', 'Adult', 'Literature', 'United States']", "['Lds', 'Nonfiction', 'Religion', 'Church', 'Childrens', 'Picture Books', 'Scripture']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fairies', 'Fae', 'Urban Fantasy']", "['Plays', 'Drama', 'Swedish Literature', 'Fiction', 'Historical', '19th Century']", "['Fiction', 'Contemporary', 'Mystery', 'Audiobook', 'Adult', 'Drama', 'Adult Fiction']", "['Historical Fiction', 'Italy', 'Fiction', 'Historical', 'Music', 'Romance', 'Art']", "['Fiction', 'Asia', 'LGBT', 'Asian Literature', 'Travel', 'Queer', 'The World']", "['Nonfiction', 'Biography', 'Humor', 'Film', 'Memoir', 'Comedy', 'Unfinished']", "['Picture Books', 'Childrens', 'Storytime', 'Fiction', 'Cultural', 'Counting', 'Family']", "['Fantasy', 'Fiction', 'Retellings', 'Fairy Tales', 'Adult', 'Science Fiction Fantasy', 'Magic']", "['Romance', 'Fiction', 'Firefighters', 'Contemporary Romance']", "['Chick Lit', 'Romance', 'Contemporary', 'Fiction', 'Contemporary Romance']", "['Graphic Novels', 'Comics', 'Short Stories', 'Fiction', 'Graphic Novels Comics', 'Israel', 'Bande Dessinée']", "['Sports', 'Biography', 'Nonfiction', 'Memoir']", "['Nonfiction', 'Memoir', 'Biography', 'Books About Books', 'Adult', 'Pop Culture', 'History']", "['Childrens', 'Classics', 'Fiction', 'Swedish Literature', 'Scandinavian Literature', 'Humor', 'Sweden']", "['Young Adult', 'Paranormal', 'Witches', 'Mystery Thriller', 'Crime', 'Fiction', 'Fantasy']", "['Food', 'Nonfiction', 'Environment', 'Science', 'Nature', 'Sustainability', 'Health']", "['Nonfiction', 'Sexuality', 'Self Help', 'Memoir', 'Reference']", "['Christmas', 'Fiction', 'Fantasy', 'Holiday', 'Historical Fiction', 'Historical']", "['Historical Fiction', 'Fiction', 'India', 'Historical', 'Novels', 'Romance', 'Coming Of Age']", "['Nonfiction', 'History', 'Language', 'Linguistics', 'Audiobook', 'Science', 'Writing']", "['Fantasy', 'Classics', 'Childrens', 'Fiction', 'Young Adult', 'Mermaids', 'Middle Grade']", "['Science Fiction', 'Romance', 'Science Fiction Romance', 'Fiction', 'Urban Fantasy', 'Space Opera']", "['Mystery', 'Thriller', 'Suspense', 'Mystery Thriller', 'Fiction', 'Crime', 'Action']", "['Picture Books', 'Childrens', 'Animals']", "['Science', 'Nonfiction', 'History', 'Essays', 'Popular Science', 'History Of Science']", "['Horror', 'Mystery', 'Historical Fiction', 'Fiction', 'Ghosts', 'Paranormal', 'Supernatural']", "['Horror', 'Fiction', 'Mystery', 'Paranormal', 'Thriller', 'Ghosts', 'Historical Fiction']", "['Novels', 'Fiction', 'Literature', 'Romance', 'Unfinished', 'Romantic', 'Contemporary']", "['Fiction', 'Animals', 'Dogs', 'Audiobook', 'Adult Fiction', 'Adult', 'Book Club']", "['Harlequin', 'Romance', 'Contemporary Romance', 'Contemporary']", "['Fantasy', 'Young Adult', 'Mythology', 'Fiction', 'Adventure', 'Greek Mythology', 'Magic']", "['Christian Fiction', 'Fiction', 'Christian', 'Mystery', 'Contemporary', 'Crime', 'Adult Fiction']", "['Memoir', 'Nonfiction', 'Biography Memoir', 'Humor', 'Biography', 'Autobiography', 'Family']", "['Historical Romance', 'Romance', 'Historical', 'Medieval', 'Medieval Romance', 'Historical Fiction', 'Fiction']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Humor', 'Mystery Thriller', 'Audiobook']", "['Bizarro Fiction', 'Horror', 'Science Fiction', 'Fiction', 'Dystopia', 'Novella', 'Humor']", "['Graphic Novels', 'Young Adult', 'Fantasy', 'Science Fiction', 'Comics', 'Adventure', 'Fiction']", "['Fiction', 'Jewish', 'Historical Fiction', 'Nobel Prize', 'Literature', 'American', 'Judaism']", "['Picture Books', 'Childrens', 'Fiction', 'Storytime']", "['Fiction', 'Japan', 'Japanese Literature', 'Contemporary', 'Literary Fiction', 'Asia', 'Asian Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Witches', 'Book Club', 'Adult', 'Audiobook']", "['Fiction', 'Comedy']", "['Nonfiction', 'History', 'Banned Books', 'Holocaust']", "['Young Adult', 'Fantasy', 'Romance', 'Fiction', 'Paranormal', 'Teen', 'Magic']", "['Philosophy', 'Nonfiction', 'Psychology', 'Classics', 'Essays', 'Spirituality', 'Audiobook']", "['Graphic Novels', 'Queer', 'LGBT', 'Fiction', 'Feminism', 'Lesbian', 'Humor']", "['Fantasy', 'Horror', 'Fiction', 'Science Fiction', 'Urban Fantasy', 'Paranormal', 'Supernatural']", "['Comics', 'Graphic Novels', 'Fiction', 'Humor', 'Comedy', 'Comic Book', 'Graphic Novels Comics']", "['Nonfiction', 'Economics', 'Labor', 'Politics', 'Sociology', 'Business', 'History']", "['Fiction', 'Historical Fiction', 'LGBT', 'Young Adult', 'Queer', 'Coming Of Age', 'Contemporary']", "['Horror', 'Fantasy', 'Short Stories', 'Fiction', 'Classics', 'Pulp', 'Weird Fiction']", "['Christian', 'Self Help', 'Inspirational', 'Spirituality']", "['Bizarro Fiction']", "['Manga', 'Graphic Novels', 'Fantasy', 'Romance', 'Comics']", "['Education', 'Nonfiction', 'Politics', 'Sociology', 'Parenting', 'Society', 'Philosophy']", "['Christian', 'Nonfiction', 'Faith', 'Christianity', 'Christian Living', 'Religion', 'Theology']", "['Nonfiction', 'Animals', 'Memoir', 'Nature', 'Biography', 'Photography', 'Autobiography']", "['Historical Romance']", "['Fiction', 'Mystery', 'Thriller', 'Suspense', 'Mystery Thriller', 'Crime', 'Audiobook']", "['Graphic Novels', 'Horror', 'Comics', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Mystery']", "['Chick Lit', 'Fiction', 'Womens Fiction', 'Humor', 'Audiobook', 'Southern', 'Book Club']", "['Manga', 'Manhwa', 'Adventure', 'Fantasy', 'Graphic Novels']", "['Mystery', 'Cozy Mystery', 'Christmas', 'Humor', 'Fiction', 'Holiday', 'Audiobook']", "['Historical Fiction', 'Horror', 'Fiction', 'Mystery', 'Fantasy', 'Historical', 'Thriller']", "['Realistic Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Contemporary', 'Coming Of Age', 'Childrens']", "['Young Adult', 'Mystery', 'Paranormal', 'Fantasy', 'Fiction', 'Thriller', 'Supernatural']", "['Historical Fiction', 'Russia', 'Fiction', 'Historical', 'Romance', 'Romanovs', 'Adult']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Adventure', 'Adult']", "['Nonfiction', 'Psychology', 'Business', 'Self Help', 'Sociology', 'Science', 'Audiobook']", "['Astrology']", "['Fiction', 'Historical Fiction', 'Historical', 'Romance', 'Africa', 'Food', 'British Literature']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller']", "['Science Fiction', 'Doctor Who', 'Fiction', 'Fantasy', 'Tv', 'Media Tie In', 'Science Fiction Fantasy']", "['Graphic Novels', 'Comics', 'Art', 'Music', 'Fiction', 'Short Stories', 'Graphic Novels Comics']", "['Short Stories', 'Fiction', 'Essays', 'Anthologies', 'Humor', 'Collections', 'American']", "['Historical Fiction', 'Fiction', 'Adult Fiction', 'Magical Realism', 'Contemporary', 'Audiobook', 'Adult']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Fiction', 'Teen', 'Chick Lit']", "['Novels', 'Fiction', 'Egypt', 'Historical Fiction', 'Literature', 'Historical', 'Unfinished']", "['Novels', 'Fiction', 'Psychology', 'Egypt', 'Literature']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Romance', 'Fiction', 'Paranormal Romance']", "['Horror', 'Short Stories', 'Fiction']", "['Romance', 'Mystery']", "['Fiction', 'Historical Fiction', 'France', 'Romance', 'Historical', 'Literature', 'French Literature']", "['Historical Fiction', 'Mystery', 'Historical', 'Fiction', 'Historical Mystery', 'British Literature', 'Romance']", "['Short Stories', 'Fiction', 'Literary Fiction', 'Short Story Collection', 'Contemporary']", "['Fantasy', 'Fiction', 'Classics', 'High Fantasy', 'Science Fiction', 'Epic Fantasy', 'Literature']", "['Nonfiction', 'Memoir', 'Biography Memoir', 'Marriage']", "['Star Wars', 'Comics', 'Graphic Novels', 'Science Fiction', 'Graphic Novels Comics', 'Fantasy', 'Collections']", "['Nonfiction', 'Holocaust', 'History', 'Memoir', 'Biography', 'World War II', 'Biography Memoir']", "['Nonfiction', 'Biography', 'Politics', 'Memoir', 'Autobiography', 'Biography Memoir', 'History']", "['Nonfiction', 'Animals', 'Cats', 'Memoir', 'Biography', 'Adult', 'Biography Memoir']", "['Romance', 'Love', 'Fiction', 'Novels', 'Spirituality', 'Pakistan', 'Contemporary']", "['Chick Lit', 'Fiction']", "['Mystery', 'Paranormal', 'Witches', 'Cozy Mystery', 'Fantasy', 'Magic', 'Fiction']", "['Canada', 'Fiction', 'Coming Of Age', 'Contemporary', 'Book Club', 'Historical Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Westerns', 'Fiction', 'Western Romance']", "['Mystery', 'Fiction', 'France', 'Crime', 'Mystery Thriller', 'Historical Fiction', 'Audiobook']", "['Romance', 'Romantic Suspense', 'Suspense', 'Fiction', 'Mystery', 'Contemporary Romance', 'Paranormal Romance']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller', 'Murder Mystery', 'Adult', 'Romance']", "['Mystery', 'Paranormal', 'Ghosts', 'Cozy Mystery', 'Paranormal Mystery', 'Fantasy', 'Fiction']", "['Christmas', 'Fiction', 'Holiday', 'Inspirational', 'Christian', 'Christian Fiction', 'Adult Fiction']", "['Science Fiction', 'Christian', 'Christian Fiction', 'Fantasy', 'Fiction']", "['Science', 'Nonfiction', 'Medicine', 'Popular Science', 'Health', 'Psychology', 'Medical']", "['Nonfiction', 'Brazil', 'Politics', 'Biography', 'History', 'Portuguese Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'War', 'British Literature', 'France']", "['Mystery', 'Young Adult', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Humor', 'Animals']", "['Short Stories', 'Fiction', 'Canada', 'Literature', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Asia', 'Adventure', 'Fantasy']", "['Fiction', 'Lds Fiction', 'Religion', 'Lds', 'Church', 'Suspense', 'Fantasy']", "['Nonfiction', 'Politics', 'History', 'War', 'Terrorism', 'American History', 'Military Fiction']", "['Art', 'Nonfiction', 'Crafts', 'Reference', 'Journaling', 'Writing', 'How To']", "['Short Stories', 'Fiction', 'Japan', 'Japanese Literature', 'Science Fiction', 'Fantasy', 'Asia']", "['Nonfiction', 'Economics', 'Politics']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'Scotland', 'Audiobook']", "['Spirituality', 'Philosophy', 'Alchemy', 'Occult', 'Theosophy', 'Nonfiction']", "['Fiction', 'Scandinavian Literature', 'Roman', 'Contemporary', 'Novels', 'Drama', 'Abuse']", "['Fiction', 'Humor', 'Middle Grade', 'Childrens', 'Realistic Fiction', 'Graphic Novels', 'Young Adult']", "['Historical Romance', 'Romance', 'Westerns', 'Historical']", "['Fantasy', 'Romance', 'Dragons', 'Paranormal', 'Paranormal Romance', 'Shapeshifters', 'Fantasy Romance']", "['Fantasy', 'Dragons', 'Romance', 'Paranormal Romance', 'Paranormal', 'Shapeshifters', 'Magic']", "['Travel', 'Travelogue', 'Pakistan', 'Nonfiction']", "['Travel', 'Nonfiction', 'Travelogue']", "['Poetry', 'Fiction']", "['Environment', 'Criticism', 'Nonfiction', 'Academic', 'Natural History', 'Literary Criticism']", "['Fantasy', 'Childrens', 'Fiction', 'Classics', 'Middle Grade', 'Finnish Literature', 'Adventure']", "['Classics', 'Mystery', 'Short Stories', 'Fiction', 'Horror', 'Crime', 'Gothic']", "['Horror', 'Zombies', 'Short Stories', 'Fiction', 'Anthologies', 'Fantasy', 'Science Fiction']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Magic', 'Fae', 'Paranormal', 'Paranormal Romance']", "['Horror', 'Fiction', 'Fantasy']", "['Business', 'Nonfiction', 'Education', 'Biography', 'Economics', 'Buisness', 'Finance']", "['Picture Books', 'Childrens', 'Humor', 'Animals', 'Fiction', 'Birds', 'Storytime']", "['Nonfiction', 'Biography', 'Memoir', 'Audiobook', 'Australia', 'Autobiography', 'Humor']", "['Fiction', 'Contemporary', 'Chick Lit', 'Cultural', 'Fantasy', 'Novels']", "['Mystery', 'Thriller', 'Suspense', 'Fiction', 'Mystery Thriller', 'Crime', 'Drama']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Womens Fiction', 'Humor', 'Adult']", "['Fiction', 'Indian Literature', 'India', 'Romance', 'Novels', 'Contemporary', 'Young Adult']", "['Science Fiction', 'Childrens', 'Young Adult', 'Fiction', 'Fantasy', 'Middle Grade', 'Science Fiction Fantasy']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fairy Tales', 'Horror', 'Graphic Novels Comics', 'Fiction']", "['Fiction', 'Young Adult', 'Coming Of Age', 'Contemporary', 'Death', 'Family', 'Literary Fiction']", "['Mystery', 'Fiction', 'Cozy Mystery', 'Audiobook', 'British Literature', 'Mystery Thriller', 'Crime']", "['Novels', 'Fiction', 'Historical Fiction', 'Politics', 'Literature', 'Classics', 'Short Stories']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'German Literature', 'Science Fiction Fantasy']", "['Classics', 'Historical Fiction', 'Fiction', 'Adventure', 'Historical', 'Literature', 'Maritime']", "['Religion', 'Nonfiction', 'Philosophy', 'Islam', 'Biography', 'Atheism', 'Spirituality']", "['Fiction', 'Historical Fiction', 'British Literature', '20th Century', 'Israel', 'Literary Fiction', 'Classics']", "['Comics', 'Graphic Novels', 'Fiction', 'Anthologies', 'Short Stories', 'Graphic Novels Comics', 'Comic Book']", "['Fantasy', 'Animals', 'Middle Grade', 'Childrens', 'Fiction', 'Cats', 'Young Adult']", "['Fantasy', 'Magic', 'Fiction', 'Young Adult', 'High Fantasy', 'Epic Fantasy', 'Adventure']", "['Fiction', 'Historical Fiction', 'Germany', 'War', 'German Literature', 'World War II', 'Classics']", "['Fiction', 'Hungary', 'Hungarian Literature', 'Science Fiction', 'Dystopia', 'Classics', 'Literature']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Magic', 'Paranormal', 'Fae', 'Paranormal Romance']", "['Medicine', 'Medical', 'Nonfiction', 'Memoir', 'Science', 'Biography', 'New York']", "['Fiction', 'Family']", "['Fiction', 'Modern']", "['Mystery', 'Suspense', 'Romance', 'Fiction', 'Contemporary Romance', 'Mystery Thriller', 'Thriller']", "['Film', 'Nonfiction', 'Reference', 'Media Tie In', 'Essays', 'Criticism', 'History']", "['Mystery', 'Fantasy', 'Middle Grade', 'Fiction', 'Adventure', 'Young Adult', 'Childrens']", "['Fantasy', 'Fiction', 'Self Help', 'Philosophy', 'Psychology', 'School', 'Short Stories']", "['Spirituality', 'Nonfiction', 'Self Help', 'Philosophy', 'Religion', 'Psychology', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'World War II', 'Book Club', 'Adult Fiction']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Fiction', 'Horror', 'Mystery']", "['Mystery', 'Fiction', 'Cozy Mystery', 'Romance', 'Quilting', 'Chick Lit', 'Mystery Thriller']", "['Biography', 'Nonfiction', 'Literature', 'Classics', 'Autobiography', 'Egypt', 'Memoir']", "['Short Stories', 'Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Speculative Fiction', 'New Weird']", "['Horror', 'Young Adult', 'Paranormal', 'Fantasy', 'Supernatural', 'Demons', 'Fiction']", "['Vampires', 'Horror', 'Paranormal', 'Fantasy', 'Fiction', 'Mystery', 'Urban Fantasy']", "['Picture Books', 'Nonfiction', 'Holocaust', 'History', 'Childrens', 'Historical', 'Biography']", "['Picture Books', 'Childrens', 'Fiction', 'Storytime', 'Books About Books', 'Poetry', 'Juvenile']", "['Comics', 'Graphic Novels', 'Horror', 'Fantasy', 'Graphic Novels Comics', 'Action']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Womens Fiction', 'Adult', 'Adult Fiction']", "['Classics', 'Fiction', 'Historical Fiction', 'Historical', 'Novels', 'Germany', 'German Literature']", "['Fantasy', 'Fiction', 'Sword and Sorcery', 'Short Stories', 'Adventure', 'Science Fiction Fantasy', 'Classics']", "['Young Adult', 'Vampires', 'Romance', 'Fantasy', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Fantasy', 'Epic Fantasy', 'Historical Fiction', 'Fiction', 'Military Fiction', 'War', 'High Fantasy']", "['Romantic Suspense', 'Suspense', 'Romance', 'Mystery', 'Thriller', 'Contemporary Romance', 'Mystery Thriller']", "['Fiction', 'Birds', 'Nature', 'Animals', 'Contemporary', 'Family', 'Literary Fiction']", "['Historical Fiction', 'Romance', 'Fiction', 'Historical', 'Time Travel', 'Scotland', 'Historical Romance']", "['Graphic Novels', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Fables', 'Fairy Tales', 'Comics']", "['Graphic Novels', 'Comics', 'Fiction', 'Bande Dessinée', 'Graphic Novels Comics', 'France', 'Young Adult']", "['Horror', 'Fiction', 'Japanese Literature', 'Japan', 'Thriller', 'Mystery', 'Contemporary']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Fiction', 'Adventure', 'Romance', 'Paranormal']", "['Nonfiction', 'Memoir', 'Humor', 'Chick Lit', 'Biography', 'Autobiography', 'Biography Memoir']", "['Fiction', 'Romance', 'Ireland', 'Chick Lit', 'Adult Fiction', 'Contemporary', 'Irish Literature']", "['Nonfiction', 'History', 'Adventure', 'Travel', 'Biography', 'Audiobook', 'Mystery']", "['Mystery', 'Thriller', 'Fiction', 'Suspense', 'Crime', 'Mystery Thriller', 'Religion']", "['Spirituality', 'Audiobook', 'Nonfiction']", "['Nonfiction', 'Christianity', 'Literary Criticism', 'Books About Books', 'Literature', 'Religion', 'Essays']", "['Fiction', 'Short Stories', 'India', 'Mystery', 'Anthologies', 'Pulp', 'Science Fiction']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Humor', 'British Literature']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Romance', 'Adult Fiction', 'Adult']", "['Fantasy', 'Dragons', 'Middle Grade', 'Fairy Tales', 'Young Adult', 'Magic', 'Fiction']", "['Young Adult', 'Realistic Fiction', 'Teen', 'Contemporary', 'Illness', 'Chick Lit', 'School']", "['Fiction', 'Historical Fiction', 'War', 'Pakistan', 'Contemporary', 'Novels', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Spanish Literature', 'Fiction', 'Angels']", "['Fiction', 'Historical Fiction', 'Ireland', 'Irish Literature', 'Historical', 'Literary Fiction', 'Mystery']", "['Biography', 'Nonfiction', 'Comedy']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Werewolves', 'Paranormal Romance', 'Fiction', 'Romance']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Teen', 'Childrens', 'Dystopia', 'Speculative Fiction']", "['Biography', 'Music', 'Nonfiction', 'Biography Memoir', 'History', 'Memoir', 'Pop Culture']", "['Science', 'Nonfiction', 'Biology', 'Nature', 'Animals', 'Ecology', 'Natural History']", "['Comics', 'Graphic Novels', 'Fiction', 'Anthologies', 'Graphic Novels Comics', 'Short Stories', 'Comix']", "['Nonfiction', 'Economics', 'History', 'Essays', 'Canada', 'Philosophy', 'Business']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Adventure', 'Dark Fantasy']", "['Fiction', 'India', 'Contemporary', 'Literary Fiction', 'Cultural', 'Family', 'Adult']", "['Young Adult', 'Zombies', 'Horror', 'Fantasy', 'Dystopia', 'Fiction', 'Post Apocalyptic']", "['Science Fiction', 'Space Opera', 'Fiction', 'Science Fiction Fantasy', 'Space', 'Adventure', 'Audiobook']", "['Fantasy', 'Fiction', 'LGBT', 'M M Romance', 'Queer', 'Magic', 'Science Fiction Fantasy']", "['Novels', 'Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Classics', 'Egypt']", "['Historical Fiction', 'Young Adult', 'Historical', 'African American', 'Fiction', 'Teen', 'Realistic Fiction']", "['Childrens', 'Picture Books', 'Poetry', 'Nursery Rhymes', 'Fantasy', 'Fiction', 'Classics']", "['Short Stories', 'Fiction', 'Mystery', 'Noir', 'Crime', 'Anthologies', 'Turkish']", "['Nonfiction', 'Psychology', 'Economics', 'Business', 'Self Help', 'Science', 'Politics']", "['Thriller', 'Mystery', 'Fiction', 'Crime', 'Suspense', 'Mystery Thriller', 'Canada']", "['Young Adult', 'Horror', 'Mystery', 'Historical Fiction', 'Paranormal', 'Fiction', 'Teen']", "['Religion', 'Atheism', 'Nonfiction', 'Philosophy', 'Biography', 'Memoir', 'Science']", "['Historical Fiction', 'Fiction', 'Italy', 'Romance', 'Historical', 'Mystery', 'Contemporary']", "['Fiction', 'Canada', 'Historical Fiction', 'Contemporary', 'Canadian Literature', 'Literary Fiction', 'Book Club']", "['Novels', 'Fiction', 'Literature', 'Egypt', 'Classics', 'Politics', 'Egyptian Literature']", "['Short Stories', 'Nonfiction', 'Literature', 'Egypt']", "['Fiction', 'Lds Fiction', 'Religion', 'Lds', 'Church', 'Historical Fiction', 'Suspense']", "['Nonfiction', 'Iran', 'History', 'Politics', 'Religion', 'Islam', 'Travel']", "['Travel', 'Nonfiction', 'Literature', 'History', 'Biography', 'Adventure', 'Unfinished']", "['Knitting', 'Crafts', 'Nonfiction', 'Reference']", "['Novels', 'Fiction', 'Classics', 'Romance', 'Literature']", "['Mystery', 'Fiction', 'Contemporary', 'Crime', 'Mystery Thriller', 'Thriller', 'Suspense']", "['Novels', 'Fiction', 'Dystopia', 'Literature', 'Fantasy', 'Science Fiction', 'Egypt']", "['Nonfiction', 'Science', 'Environment', 'Nature', 'Food', 'Animals', 'Biology']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Mystery', 'Young Adult Contemporary']", "['Nonfiction', 'Politics', 'India', 'Indian Literature']", "['Manga', 'Comics', 'Graphic Novels', 'Nonfiction', 'Memoir', 'Biography', 'Japan']", "['Fiction', 'Historical Fiction', 'Short Stories', 'Medicine', 'Psychology', 'Historical']", "['Politics', 'Nonfiction', 'Biography', 'History', 'American History']", "['Science Fiction', 'Dystopia', 'Post Apocalyptic', 'Fiction', 'Magical Realism']", "['Classics', 'Serbian Literature', 'Short Stories', 'Fiction', 'Adult', 'Drama']", "['Mystery', 'Adventure', 'Middle Grade', 'Fiction', 'Young Adult', 'Childrens', 'Fantasy']", "['Religion', 'Islam', 'Self Help', 'Nonfiction', 'Psychology', 'Philosophy', 'Personal Development']", "['Novels', 'Fiction', 'Historical Fiction', 'Literature', 'Egypt', 'Religion', 'Historical']", "['Urban Fantasy', 'Paranormal', 'Vampires', 'Fantasy', 'Romance', 'Paranormal Romance', 'Magic']", "['Science Fiction', 'Fiction', 'Alternate History', 'Post Apocalyptic', 'Thriller', 'Military Fiction', 'War']", "['Fantasy', 'Fiction', 'Italian Literature', 'Humor', 'Italy', 'Novels', 'Contemporary']", "['Nonfiction', 'Memoir', 'Art', 'Biography', 'Psychology', 'Biography Memoir']", "['Young Adult', 'Werewolves', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Shapeshifters']", "['Vampires', 'Paranormal', 'Urban Fantasy', 'Paranormal Romance', 'Romance', 'Fantasy', 'Adult']", "['Horror', 'Short Stories', 'Fiction', 'Classics', 'Ghost Stories', 'Fantasy', 'Gothic']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Supernatural', 'Witches']", "['Crime', 'Mystery', 'Fiction', 'Thriller', 'British Literature', 'Mystery Thriller', 'Detective']", "['Mystery', 'Paranormal', 'Witches', 'Fiction', 'Paranormal Mystery', 'Fantasy', 'Cozy Mystery']", "['Fiction', 'Historical Fiction', 'Africa', 'Book Club', 'Medicine', 'Ethiopia', 'Medical']", "['Fantasy', 'Fairy Tales', 'Fiction', 'Young Adult', 'Retellings', 'Magic', 'Science Fiction Fantasy']", "['Fiction', 'Politics', 'Religion', 'Spirituality', 'Fantasy', 'Humor', 'Contemporary']", "['Nonfiction', 'Psychology', 'Self Help', 'Communication', 'Relationships', 'Personal Development', 'Leadership']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Fiction', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Vampires', 'Paranormal', 'Romance', 'Fiction', 'Werewolves']", "['Graphic Novels', 'Memoir', 'Nonfiction', 'Comics', 'History', 'Graphic Novels Comics', 'Biography']", "['Historical Fiction', 'Fiction', 'Historical', 'Thriller', 'Politics', 'Italy', 'Roman']", "['Fantasy', 'Horror', 'Thriller', 'Fiction', 'Crime', 'Mystery', 'Paranormal']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Shapeshifters', 'Fantasy', 'Humor', 'Erotica']", "['Fantasy', 'Young Adult', 'Fairies', 'Fae', 'Romance', 'Magic', 'Paranormal']", "['Chick Lit', 'Romance', 'Fiction', 'Southern', 'Humor', 'Audiobook', 'Contemporary Romance']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Fiction', 'Mystery', 'Supernatural']", "['Nonfiction', 'Romance', 'Literature', 'Poetry', 'Biography', 'Love', 'Contemporary']", "['Science', 'Nonfiction', 'Physics', 'Philosophy', 'Audiobook', 'Religion', 'Literature']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical Mystery', 'Historical', 'British Literature', 'Audiobook']", "['Young Adult', 'Fantasy', 'Paranormal', 'Witches', 'Romance', 'Supernatural', 'Magic']", "['Romance', 'Erotica', 'Erotic Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Suspense']", "['Horror', 'Fiction', 'Short Stories', 'Gothic', 'Witches', 'Fantasy', 'Classics']", "['Horror', 'Young Adult', 'Paranormal', 'Fantasy', 'Mystery', 'Supernatural', 'Ghosts']", "['Humor', 'Fiction', 'Fantasy', 'Comedy', 'Historical Fiction', 'Audiobook', 'Historical']", "['Short Stories', 'Fiction', 'Italy', 'Italian Literature', 'Stories', 'Novels', 'Magical Realism']", "['Fiction', 'Christmas', 'Historical Fiction', 'Ireland', 'Audiobook', 'Irish Literature', 'Humor']", "['History', 'Science', 'Nonfiction', 'Biography', 'Religion', 'Politics', 'American History']", "['Novels', 'Fiction', 'Literature', 'Drama', 'Egypt', 'Suspense', 'Unfinished']", "['Catholic', 'Religion']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Retellings', 'Fiction', 'Magic']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Contemporary', 'Autistic Spectrum Disorder', 'Teen', 'Coming Of Age']", "['Horror', 'Audiobook', 'Paranormal', 'Fiction', 'Ghosts', 'Supernatural', 'Thriller']", "['Graphic Novels', 'Comics', 'Science Fiction', 'Fiction', 'Dystopia', 'Graphic Novels Comics', 'Comic Book']", "['Fiction', 'Contemporary', 'Chick Lit', 'Drama', 'Adult Fiction', 'Adult', 'Realistic Fiction']", "['Nonfiction', 'Science', 'Politics', 'Skepticism', 'Psychology', 'Sociology', 'Philosophy']", "['Biography', 'Business', 'Nonfiction', 'Autobiography', 'Memoir', 'Entrepreneurship', 'Finance']", "['Fiction', 'Historical Fiction', 'Historical', 'War', 'Audiobook', 'Literary Fiction', 'World War II']", "['Sports', 'Leadership', 'Nonfiction', 'Self Help', 'Personal Development', 'Christian', 'Religion']", "['Classics', 'Historical Fiction', 'Gothic', 'Horror', 'Fiction', 'Romance', '19th Century']", "['Literature', 'Dutch Literature', 'Roman', 'Iran', 'Novels', 'Fiction']", "['Nonfiction', 'Politics', 'History', 'Presidents', 'Audiobook', 'Biography']", "['Nonfiction', 'Australia', 'Poetry', 'Anthologies', 'Memoir', 'Literary Criticism', 'History']", "['Fiction', 'Historical Fiction', 'War', 'World War II', 'France', 'Historical', 'Holocaust']", "['Fantasy', 'Graphic Novels', 'Seinen', 'Comics', 'Supernatural', 'Mystery', 'Manga']", "['Biography', 'Womens', 'History']", "['Nonfiction', 'Memoir', 'Biography', 'Education', 'School', 'Travel', 'Inspirational']", "['Novels', 'Fiction', 'Philosophy', 'Science Fiction', 'Literature', 'Audiobook', 'Short Stories']", "['Fiction', 'Fantasy', 'Horror', 'Paranormal', 'Magical Realism']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Coming Of Age', 'Young Adult Contemporary']", "['Picture Books', 'Robots', 'Science Fiction', 'Childrens', 'Humor', 'Art', 'Fantasy']", "['Nonfiction', 'Psychology', 'Theatre', 'Art', 'Comedy', 'Communication', 'Writing']", "['Science', 'Nonfiction', 'Christian', 'Philosophy', 'Religion', 'Theology', 'Christianity']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Magic', 'Fairies', 'Young Adult Fantasy']", "['Romance', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Paranormal Romance', 'Angels', 'Vampires']", "['Business', 'Leadership', 'Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Buisness']", "['Novels', 'Fiction', 'Crime', 'Egypt', 'Mystery', 'Thriller', 'Literature']", "['Young Adult', 'Paranormal', 'Romance', 'Fantasy', 'Ghosts', 'Supernatural', 'Paranormal Romance']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Espionage', 'Suspense', 'Adventure']", "['Fiction', 'Spanish Literature', 'Politics', 'Latin American']", "['Cycling', 'Nonfiction', 'Sports', 'Biography', 'Bicycles', 'Belgium', 'Memoir']", "['Thriller', 'Fiction', 'Mystery', 'Historical Fiction', 'Suspense', 'Mystery Thriller', 'Adventure']", "['Paranormal', 'Mystery', 'Romance', 'Paranormal Romance', 'Romantic Suspense', 'Suspense', 'Thriller']", "['Chick Lit', 'Romance', 'Fiction', 'Adult', 'Contemporary', 'Contemporary Romance', 'Audiobook']", "['Nonfiction', 'Photography', 'Art', 'Biography', 'History', 'Memoir', 'American History']", "['Nonfiction', 'Psychology', 'Science', 'Business', 'Self Help', 'Neuroscience', 'Economics']", "['Horror', 'Short Stories', 'Fiction', 'Weird Fiction', 'Ghost Stories', 'Anthologies', 'Gothic']", "['Horror', 'Short Stories', 'Pulp']", "['True Crime', 'Nonfiction', 'Psychology', 'Crime', 'Social Issues', 'Sociology']", "['Science Fiction', 'Young Adult', 'Time Travel', 'Historical Fiction', 'Fantasy', 'Fiction', 'Middle Grade']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Regency', 'Chick Lit', 'Historical Romance']", "['Nonfiction', 'Memoir', 'History', 'Biography', 'Historical', 'Biography Memoir', 'Audiobook']", "['Bizarro Fiction', 'Horror', 'Humor']", "['Historical Fiction', 'Fiction', 'Russia', 'Historical', 'Mystery', 'Romance', 'Literature']", "['History', 'Nonfiction', 'Biography', 'Autobiography', 'World War II', 'Historical']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Supernatural', 'Paranormal Romance']", "['China', 'Historical']", "['Comics', 'Humor', 'Graphic Novels', 'Fiction', 'Comic Strips', 'Comic Book', 'Webcomic']", "['Historical Romance', 'Russia', 'French Revolution', 'Espionage']", "['Historical Romance', 'Historical', 'Westerns', 'Romance', 'Western Romance', 'Historical Fiction']", "['Fantasy', 'Fiction', 'Young Adult', 'Short Stories', 'Childrens', 'Magic', 'Middle Grade']", "['Horror', 'British Literature', 'Fiction']", "['Novels', 'Fiction', 'Indonesian Literature', 'Family', 'Romance', 'Drama', 'Love']", "['Fantasy', 'Fiction', 'Magical Realism', 'Science Fiction', 'Adult', 'Urban Fantasy', 'Russia']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Magical Realism', 'Steampunk', 'Science Fiction Fantasy', 'Science Fiction']", "['Fiction', 'Chick Lit', 'Romance', 'Contemporary', 'Adult', 'Audiobook', 'Family']", "['Juvenile', 'Young Adult']", "['Fantasy', 'Young Adult', 'Horror', 'Paranormal', 'Urban Fantasy', 'Fiction', 'German Literature']", "['Nonfiction', 'Biography', 'Autobiography', 'Memoir', 'Irish Literature', 'Chess', 'Literature']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Vampires', 'Mythology', 'Urban Fantasy']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Short Stories', 'Adventure']", "['Horror', 'Zombies', 'Thriller', 'Fiction', 'Science Fiction', 'Audiobook', 'Action']", "['Young Adult', 'Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'New Adult', 'Adult']", "['Picture Books', 'Childrens', 'Animals', 'Humor', 'Fiction', 'Counting', 'Juvenile']", "['Young Adult', 'Fiction', 'Dystopia', 'Romance', 'Contemporary', 'Science Fiction', 'Childrens']", "['Science', 'Nonfiction', 'Evolution', 'Biology', 'History', 'Popular Science', 'Religion']", "['Mystery', 'Thriller', 'Fiction', 'Suspense', 'Mystery Thriller', 'Crime', 'Horror']", "['Picture Books', 'Biography', 'Africa', 'Nonfiction', 'Childrens', 'Environment', 'History']", "['Christian Fiction', 'Christian', 'Fiction', 'Romance', 'Christian Romance', 'Contemporary', 'Adult Fiction']", "['Media Tie In']", "['Novels', 'Fiction', 'Classics', 'Romanian Literature', 'Literature', 'Historical Fiction', 'Dystopia']", "['Nonfiction', 'History', 'War', 'Feminism', 'Russia', 'World War II', 'Historical']", "['Young Adult', 'Historical Fiction', 'Mystery', 'Historical', 'Fiction', 'Romance', 'Teen']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Adult', 'Fiction', 'Audiobook']", "['Politics', 'Nonfiction', 'Biography', 'History', 'Presidents', 'American', 'Political Science']", "['History', 'Nonfiction', 'American History', 'Ireland', 'Irish Literature', 'Historical', 'American']", "['Graphic Novels', 'Comics', 'Fiction', 'Graphic Novels Comics', 'Bande Dessinée', 'Comic Book', 'Art']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Fae', 'Werewolves', 'Paranormal Romance']", "['Feminism', 'Nonfiction', 'Politics', 'Sociology', 'Social Justice', 'Womens', 'Gender']", "['Fiction', 'Africa', 'Historical Fiction', 'Book Club', 'Contemporary', 'Adult Fiction', 'Adult']", "['History', 'Africa', 'Military Fiction', 'South Africa', 'War', 'Nonfiction', 'Military History']", "['Books About Books', 'Nonfiction', 'History', 'Education', 'Literature', 'Classics', 'American History']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Thriller', 'Audiobook']", "['Race', 'Nonfiction', 'Sociology', 'Science', 'Research', 'Social Justice', 'Academic']", "['Travel']", "['Mystery', 'Fiction', 'Fantasy', 'Steampunk', 'Crime', 'Magical Realism', 'Noir']", "['Fantasy', 'Dragons', 'Romance', 'Erotica', 'Paranormal Romance', 'Paranormal', 'Menage']", "['Philosophy', 'Nonfiction', 'Classics', 'Self Help', 'Psychology', 'History', 'Ancient']", "['Gardening', 'Nonfiction']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective', 'British Literature', 'Audiobook']", "['Fiction', 'Horror', 'Thriller', 'Suspense', 'Paranormal', 'Mystery Thriller']", "['Childrens', 'Fantasy', 'Fiction', 'Middle Grade', 'Mystery', 'Animals', 'Humor']", "['Comics', 'Marvel', 'Graphic Novels', 'X Men', 'Graphic Novels Comics', 'Superheroes', 'Comic Book']", "['Mystery', 'Fiction', 'Audiobook', 'Canada', 'Crime', 'Mystery Thriller', 'Adult']", "['Mystery', 'Westerns', 'Fiction', 'Crime', 'Mystery Thriller', 'Humor']", "['Novels', 'Fiction', 'Indonesian Literature', 'Romance', 'Adventure', 'Drama', 'Young Adult']", "['Mythology', 'Classics', 'Fantasy', 'Fiction', 'Greek Mythology', 'Childrens', 'Short Stories']", "['Fiction', 'Classics', 'British Literature', 'Literary Fiction', 'Novels', '20th Century', 'Literature']", "['Fiction', 'Mystery', 'Crime', 'Contemporary', 'Literary Fiction', 'Novels', 'Historical Fiction']", "['Fantasy', 'Fiction', 'Horror', 'Urban Fantasy', 'Magical Realism', 'Paranormal', 'Literature']", "['Romance', 'Young Adult', 'Contemporary', 'High School', 'Contemporary Romance', 'Fiction', 'New Adult']", "['Fiction', 'Russia', 'Russian Literature', 'Classics', 'Literature', 'Dystopia', 'Novels']", "['Nonfiction', 'Self Help', 'Personal Development', 'Audiobook']", "['Fiction', 'Plays', 'Contemporary', 'Drama', 'Historical Fiction', 'Suspense', 'Thriller']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'British Literature', 'Mystery Thriller', 'Suspense']", "['Fiction', 'LGBT', 'Finnish Literature', 'Contemporary', 'Queer', 'Mental Health', 'Romance']", "['Mystery', 'Christmas', 'Fiction', 'Holiday', 'Cozy Mystery', 'British Literature', 'Adult']", "['Horror', 'Fiction', 'Gothic', 'Weird Fiction', 'The United States Of America', 'Classics']", "['Fantasy', 'Young Adult', 'Fiction', 'Historical Fiction', 'Adventure', 'Childrens', 'Historical']", "['Politics', 'Biography', 'History', 'Nonfiction', 'Photography', 'Memoir']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adventure', 'Audiobook', 'Magic']", "['Horror', 'Fiction', 'Gothic', 'Thriller', 'Supernatural', 'Mystery', 'Paranormal']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Magic', 'Time Travel', 'Fiction']", "['Marvel', 'Nonfiction', 'Comics', 'Graphic Novels', 'Superheroes', 'Reference', 'History']", "['History', 'Science', 'Nonfiction', 'Biography', 'History Of Science', 'Philosophy', 'Popular Science']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Teen', 'Music']", "['Sociology', 'Psychology', 'Nonfiction']", "['Memoir']", "['M M Romance', 'Historical', 'Historical Fiction', 'Historical Romance']", "['Fiction', 'Novels', 'Literature', 'American', '21st Century', 'Classics', 'Unfinished']", "['Romance', 'Romantic Suspense', 'Military Fiction', 'Erotica', 'Contemporary Romance', 'Suspense', 'Contemporary']", "['Fantasy', 'Young Adult', 'Fiction', 'Humor', 'Middle Grade', 'Adventure', 'Childrens']", "['Science Fiction', 'Young Adult']", "['Urban Fantasy', 'Vampires', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Adult']", "['Fantasy', 'Young Adult', 'Magic', 'Short Stories', 'Romance', 'Novella', 'High Fantasy']", "['Sports', 'Nonfiction', 'Basketball', 'History', 'Pop Culture', 'Humor', 'Biography']", "['Memoir', 'Nonfiction', 'Biography', 'Relationships', 'Marriage']", "['Fiction', 'Adventure', 'Historical Fiction', 'Pirates', 'Pulp', 'Action', 'Historical']", "['Poetry', 'Literature', 'Classics', 'Nonfiction', 'Egypt', 'Philosophy', 'Art']", "['Horror', 'Short Stories', 'Ghost Stories', 'Classics', 'Fiction', 'Fantasy', 'Gothic']", "['Horror', 'Short Stories', 'Gothic', 'Classics', 'Irish Literature', 'Ghost Stories', 'Victorian']", "['Thriller', 'Suspense', 'Conspiracy Theories', 'Mystery', 'Legal Thriller', 'Fiction']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Demons', 'Fantasy', 'Vampires', 'Urban Fantasy']", "['Fiction', 'Ukrainian Literature', 'Classics', 'Ukraine', 'Romance', 'Historical']", "['Nonfiction', 'Natural History', 'Science', 'Nature', 'Animals']", "['Biography', 'History', 'Nonfiction', 'Politics', 'Writing', 'American History', 'Presidents']", "['Science Fiction', 'Horror', 'Fiction', 'Pulp']", "['History', 'Nonfiction', 'Religion', 'Medieval', 'Medieval History', 'Historical', 'Science']", "['Historical Fiction', 'Ireland', 'Fiction', 'Historical', 'Irish Literature', '19th Century', 'Family']", "['Nonfiction', 'Humor']", "['Romance', 'Indonesian Literature', 'Novels', 'Fiction', 'Young Adult', 'Contemporary', 'Chick Lit']", "['Nonfiction', 'Humor', 'Books About Books']", "['Young Adult', 'Romance', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Chick Lit', 'Realistic Fiction']", "['Young Adult', 'Romance', 'Contemporary', 'Mental Health', 'Fiction', 'Realistic Fiction', 'Mental Illness']", "['Historical Fiction', 'Fiction', 'Roman']", "['Mystery', 'Thriller', 'Suspense', 'Crime', 'Fiction', 'Mystery Thriller', 'Detective']", "['Lds Fiction', 'Romance', 'Lds', 'Mystery', 'Suspense', 'Fiction', 'Christian Fiction']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Fiction', 'Demons', 'Magic', 'Supernatural']", "['Fantasy', 'Young Adult', 'Fiction', 'Mythology', 'Magic', 'Adventure', 'Urban Fantasy']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Mystery Thriller', 'Spy Thriller', 'Suspense']", "['Fiction', 'Contemporary', 'Humor', 'Novels', 'American', 'Literature', 'Suspense']", "['Fiction', 'France', 'Novels', 'French Literature', 'Philosophy', 'Literature', 'Death']", "['Fantasy', 'France', 'Young Adult', 'Fiction', 'Roman', 'Childrens', 'Adventure']", "['Historical Fiction', 'Fiction', 'Historical', 'Adult Fiction', 'Asia', 'Cultural', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'High Fantasy', 'Romance', 'Adventure', 'Historical']", "['Nonfiction', 'Philosophy', 'Psychology', 'Sociology', 'Society', 'Politics']", "['Young Adult', 'Fiction', 'Adventure', 'Thriller', 'Mystery', 'Espionage', 'Action']", "['Novels', 'Fiction', 'Literature', 'Classics', 'Politics', 'Short Stories', 'Historical Fiction']", "['Fiction', 'Historical Fiction', 'Historical', 'Adult', 'Adult Fiction', 'Contemporary', 'Audiobook']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Demons', 'Vampires', 'Fantasy', 'Urban Fantasy']", "['Fantasy', 'Dragons', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adventure', 'Adult']", "['Fantasy', 'Fiction', 'Science Fiction', 'Mystery', 'Crime', 'Urban Fantasy', 'Speculative Fiction']", "['Historical Fiction', 'Fiction', 'Horror', 'Historical', 'Vampires', 'Fantasy', 'Paranormal']", "['Fiction', 'Fantasy', 'Japan', 'Short Stories', 'Magical Realism', 'Speculative Fiction', 'Science Fiction']", "['Nonfiction', 'Politics']", "['Film', 'France', 'Fiction', 'Literature', 'Fantasy', 'French Literature', 'Plays']", "['Holiday', 'Christmas', 'Contemporary', 'Romance']", "['Fiction', 'Crime', 'Mystery', 'Thriller', 'Noir', 'Historical Fiction', 'Mystery Thriller']", "['Comics', 'Politics', 'Humor']", "['Young Adult', 'Chick Lit', 'Fiction', 'Contemporary', 'Romance', 'Realistic Fiction', 'Teen']", "['Fiction', 'Dutch Literature', 'Literature', 'Roman', 'Novels', 'Belgian', 'Collections']", "['Manga', 'Romance', 'Shojo', 'Graphic Novels', 'Comics', 'Humor', 'Young Adult']", "['Paranormal Romance', 'Paranormal', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Adult', 'Fiction']", "['Horror', 'Short Stories', 'Fiction', 'Classics', 'Collections']", "['Short Stories', 'Fiction', 'Music', 'Contemporary', 'Literary Fiction', 'Japan', 'Literature']", "['Zombies', 'Horror', 'Apocalyptic', 'Fiction', 'Science Fiction', 'Post Apocalyptic', 'Dystopia']", "['Short Stories', 'Fiction', 'Contemporary', 'Noir', 'American', 'Crime', 'Literary Fiction']", "['Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Time Travel', 'Science Fiction Fantasy', 'Space Opera']", "['Science Fiction', 'Short Stories', 'Fiction', 'Classics', 'Philosophy', 'Science Fiction Fantasy', 'Literature']", "['Horror', 'Weird Fiction', 'Fantasy', 'Fiction', 'Classics', 'Speculative Fiction']", "['Fiction', 'Chick Lit', 'Contemporary', 'Womens Fiction', 'Family', 'Adult', 'Adult Fiction']", "['Fiction', 'Indonesian Literature', 'Romance', 'Novels', 'Short Stories', 'Literature', 'Poetry']", "['Race', 'Politics', 'Nonfiction', 'Social Justice', 'Law', 'Economics', 'Sociology']", "['Music', 'Biography', 'Nonfiction', 'History']", "['Romance', 'Interracial Romance']", "['BDSM', 'M M Romance', 'Science Fiction', 'Aliens', 'Erotica', 'Fantasy', 'Dark']", "['History', 'Nonfiction', 'Canada', 'Politics', 'Sociology', 'Philosophy', 'Academic']", "['Suspense', 'Mystery']", "['Fantasy', 'Middle Grade', 'Fiction', 'Realistic Fiction', 'Childrens', 'Young Adult', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Witches', 'Mystery', 'Historical', 'Paranormal']", "['Fantasy', 'Mythology', 'Young Adult', 'Fiction', 'Middle Grade', 'Short Stories', 'Adventure']", "['Thriller', 'Crime', 'Fiction', 'Mystery', 'German Literature', 'Horror', 'Mystery Thriller']", "['Canada', 'Fiction', 'Historical Fiction', 'World War II', 'British Literature', 'Historical']", "['Nonfiction', 'Memoir', 'Canada', 'Biography', 'Audiobook', 'Biography Memoir', 'History']", "['Doctor Who', 'Science Fiction', 'Audiobook', 'Fiction', 'Time Travel', 'Media Tie In', 'Aliens']", "['History', 'Nonfiction', 'World War II', 'Survival', 'Adventure', 'War', 'Military Fiction']", "['M M Romance', 'Contemporary', 'Romance', 'Yaoi', 'Erotica', 'Gay', 'LGBT']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Magic', 'Mystery', 'Adventure']", "['Vampires', 'Fantasy', 'Paranormal', 'Paranormal Romance', 'Romance', 'Urban Fantasy', 'Fiction']", "['Fantasy', 'Young Adult', 'Canada', 'Time Travel']", "['Fiction', 'Crime', 'Noir', 'Mystery', 'Thriller', 'Novels', 'Literary Fiction']", "['Fiction', 'Historical Fiction', 'Mystery', 'Fantasy', 'Spain', 'Books About Books', 'Magical Realism']", "['Short Stories']", "['Fiction', 'Post Apocalyptic', 'Science Fiction', 'Dystopia', 'Apocalyptic', 'Thriller', 'Audiobook']", "['Picture Books', 'Childrens', 'Fantasy', 'Monsters', 'Animals', 'Fiction', 'Nature']", "['Fiction', 'Historical Fiction', 'Historical', 'Mystery', 'Romance', 'Book Club', 'Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Adventure', 'Young Adult Fantasy', 'Fiction', 'High Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Middle Grade', 'Adventure', 'Childrens']", "['Biography', 'History', 'Literature', 'Politics', 'War', 'Media Tie In', 'Mystery']", "['Young Adult', 'Vampires', 'Fantasy', 'Angels', 'Paranormal', 'Romance', 'Supernatural']", "['Nonfiction', 'Health', 'Self Help', 'Science', 'Food', 'Psychology', 'Feminism']", "['History', 'Biography', 'Nonfiction', 'Historical', 'British Literature', 'Biography Memoir', '18th Century']", "['Thriller', 'Horror', 'Fiction', 'Suspense', 'Mystery', 'Mystery Thriller', 'Crime']", "['Fiction', 'Short Stories', 'Philosophy', 'Fantasy', 'Religion', 'Science Fiction', 'Death']", "['China']", "['Fiction', 'Historical Fiction', 'Ireland', 'Romance', 'Historical', 'Irish Literature', 'Audiobook']", "['Chick Lit']", "['Fiction', 'Literary Fiction', 'Literature', 'Novels', 'Contemporary', 'Historical Fiction', 'American']", "['Horror', 'Fiction', 'Science Fiction', 'Pulp', 'Animals', 'Adventure', 'Monsters']", "['Nonfiction', 'Memoir', 'Biography', 'Humor', 'Audiobook', 'Autobiography', 'Biography Memoir']", "['Africa', 'Nonfiction', 'France', 'Biography', 'Nobel Prize', 'French Literature', 'Memoir']", "['Paranormal', 'Paranormal Romance', 'Shapeshifters', 'Romance', 'Erotica', 'Fantasy', 'Contemporary']", "['Biography', 'Nonfiction', 'History', 'Russia', 'Russian Literature', 'Literature', 'Biography Memoir']", "['Religion', 'Theology']", "['Fiction', 'Chick Lit', 'Contemporary', 'Family', 'College', 'Adult', 'Divorce']", "['Geography', 'Picture Books']", "['Horror', 'Fiction', 'Mystery', 'Science Fiction', 'Dark', 'Classics', 'Literature']", "['Christian', 'Theology', 'Reference', 'Christianity', 'Religion', 'Nonfiction', 'Faith']", "['Comics', 'Graphic Novels', 'Fiction', 'Graphic Novels Comics', 'Comix', 'Comic Book', 'Canada']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Detective', 'Suspense', 'Mystery Thriller']", "['Nonfiction', 'Memoir', 'Biography']", "['Cookbooks', 'Cooking', 'Food', 'Christmas', 'Nonfiction', 'Reference', 'Food and Drink']", "['Chick Lit', 'Romance', 'Contemporary', 'Fiction', 'Adult', 'Time Travel', 'Contemporary Romance']", "['Young Adult', 'Realistic Fiction', 'Romance', 'LGBT', 'Contemporary', 'Teen', 'Young Adult Contemporary']", "['Memoir', 'Nonfiction', 'Humor', 'Chick Lit', 'Biography', 'Comedy', 'Audiobook']", "['Nonfiction', 'Health', 'Food', 'Nutrition']", "['Science', 'Physics', 'Nonfiction', 'History', 'Quantum Mechanics', 'History Of Science', 'Audiobook']", "['Comics', 'Graphic Novels', 'Fantasy', 'Horror', 'Fairy Tales', 'Comic Book', 'Graphic Novels Comics']", "['Fiction', 'Magical Realism', 'Fantasy', 'Romance', 'Chick Lit', 'Contemporary', 'Magic']", "['Fiction', 'Mystery', 'Humor', 'Contemporary', 'British Literature', 'Adult Fiction', 'Animals']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Humor']", "['Young Adult', 'Romance', 'Fiction', 'Teen']", "['Young Adult', 'Romance', 'Chick Lit', 'Fiction', 'Contemporary', 'Science Fiction', 'Teen']", "['Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Medical']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Holocaust', 'War', 'Historical', 'Middle Grade']", "['Biography', 'History', 'Biography Memoir', 'Social Justice', 'Nonfiction', 'Race', 'Memoir']", "['Nonfiction', 'Humor', 'Politics', 'Biography', 'Comedy', 'Memoir']", "['M M Romance', 'Mystery', 'Romance', 'Contemporary', 'Suspense', 'Amazon', 'LGBT']", "['Young Adult', 'Fiction', 'Contemporary', 'Mental Health', 'Realistic Fiction', 'Mental Illness', 'Teen']", "['Paranormal', 'Paranormal Romance', 'Vampires', 'Romance', 'Fantasy', 'Urban Fantasy', 'Novella']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Chick Lit', 'High School', 'Teen']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Action', 'Mystery Thriller', 'Suspense']", "['History', 'Biography', 'Nonfiction', 'Germany', 'Memoir', 'World War II', 'War']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Magic', 'High Fantasy', 'Adult', 'Elves']", "['M M Romance', 'Romance', 'Mystery', 'Contemporary', 'LGBT', 'Crime', 'Thriller']", "['Graphic Novels', 'Classics', 'Fiction', 'Science Fiction', 'Dystopia', 'Graphic Novels Comics', 'Young Adult']", "['Religion', 'Christian', 'Reference', 'Nonfiction', 'Christianity', 'Faith', 'Theology']", "['Classics', 'Fiction', 'Humor', 'Essays', 'Short Stories', 'Philosophy', 'School']", "['Christian', 'Nonfiction', 'Christianity', 'Christian Living', 'Faith', 'Christian Non Fiction', 'Theology']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Dragons', 'Magic']", "['Nonfiction', 'Biography', 'Travel', 'Italian Literature', 'Philosophy', 'Memoir', 'Asia']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Chick Lit', 'Fiction', 'Teen']", "['History', 'Medieval']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Medieval', 'Fantasy', 'British Literature']", "['Fantasy', 'Fiction', 'Fairy Tales', 'Retellings', 'Romance', 'Cinderella', 'Young Adult']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Magic', 'Supernatural', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Fairy Tales', 'Retellings', 'Magic', 'Fiction']", "['Fiction', 'Historical Fiction', 'War', 'Literary Fiction', 'Novels', 'Family', 'Historical']", "['Bulgarian Literature', 'Fiction', 'Bulgaria', 'Contemporary', 'Novels', 'Romance', 'Adventure']", "['Young Adult', 'Fantasy', 'Paranormal', 'Magic', 'Romance', 'Vampires', 'Witches']", "['Philosophy', 'Nonfiction', 'Psychology', 'Sociology', 'Essays', 'Business', 'Self Help']", "['Novels', 'Fiction', 'Egypt', 'Literature', 'Classics', 'Historical Fiction', 'Africa']", "['Fantasy', 'Dragons', 'Fiction', 'Science Fiction Fantasy', 'Novels']", "['Young Adult', 'Middle Grade', 'Fiction', 'Science Fiction', 'Mystery', 'Time Travel', 'Fantasy']", "['Fantasy', 'LGBT', 'Fiction', 'Historical Fiction', 'Lesbian', 'Queer', 'Romance']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Action', 'Suspense', 'Mystery Thriller']", "['Bulgarian Literature', 'Short Stories', 'Fiction', 'Classics', 'Bulgaria', 'School', 'Read For School']", "['Mystery', 'Fiction', 'Thriller', 'Suspense', 'Audiobook', 'Mystery Thriller', 'Adult']", "['Fiction', 'Novels', 'Thriller', 'Contemporary', 'Philosophy', 'Romance', 'Mystery']", "['History', 'Nonfiction', 'Science', 'Environment', 'United States']", "['Zombies', 'Horror', 'Post Apocalyptic', 'Fiction', 'Apocalyptic', 'Dystopia', 'Science Fiction']", "['Fiction', 'Classics', 'Humor', 'Romance', 'Literature']", "['Fiction', 'Australia', 'Contemporary', 'Book Club', 'Novels', 'Literature', 'Literary Fiction']", "['Fiction', 'Cats', 'Animals', 'Classics', 'Humor', 'Novella', 'Fantasy']", "['Mystery', 'Fiction', 'Suspense', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Crime']", "['Vampires', 'Paranormal', 'Paranormal Romance', 'Fantasy', 'Romance', 'Urban Fantasy', 'Humor']", "['Vampires', 'Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Supernatural', 'Paranormal Romance']", "['Christian Fiction', 'Historical Fiction', 'Romance', 'Christian', 'Christian Romance', 'Historical', 'Fiction']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Demons', 'Fantasy', 'Mythology', 'Adult']", "['Young Adult', 'Poetry', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Banned Books', 'LGBT']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Demons', 'Paranormal Romance', 'Romance', 'Fiction']", "['Football', 'Sports', 'Biography', 'Nonfiction']", "['Fiction', 'Humor', 'Mystery']", "['Bizarro Fiction', 'Horror', 'Fantasy']", "['Fiction', 'Chick Lit', 'Romance', 'Historical Fiction', 'Fashion', 'Contemporary', 'Adult']", "['Politics', 'History', 'Biography']", "['Origami', 'Nonfiction', 'Art', 'Crafts', 'Design']", "['Romance', 'Romantic Suspense', 'Suspense', 'Military Fiction', 'Contemporary', 'Fiction', 'Mystery']", "['Graphic Novels', 'Comics', 'Horror', 'Fairy Tales', 'Fantasy', 'Drama', 'Graphic Novels Comics']", "['M M Romance', 'Paranormal', 'Ghosts', 'Romance', 'M M Paranormal', 'Gay', 'LGBT']", "['Self Help', 'Nonfiction', 'Relationships', 'Love', 'Personal Development', 'Romance', 'Spirituality']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Vampires', 'Shapeshifters', 'Magic', 'Fiction']", "['Short Stories', 'Fiction', 'Africa', 'Contemporary', 'Nigeria', 'Feminism', 'African Literature']", "['Philosophy', 'Nonfiction', 'Animals', 'Memoir', 'Wolves', 'Nature', 'Biography']", "['M M Romance', 'Science Fiction', 'Romance', 'Fantasy', 'Historical', 'Military Fiction', 'Gay']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Chick Lit', 'Adult', 'Audiobook']", "['Classics', 'Fiction', 'Mystery', 'Gothic', 'Historical Fiction', 'Romance', 'Historical']", "['Vampires', 'Paranormal', 'Urban Fantasy', 'Paranormal Romance', 'Fantasy', 'Adult', 'Fiction']", "['Historical Fiction', 'Middle Grade', 'Historical', 'Juvenile', 'Childrens', 'Fiction', 'Young Adult']", "['Philosophy', 'Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Spirituality', 'History']", "['Vampires', 'Paranormal', 'Romance', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Humor']", "['Nonfiction', 'True Crime', 'History', 'Crime', 'Audiobook', 'Psychology', 'Journalism']", "['History', 'Nonfiction', 'Holocaust']", "['Politics', 'Nonfiction', 'History', 'Philosophy', 'Political Science', 'American History', 'Economics']", "['Theology']", "['Mystery', 'Thriller', 'Horror', 'Suspense', 'Fiction', 'Supernatural', 'Mystery Thriller']", "['Fantasy', 'Romance', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Fantasy Romance', 'Erotica']", "['Art', 'Nonfiction', 'Horror', 'Gothic', 'Goth']", "['Religion', 'Philosophy', 'Nonfiction', 'Islam', 'Atheism', 'Theology', 'Egypt']", "['Fantasy', 'Horror', 'Fiction', 'Epic Fantasy', 'Epic', 'Demons', 'Amazon']", "['Novels', 'Fiction', 'Classics', 'Literature', 'Egypt', 'Media Tie In', '20th Century']", "['Realistic Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Contemporary', 'Chick Lit']", "['Nonfiction', 'Biography', 'Memoir', 'Medicine']", "['Fantasy', 'Horror', 'Fiction', 'Steampunk', 'Humor', 'Urban Fantasy', 'Paranormal']", "['Fantasy', 'Urban Fantasy', 'Horror', 'Fiction', 'Paranormal', 'Supernatural', 'Mystery']", "['Fiction', 'Mystery', 'Religion', 'Spirituality', 'Philosophy', 'Historical', 'Christian Fiction']", "['Historical Fiction', 'Jewish', 'Fiction', 'Photography']", "['Fiction', 'Magical Realism', 'Fantasy', 'Contemporary', 'Audiobook', 'Adult Fiction', 'Coming Of Age']", "['Self Help', 'Spirituality']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Chick Lit', 'Realistic Fiction']", "['Russia', 'Fiction', 'Mystery', 'Russian Literature', 'Detective', 'Historical Fiction', 'Science Fiction']", "['Science', 'Nonfiction', 'Biology', 'Nature', 'History', 'Ecology', 'Animals']", "['Family', 'Parenting']", "['Young Adult', 'Fantasy', 'Paranormal', 'Angels', 'Romance', 'Supernatural', 'Urban Fantasy']", "['Fantasy', 'Steampunk', 'Dark Fantasy', 'Fiction', 'Science Fiction', 'Horror', 'Science Fiction Fantasy']", "['Menage', 'Erotica', 'BDSM', 'M M F', 'Romance', 'M M Romance', 'Erotic Romance']", "['Horror', 'Fiction', 'Fantasy', 'Zombies', 'Humor', 'Romance', 'Classics']", "['Nonfiction', 'Dutch Literature', 'Biography', 'Memoir', 'Contemporary', 'Autobiography', 'Roman']", "['Mythology', 'Young Adult', 'Fantasy', 'Romance', 'Greek Mythology', 'Paranormal', 'Fiction']", "['Fantasy', 'Urban Fantasy', 'LGBT', 'Science Fiction', 'Fiction', 'Queer', 'Dystopia']", "['Fiction', 'Mystery', 'Crime', 'Novels', 'Noir', 'Literature', 'American']", "['Manga', 'Vampires', 'Fantasy', 'Graphic Novels', 'Fiction', 'Horror', 'Urban Fantasy']", "['Fiction', 'Historical Fiction', 'New York', 'Book Club', 'Novels', 'Literary Fiction', 'Contemporary']", "['Fantasy', 'Young Adult', 'Vampires', 'Paranormal', 'Fiction', 'Romance', 'Young Adult Fantasy']", "['Novels', 'Literature', 'Fiction', 'Classics', 'Media Tie In', 'Romance']", "['Fiction', 'France', 'Nobel Prize', 'Africa', 'Novels', 'Mauritius', 'Historical Fiction']", "['Manga', 'Graphic Novels', 'Josei', 'Comics', 'Fiction', 'Graphic Novels Manga', 'Japanese Literature']", "['Fiction', 'Novels', 'Literature', 'Egypt', 'Classics', 'Historical Fiction', 'Egyptian Literature']", "['Novels', 'Fiction', 'Literature', '20th Century', 'Classics', 'Egyptian Literature', 'Media Tie In']", "['Romance', 'Historical Fiction', 'Fiction', 'Historical Romance', 'Historical', 'Regency', 'Chick Lit']", "['Historical Fiction', 'Fiction', 'China', 'Historical', 'Asian Literature', 'Adult Fiction', 'Adult']", "['Fantasy', 'Fiction', 'Classics', 'Magical Realism', 'Historical Fiction', 'Medieval', 'Science Fiction Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'British Literature', 'Adult', 'Historical Romance']", "['Fiction', 'Magical Realism', 'Classics', 'Novels', 'Literature', 'Latin American', 'Spanish Literature']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Adult', 'Fiction', 'Regency']", "['Erotica', 'Romance', 'Contemporary', 'Menage', 'Adult', 'Dark', 'BDSM']", "['LGBT', 'Young Adult', 'Fiction', 'Queer', 'Romance', 'Lesbian', 'Abuse']", "['Realistic Fiction', 'Middle Grade', 'Young Adult', 'Fiction', 'Contemporary', 'Childrens', 'Juvenile']", "['Young Adult', 'LGBT', 'Romance', 'Fiction', 'Contemporary', 'Banned Books', 'Realistic Fiction']", "['Fiction', 'Historical Fiction', 'Mystery', 'Art', 'Historical', 'Contemporary', 'Romance']", "['Fantasy', 'Middle Grade', 'Fiction', 'Childrens', 'Adventure', 'Young Adult', 'Dragons']", "['Self Help', 'Nonfiction', 'Human Development', 'Historical Romance', 'Psychology', 'Personal Development', 'Audiobook']", "['Fiction', 'Historical Fiction', 'France', 'War', 'French Literature', 'Roman', 'Contemporary']", "['Biography', 'Literature', 'Short Stories', 'Nonfiction', 'Egypt', 'Philosophy', 'Autobiography']", "['Self Help', 'Nonfiction', 'Psychology', 'Relationships', 'Health', 'Mental Health', 'Personal Development']", "['Fiction', 'Short Stories', 'Music', 'Spanish Literature', 'Literature', 'Classics', 'Latin American Literature']", "['Health', 'Self Help', 'Psychology']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Fae', 'Romance', 'Paranormal Romance', 'Magic']", "['Science Fiction', 'Fiction', 'Dystopia', 'Steampunk', 'Post Apocalyptic', 'Speculative Fiction', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Iran', 'Romance', 'Historical', 'Cultural', 'Coming Of Age']", "['Young Adult', 'Mystery', 'Fiction', 'Thriller', 'Adventure', 'Christian', 'Christian Fiction']", "['History', 'Nonfiction', 'Islam', 'Science', 'Religion', 'Medieval', 'Philosophy']", "['Young Adult', 'Paranormal', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Werewolves', 'Supernatural']", "['Chick Lit', 'Fiction', 'Romance', 'Adult', 'Roman', 'Humor', 'Contemporary']", "['Swedish Literature', 'Classics', 'Fiction', 'Nobel Prize', 'Scandinavian Literature', 'Historical Fiction', 'Literature']", "['Horror', 'Fiction', 'Thriller', 'Supernatural', 'Paranormal', 'Mystery', 'Fantasy']", "['Young Adult', 'LGBT', 'Romance', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Gay']", "['Fiction', 'Crime', 'Humor', 'Politics', 'Americana', 'The United States Of America', 'Literary Fiction']", "['Science', 'Nonfiction', 'History', 'Evolution', 'Anthropology', 'Biology', 'Genetics']", "['Science', 'Nonfiction', 'Paranormal', 'Psychology', 'Esp', 'Spirituality']", "['Fantasy', 'Fiction', 'Audiobook', 'High Fantasy', 'Adventure', 'Adult', 'Polish Literature']", "['Fiction', 'Historical Fiction', 'Classics', 'Nobel Prize', 'Literature', 'Historical', 'Novels']", "['Nonfiction', 'Essays', 'Politics', 'History', 'Islam', 'Terrorism', 'Religion']", "['Childrens', 'Fantasy']", "['Fiction', 'Historical Fiction', 'Finnish Literature', 'Historical', 'Contemporary', 'Novels', 'Scandinavian Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Humor', 'Inspirational', 'Biography Memoir', 'Audiobook']", "['Middle Grade', 'Childrens', 'Realistic Fiction', 'Fiction', 'Graphic Novels', 'Humor', 'Young Adult']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Urban Fantasy', 'Vampires', 'Adult']", "['Fiction', 'Novels', 'Adult Fiction', 'Contemporary', 'Literary Fiction', 'Unfinished', 'Adult']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Humor', 'Adult', 'Paranormal']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Ghosts', 'Mystery', 'Supernatural']", "['Historical Fiction', 'Fiction', 'Horror', 'Gothic', 'Mystery', 'Historical', 'Paranormal']", "['Horror', 'Fiction', 'Vampires', 'Fantasy', 'Science Fiction', 'Thriller', 'Paranormal']", "['Mystery', 'Fiction', 'Humor', 'Media Tie In', 'Crime', 'Comedy', 'Tv']", "['Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Werewolves', 'Fiction', 'Paranormal Romance']", "['Politics', 'Nonfiction', 'History', 'Humor', 'Philosophy', 'Comedy', 'American']", "['Fiction', 'Novels', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Coming Of Age', 'Adult']", "['Fiction', 'Thriller', 'Mystery', 'Action', 'Suspense', 'Espionage', 'Spy Thriller']", "['Bulgarian Literature', 'Fiction', 'Audiobook', 'Classics', 'Adventure', '20th Century', 'Poetry']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'Fiction', 'High Fantasy', 'Paranormal']", "['Art', 'Music', 'Design', 'Nonfiction', 'Art Design']", "['Romantic Suspense', 'Romance', 'Contemporary Romance', 'Contemporary', 'Suspense', 'Mystery']", "['Romantic Suspense', 'Contemporary', 'Romance', 'Contemporary Romance', 'Mystery', 'Crime', 'Thriller']", "['Contemporary', 'Romance', 'Romantic Suspense', 'Contemporary Romance', 'Love', 'Fiction', 'Erotica']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Paranormal', 'Magic', 'Fiction', 'Mystery']", "['BDSM', 'Erotica', 'Romance', 'Menage', 'Contemporary', 'Erotic Romance', 'Adult']", "['Childrens', 'Animals', 'Picture Books']", "['Religion', 'Islam', 'Philosophy', 'Nonfiction', 'Politics', 'History', 'Sociology']", "['Fiction', 'Historical Fiction', 'Canada', 'Historical', 'Canadian Literature', 'Race', 'African American']", "['Fiction', 'Science Fiction', 'Canada', 'Contemporary', 'Novels', 'Dystopia', 'Literature']", "['Religion', 'Theology', 'Classics', 'Spirituality']", "['Fantasy', 'Adventure', 'Young Adult', 'Middle Grade', 'Magic', 'Fiction', 'Childrens']", "['Fantasy', 'Young Adult', 'Horror', 'Fiction', 'Paranormal', 'Magic', 'Adventure']", "['Nonfiction', 'Biography', 'Memoir', 'Book Club', 'Womens', 'Chick Lit', 'Biography Memoir']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Audiobook', 'Literary Fiction', 'Novels']", "['Fantasy', 'Fiction', 'Magic', 'Urban Fantasy', 'Young Adult', 'Audiobook', 'Adult']", "['Music', 'Russia', 'Art', 'Classical Music', 'Nonfiction']", "['Nonfiction', 'Memoir', 'History', 'Biography', 'Historical', 'Audiobook', 'Biography Memoir']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Amish', 'Mystery Thriller', 'Suspense']", "['Science', 'Nonfiction', 'Evolution', 'Biology', 'Religion', 'Atheism', 'Philosophy']", "['Fiction', 'Novels', 'Egypt', 'Literature', 'Classics', 'Philosophy', 'Africa']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Dark Fantasy', 'Magic', 'Adult']", "['Fantasy', 'Middle Grade', 'Childrens', 'Fiction', 'Adventure', 'Young Adult', 'Fairies']", "['Comics', 'Fiction']", "['Manga', 'Romance', 'Seinen', 'Graphic Novels', 'Abuse', 'Drama', 'Comics Manga']", "['Fiction', 'Southern', 'Historical Fiction', 'Contemporary', 'Audiobook', 'Coming Of Age', 'Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Magic', 'Paranormal', 'Fantasy Romance']", "['Young Adult', 'Dystopia', 'Fiction', 'Fantasy', 'Science Fiction', 'Romance', 'Audiobook']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Retellings', 'Magic', 'Mystery', 'Science Fiction Fantasy']", "['Manga', 'Romance', 'Graphic Novels', 'Young Adult', 'Comedy', 'Shojo', 'Humor']", "['Cookbooks', 'Parenting', 'Food', 'Cooking', 'Nonfiction', 'Nutrition', 'Reference']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Fiction', 'Supernatural', 'Urban Fantasy']", "['Historical Fiction', 'Australia', 'Fiction']", "['Nonfiction', 'History', 'Politics', 'Biography', 'Audiobook', 'Journalism', 'Travel']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Dystopia', 'Apocalyptic', 'Classics', 'Horror']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Historical Mystery', 'Crime', 'Audiobook']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Post Apocalyptic', 'Teen']", "['Fiction', 'Literature']", "['Czech Literature', 'Classics', 'Childrens', 'Animals', 'Nonfiction', 'Fairy Tales', 'Humor']", "['Fiction', 'Fantasy', 'Paranormal', 'Mystery', 'Contemporary', 'Ghosts', 'Magical Realism']", "['Fiction', 'Historical Fiction', 'Italian Literature', 'Italy', 'Contemporary', 'War', 'Novels']", "['Horror', 'Literature', 'French Literature']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Historical', 'Childrens', 'Coming Of Age']", "['Nonfiction', 'Vampires', 'Paranormal', 'Romance', 'Supernatural', 'Werewolves', 'Reference']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', '21st Century', 'Magic', 'Teen']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'African American', 'Historical Fiction']", "['Fiction', 'Classics', 'Literature', 'Greece', 'Historical Fiction', 'Novels', 'Historical']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Greece', 'Novels', 'Young Adult']", "['Nonfiction', 'True Crime', 'Sociology', 'Crime', 'History', 'Politics', 'Journalism']", "['Mystery', 'Fiction', 'Historical Fiction', 'Young Adult', 'Mystery Thriller', 'Audiobook', 'Crime']", "['Novels', 'Historical Fiction', 'Fiction', 'Literature', 'Historical', 'Classics', 'Unfinished']", "['Short Stories', 'Classics', 'Horror', 'Fiction', 'Dystopia', 'School', 'Read For School']", "['Fiction', 'Music', 'Contemporary', 'Romance', 'Humor', 'Novels', 'British Literature']", "['Fiction', 'Humor', 'Contemporary', 'Adult Fiction', 'Family', 'Adult', 'Book Club']", "['Mystery', 'Fiction', 'Crime', 'Danish', 'Thriller', 'Denmark', 'Mystery Thriller']", "['Fantasy', 'Fiction', 'Video Games', 'High Fantasy', 'Gaming', 'Dragons', 'Games']", "['Fantasy', 'Fiction', 'Magic', 'High Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Adult']", "['Paranormal Romance', 'Vampires', 'Paranormal', 'Romance', 'Fantasy', 'Fiction', 'Adult']", "['Young Adult', 'Paranormal', 'Ghosts', 'Fantasy', 'Supernatural', 'Romance', 'Urban Fantasy']", "['Fantasy', 'Fiction', 'Magical Realism', 'Paranormal', 'Romance', 'Contemporary', 'Adult Fiction']", "['History', 'Nonfiction', 'Native Americans', 'American History', 'American', 'Audiobook']", "['Fantasy', 'Animals', 'Fiction', 'Middle Grade', 'Childrens', 'Cats', 'Young Adult']", "['Religion', 'Nonfiction', 'Science', 'Christianity']", "['Nonfiction', 'Books About Books', 'True Crime', 'Biography', 'History', 'Crime', 'Mystery']", "['Fiction', 'Historical Fiction', 'Art', 'Novels', 'Literary Fiction', 'Adult Fiction', 'Contemporary']", "['Nonfiction', 'Parenting', 'Health', 'Adult', 'Education', 'Family', 'Feminism']", "['Fiction', 'Fantasy']", "['Islam', 'Religion', 'Philosophy']", "['Science Fiction', 'Fiction', 'Manga', 'Time Travel', 'War', 'Japan', 'Light Novel']", "['Nonfiction', 'Feminism', 'Social Justice', 'Womens', 'Politics', 'Sociology', 'Africa']", "['Young Adult', 'Paranormal', 'Fantasy', 'Ghosts', 'Mystery', 'Fiction', 'Romance']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Ghosts', 'Magic', 'Witches', 'Romance']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Fiction', 'Supernatural', 'Teen']", "['Nonfiction', 'Animals', 'Cats', 'Memoir', 'Biography', 'Biography Memoir', 'Adult']", "['Art', 'Nonfiction']", "['Nonfiction', 'Biography', 'Autobiography', 'Memoir', 'Music', 'Childrens', 'Middle Grade']", "['Science Fiction', 'Pulp']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Angels', 'Supernatural']", "['Fantasy', 'Romance', 'Retellings', 'Fairy Tales', 'Young Adult', 'Historical Fiction', 'Fiction']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Adult Fiction', 'Novels']", "['Fiction', 'Historical Fiction', 'Historical', 'Literary Fiction', 'Books About Books', 'Literature', 'British Literature']", "['Christian', 'Biography', 'Nonfiction', 'History']", "['Nonfiction', 'Africa', 'Biography', 'History', 'Memoir', 'Burundi', 'Biography Memoir']", "['History', 'Nonfiction', 'Politics', 'Biography', 'American History', 'Presidents', 'Leadership']", "['Fiction', 'Turkish Literature', 'Turkish', 'Novels', 'Romance', 'Historical Fiction', 'Literature']", "['Fiction', 'Turkish Literature', 'Turkish', 'Novels', 'Nobel Prize', 'Literature', 'Contemporary']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Science Fiction', 'Action', 'Suspense']", "['Fantasy', 'Vampires', 'Fiction', 'Urban Fantasy', 'Paranormal Romance', 'Romance', 'Paranormal']", "['Nonfiction', 'Sports', 'Health', 'Fitness', 'Science', 'Adventure', 'Audiobook']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Angels', 'Fantasy', 'Urban Fantasy', 'Demons']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Mystery', 'Fae', 'Fiction', 'Magic']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Fiction', 'Magic', 'Supernatural']", "['Fantasy', 'Horror', 'Retellings', 'Fiction', 'Young Adult', 'Fairy Tales', 'Adult']", "['Young Adult', 'Short Stories', 'Romance', 'LGBT', 'Contemporary', 'Fiction', 'Queer']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Thriller', 'Science Fiction', 'Science Fiction Fantasy', 'Mystery']", "['Paranormal', 'Angels', 'Young Adult', 'Fantasy', 'Paranormal Romance', 'Romance', 'Magic']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Biography Memoir', 'Autobiography', 'Crime']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Urban Fantasy', 'Paranormal Romance', 'Supernatural']", "['Fantasy', 'Young Adult', 'Magic', 'Young Adult Fantasy', 'Adventure', 'Middle Grade', 'Fiction']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Teen', 'Mental Health', 'High School']", "['Fantasy', 'Christian Fiction', 'Christian', 'Young Adult', 'Fiction', 'Christian Fantasy', 'Adventure']", "['Horror', 'Fiction', 'Science Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Audiobook']", "['Comedy', 'Nonfiction', 'Humor', 'History', 'Biography', 'Pop Culture', 'Stand Up']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'Literature', 'Novels', 'Audiobook']", "['Fantasy', 'Fiction', 'Childrens', 'Classics', 'Audiobook', 'Adventure', 'Middle Grade']", "['Nonfiction', 'Religion']", "['Comics', 'Graphic Novels', 'Fiction', 'Science Fiction', 'Graphic Novels Comics', 'Comix', 'Adult']", "['Fantasy', 'Young Adult', 'Time Travel', 'Romance', 'Historical Fiction', 'Fiction', 'Science Fiction']", "['Fiction', 'Classics', 'Fantasy', 'Literature', 'Childrens', 'Greece', 'Young Adult']", "['History', 'Religion']", "['Nonfiction', 'Business', 'Biography', 'Technology', 'History', 'Audiobook', 'Biography Memoir']", "['Classics', 'Fiction', 'Greece', 'Literature', 'Crime', 'Novels', 'Novella']", "['Vampires', 'Paranormal', 'Romance', 'Paranormal Romance', 'Urban Fantasy', 'Fantasy', 'Humor']", "['Urban Fantasy', 'Fantasy', 'Romance', 'Paranormal', 'Paranormal Romance', 'Magic', 'Adult']", "['Historical Fiction', 'Fiction', 'Holocaust', 'Historical', 'World War II', 'Jewish', 'Israel']", "['Religion', 'Islam', 'Philosophy', 'Nonfiction', 'Politics', 'Sociology', 'Theology']", "['Fiction', 'Mystery', 'Suspense', 'Thriller', 'Mystery Thriller', 'Contemporary', 'Adult']", "['Poetry', 'Classics', 'American', '20th Century', 'Modern Classics', 'LGBT', 'Fiction']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Vampires', 'Werewolves', 'Shapeshifters']", "['Fiction', 'Africa', 'South Africa', 'Novels', 'Literary Fiction', 'Nobel Prize', 'Contemporary']", "['Fiction', 'Short Stories', 'Scotland', 'Contemporary', 'Adult Fiction', 'Comedy', 'Humor']", "['Young Adult', 'Realistic Fiction', 'Fiction', 'Contemporary', 'Teen', 'Mystery', 'Crime']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Angels', 'Paranormal Romance', 'Fiction']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Autobiography', 'Audiobook', 'Mental Illness']", "['Historical Fiction', 'Historical', 'Fiction', 'Egypt', 'Romance', 'Young Adult', 'Adult']", "['Graphic Novels', 'Comics', 'Fantasy', 'Adventure', 'Magic', 'Graphic Novels Comics', 'Fairy Tales']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'Young Adult Fantasy', 'High Fantasy', 'Fiction']", "['Young Adult', 'Paranormal', 'Fantasy', 'Vampires', 'Romance', 'Paranormal Romance', 'Werewolves']", "['Memoir', 'Nonfiction', 'Biography', 'Biography Memoir', 'Autobiography', 'Humor', 'Audiobook']", "['Fiction', 'Contemporary', 'American', 'Novels', 'Literature', 'Literary Fiction', 'The United States Of America']", "['Horror', 'Mystery', 'Paranormal', 'Suspense', 'Fantasy', 'Fiction', 'Novels']", "['Fantasy', 'Fiction', 'Middle Grade', 'Childrens', 'Young Adult', 'Magic', 'Animals']", "['Manga', 'Graphic Novels', 'Fantasy', 'Horror', 'Comics', 'Fiction', 'Thriller']", "['Nonfiction', 'Science', 'Psychology', 'Self Help', 'Memoir', 'Personal Development', 'Audiobook']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Classics', 'Mythology', 'Folklore', 'School']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Middle Grade', 'Action', 'Medieval']", "['Zombies', 'Horror', 'Post Apocalyptic', 'Dystopia', 'Fiction', 'Apocalyptic', 'Science Fiction']", "['Fantasy', 'Childrens', 'Young Adult', 'Fiction']", "['Classics', 'Fiction', 'Horror', 'Erotica', 'France', 'Philosophy', 'French Literature']", "['Fantasy', 'Young Adult', 'Retellings', 'Fairy Tales', 'Paranormal', 'Werewolves', 'Romance']", "['Manga', 'Fantasy', 'Mystery', 'Graphic Novels', 'Comics', 'Adventure', 'Shonen']", "['Religion', 'Nonfiction', 'History', 'Philosophy', 'Spirituality', 'Theology', 'Christianity']", "['Science Fiction', 'Fiction', 'Humor', 'Fantasy', 'Comedy', 'Science Fiction Fantasy', 'Adventure']", "['Fiction', 'Chick Lit', 'Contemporary', 'Young Adult', 'Adult', 'Romance', 'British Literature']", "['Religion', 'Islam']", "['Young Adult', 'Fantasy', 'Paranormal', 'Horror', 'Romance', 'Urban Fantasy', 'Fiction']", "['Memoir', 'Nonfiction', 'Biography', 'Book Club', 'Biography Memoir', 'Historical', 'Adult']", "['Fantasy', 'Young Adult', 'Paranormal', 'Urban Fantasy', 'Romance', 'Fairies', 'Fae']", "['Marathi', 'Mythology', 'Fiction', 'Indian Literature', 'Classics', 'India', 'Novels']", "['Young Adult', 'Vampires', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Werewolves', 'Romance']", "['Graphic Novels', 'Comics', 'Religion', 'Fiction', 'Art', 'Mythology', 'Graphic Novels Comics']", "['Young Adult', 'Contemporary', 'Mental Health', 'Fiction', 'Realistic Fiction', 'LGBT', 'Romance']", "['Nonfiction', 'Animals', 'Africa', 'Memoir', 'Nature', 'Biography', 'Audiobook']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Werewolves', 'Paranormal Romance', 'Supernatural']", "['Steampunk', 'Fantasy', 'Romance', 'Paranormal', 'Vampires', 'Urban Fantasy', 'Fiction']", "['M M Romance', 'Romance', 'Contemporary', 'Mystery', 'LGBT', 'Crime', 'Suspense']", "['Fiction', 'Thriller', 'Science Fiction', 'Horror', 'Dystopia', 'Psychology', 'Contemporary']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Dystopia', 'Paranormal', 'Witches']", "['Economics', 'Politics', 'Nonfiction', 'History', 'Business', 'Finance', 'Philosophy']", "['Fiction', 'Contemporary', 'Thriller', 'Novels', 'Music', 'Literature', 'Audiobook']", "['Historical Fiction', 'Egypt', 'Fiction', 'Historical']", "['Fiction', 'Classics', 'Historical Fiction', 'Religion', 'Christian', 'Christian Fiction', 'Novels']", "['Fantasy', 'Young Adult', 'Paranormal', 'Fiction', 'Supernatural', 'Adventure', 'Ghosts']", "['Science Fiction', 'Fiction', 'Historical Fiction', 'Time Travel', 'Historical', 'Fantasy', 'Alternate History']", "['Horror', 'Short Stories', 'Fiction', 'Classics', 'Gothic', 'Halloween', 'Werewolves']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Crime']", "['Science Fiction', 'Graphic Novels', 'Fiction', 'Comics', 'Young Adult', 'Fantasy', 'Science Fiction Fantasy']", "['Graphic Novels', 'Middle Grade', 'Young Adult', 'Realistic Fiction', 'Fiction', 'Childrens', 'Contemporary']", "['Romance', 'Science Fiction', 'Fantasy', 'Urban Fantasy', 'Paranormal', 'Paranormal Romance', 'Novella']", "['Historical Fiction', 'Fiction', 'Canada', 'Historical', 'Philosophy', 'Literature', 'Ancient History']", "['Young Adult', 'Chick Lit', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Romance', 'Childrens']", "['Nonfiction', 'Self Help', 'Memoir', 'Psychology', 'Personal Development', 'Audiobook', 'Inspirational']", "['Romance', 'Fiction', 'Young Adult', 'Contemporary', 'Chick Lit', 'Adult', 'Drama']", "['Vampires', 'Nonfiction']", "['Nonfiction', 'Economics', 'Business', 'Science', 'Psychology', 'Sociology', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', '19th Century', 'Victorian', 'Literary Fiction']", "['Nonfiction', 'Biography', 'Humor', 'Memoir', 'Autobiography', 'Comedy', 'Audiobook']", "['Manga', 'Comics', 'Seinen', 'Action', 'Comics Manga', 'Thriller', 'Graphic Novels']", "['Graphic Novels', 'Memoir', 'Nonfiction', 'Biography', 'Graphic Novels Comics', 'Adult', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Fiction', 'Fairy Tales', 'Magic', 'Adventure', 'Romance']", "['Fiction', 'Historical Fiction', 'War', 'Military Fiction', 'Historical', 'Audiobook', 'Novels']", "['Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Suspense', 'Adventure', 'Historical Fiction']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Mystery', 'Fantasy', 'Crime']", "['Young Adult', 'Contemporary', 'Mental Health', 'Fiction', 'Realistic Fiction', 'Mental Illness', 'LGBT']", "['Romance', 'Historical Fiction', 'Regency', 'Historical', 'Historical Romance', 'Fiction', 'Regency Romance']", "['Fiction', 'Spanish Literature', 'Spain', '21st Century', 'Literary Fiction', 'Novels', 'Espionage']", "['Classics', 'Fiction', 'Serbian Literature', 'Philosophy', 'Short Stories']", "['Manga', 'Romance', 'Shojo', 'Graphic Novels', 'Humor', 'Comics', 'Comedy']", "['Nonfiction', 'Africa', 'Memoir', 'Biography', 'Science', 'Biography Memoir', 'Malawi']", "['Young Adult', 'Horror', 'Dystopia', 'Science Fiction', 'Thriller', 'Fantasy', 'Fiction']", "['Politics', 'Nonfiction', 'History', 'Cultural', 'Society', 'Social Science', 'Philosophy']", "['Nonfiction', 'History', 'Russia', 'Philosophy']", "['Classics', 'Gothic', 'Fiction', 'Romance', '18th Century', 'Horror', 'Literature']", "['Counter Culture', 'Fiction']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Fiction', 'Romance', 'Supernatural']", "['Fantasy', 'Fiction', 'Horror', 'Humor', 'Classics', 'Romance', 'Historical Fiction']", "['Fiction', 'Historical Fiction', 'Adventure', 'Pirates', 'Thriller', 'Historical', 'Fantasy']", "['Politics', 'Nonfiction']", "['Fiction', 'Historical Fiction', 'Historical', 'Novels', 'Literary Fiction', 'Art', 'Book Club']", "['Graphic Novels', 'Comics', 'Fantasy', 'Fiction', 'Young Adult', 'Graphic Novels Comics', 'Comic Book']", "['Science Fiction', 'Fiction', 'Fantasy', 'Thriller', 'Novels', 'Speculative Fiction', 'Space']", "['Fantasy', 'Fiction', 'Romance', 'High Fantasy', 'Adult', 'Epic Fantasy', 'Magic']", "['Mystery', 'Fiction', 'Historical', 'Cozy Mystery', 'Historical Fiction', 'Historical Mystery', 'Crime']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Supernatural', 'Fiction']", "['Historical Fiction', 'Fiction', 'World War II', 'War', 'Military Fiction', 'Historical', 'American History']", "['Young Adult', 'Fiction', 'Contemporary', 'Romance', 'Mystery', 'Realistic Fiction', 'Coming Of Age']", "['Fantasy', 'Young Adult', 'Mythology', 'Fiction', 'Adventure', 'Greek Mythology', 'Middle Grade']", "['Fiction', 'Fantasy', 'Japan', 'Japanese Literature', 'Magical Realism', 'Novels', 'Contemporary']", "['Nonfiction', 'History', 'Politics', 'Sociology', 'Psychology', 'Philosophy', 'Environment']", "['Sports', 'Nonfiction']", "['Canada']", "['Fantasy', 'Fiction', 'Middle Grade', 'Young Adult', 'Christian', 'Christian Fiction', 'Childrens']", "['Romance', 'Chick Lit', 'Adult', 'Mystery', 'Fiction']", "['Fantasy', 'Young Adult', 'Dragons', 'Romance', 'Paranormal', 'Paranormal Romance', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Adventure', 'High Fantasy', 'Fiction', 'Young Adult Fantasy']", "['History', 'Nonfiction', 'American History', 'Nature', 'Environment', 'Biography', 'Historical']", "['Philosophy', 'Nonfiction', 'Law', 'Sociology', 'Psychology', 'History', 'School']", "['Nonfiction', 'Psychology', 'Sociology', 'Politics', 'Science', 'History', 'Philosophy']", "['Nonfiction', 'Education', 'Memoir', 'Biography', 'Pakistan', 'Travel', 'Asia']", "['Nonfiction', 'Business', 'Psychology', 'Leadership', 'Self Help', 'Personal Development', 'Management']", "['Psychology', 'Philosophy', 'Nonfiction', 'Spirituality', 'Art', 'Classics', 'Mythology']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', '19th Century', 'Audiobook', 'Adult Fiction']", "['Horror', 'Young Adult', 'Fantasy', 'Historical Fiction', 'Fiction', 'Paranormal', 'Mystery']", "['Manga', 'Fantasy', 'Graphic Novels', 'Romance', 'Comics', 'Shonen', 'Adventure']", "['Young Adult', 'Romance', 'Chick Lit', 'Science Fiction', 'Contemporary', 'Fiction', 'Teen']", "['Feminism', 'Nonfiction', 'Psychology', 'Philosophy', 'Womens', 'Audiobook', 'Sexuality']", "['Mystery', 'Fantasy', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens', 'Young Adult']", "['Religion', 'Nonfiction', 'Philosophy', 'Politics', 'History', 'Terrorism', 'Theology']", "['Short Stories', 'Fiction', 'Canada', 'Contemporary', 'Nobel Prize', 'Literary Fiction', 'Literature']", "['Graphic Novels', 'Horror', 'Zombies', 'Fiction', 'Graphic Novels Comics', 'Post Apocalyptic', 'Dystopia']", "['Vampires', 'Nonfiction', 'Romance', 'Paranormal', 'Media Tie In', 'Werewolves', 'Guides']", "['Noir', 'Fiction', 'Crime', 'Mystery', 'Novels', '20th Century', 'Classics']", "['Young Adult', 'Realistic Fiction', 'Adoption', 'Music', 'African American', 'Fiction', 'Teen']", "['Reference', 'History', 'Religion', 'Christian', 'Christian Non Fiction']", "['Fiction', 'Chick Lit', 'Contemporary', 'Romance', 'Audiobook', 'Mystery', 'Adult']", "['Humor', 'Nonfiction', 'Memoir', 'Comedy', 'Biography', 'Autobiography', 'Essays']", "['Fantasy', 'Young Adult', 'LGBT', 'Romance', 'Queer', 'Fiction', 'Retellings']", "['Business', 'Nonfiction', 'Self Help', 'Entrepreneurship', 'Personal Development', 'Buisness', 'Social Media']", "['Politics', 'Nonfiction', 'History', 'Humor', 'Political Science', 'Economics', 'Government']", "['Politics', 'Nonfiction', 'History', 'Philosophy', 'Government', 'Political Science', 'American']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Vampires', 'Paranormal Romance', 'Shapeshifters']", "['Nonfiction', 'Animals', 'Cats', 'Memoir', 'Biography', 'Medical', 'Death']", "['Biography', 'Nonfiction', 'Sports', 'Memoir', 'Autobiography', 'Audiobook', 'Biography Memoir']", "['Fantasy', 'Romance', 'Historical Fiction', 'Historical', 'Supernatural', 'Magic', 'Swedish Literature']", "['Young Adult', 'Contemporary', 'Fiction', 'Romance', 'Fantasy', 'Paranormal', 'Realistic Fiction']", "['Fantasy', 'Romance', 'Historical Fiction', 'Supernatural', 'Historical', 'Audiobook', 'Witches']", "['Fiction', 'Contemporary', 'Asia', 'Novels', 'Family', 'Amazon', 'Art']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Urban Fantasy', 'Vampires', 'Fiction']", "['Chick Lit', 'Fiction', 'Adult Fiction', 'Adult', 'Contemporary', 'Audiobook', 'Romance']", "['Short Stories', 'Fiction', 'Adventure', 'Classics', 'American', 'Canada', 'Westerns']", "['Christian', 'Nonfiction', 'Self Help', 'Inspirational', 'Spirituality', 'Religion', 'Personal Development']", "['Nonfiction', 'Science', 'History', 'Biography', 'Medicine', 'Audiobook', 'Medical']", "['Graphic Novels', 'Comics', 'Philosophy', 'Nonfiction', 'Science', 'History', 'Mathematics']", "['Parenting', 'Nonfiction', 'Psychology', 'Education', 'Science', 'Audiobook', 'Childrens']", "['Nonfiction', 'Memoir', 'Biography', 'Sports', 'Health', 'Fitness', 'Autobiography']", "['Young Adult', 'Fiction', 'Christian Fiction', 'Fantasy', 'Post Apocalyptic', 'Love', 'Dystopia']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Chick Lit', 'Audiobook', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Mythology', 'Urban Fantasy', 'Paranormal', 'Fiction', 'Romance']", "['Detective']", "['Science Fiction', 'Time Travel', 'Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'World War II']", "['Mystery', 'Psychology', 'Fiction', 'Thriller', 'Suspense', 'Mystery Thriller', 'Psychological Thriller']", "['Thriller', 'Horror', 'Fiction', 'Crime', 'Mystery', 'Mystery Thriller', 'Suspense']", "['Short Stories', 'Fiction', 'Portuguese Literature', 'Classics', 'Literature']", "['Young Adult', 'Fantasy', 'Fiction', 'Humor', 'Contemporary', 'Teen', 'Adventure']", "['Nonfiction', 'Biography', 'History', 'Memoir', 'Biography Memoir', 'Book Club', 'Politics']", "['History', 'Nonfiction', 'Art', 'World War II', 'War', 'Historical', 'Audiobook']", "['Short Stories', 'Young Adult', 'LGBT', 'Fiction', 'Anthologies', 'Queer', 'Contemporary']", "['Christian', 'Nonfiction', 'Theology', 'Christianity', 'Faith', 'Christian Living', 'Religion']", "['Nonfiction', 'Psychology', 'Business', 'Essays', 'Sociology', 'Science', 'Audiobook']", "['Fiction', 'Book Club', 'New York', 'Thriller', 'Terrorism', 'Suspense', 'Religion']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Young Adult Fantasy', 'High Fantasy', 'Historical Fiction']", "['History', 'Religion', 'Nonfiction', 'Islam', 'Politics', 'Philosophy', 'Spirituality']", "['Picture Books', 'Childrens', 'Animals', 'Fiction', 'Folklore', 'Fables', 'Classics']", "['Fiction', 'Historical Fiction', 'Lebanon', 'Magical Realism', 'Fantasy', 'Novels', 'Literature']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Humor', 'Romantic Suspense', 'Chick Lit', 'Adult']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Vampires', 'Romance', 'Werewolves', 'Paranormal Romance']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Adult', 'Adult Fiction', 'British Literature']", "['Young Adult', 'Fantasy', 'Fairies', 'Romance', 'Paranormal', 'Urban Fantasy', 'Fae']", "['Nonfiction', 'History', 'Adventure', 'Biography', 'Survival', 'Nature', 'Science']", "['Vampires', 'Paranormal', 'Paranormal Romance', 'Romance', 'Urban Fantasy', 'Fantasy', 'Demons']", "['Russia', 'Fiction', 'Mystery', 'Detective', 'Adventure', 'Russian Literature', 'Historical Fiction']", "['Fiction', 'Crime', 'Classics', 'Noir', 'Mystery', 'Novels', 'American']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Childrens', 'Magic', 'Fiction', 'Adventure']", "['Young Adult', 'Zombies', 'Dystopia', 'Horror', 'Fantasy', 'Post Apocalyptic', 'Fiction']", "['Manga', 'Fantasy', 'Mystery', 'Comics', 'Graphic Novels', 'Comics Manga', 'Shonen']", "['Young Adult', 'Fiction', 'Adventure', 'Espionage', 'Action', 'Mystery', 'Thriller']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Romance', 'Mystery Thriller', 'Adult']", "['Young Adult', 'Contemporary', 'Fiction', 'LGBT', 'Romance', 'Queer', 'Realistic Fiction']", "['Nonfiction', 'Business', 'Psychology', 'Self Help', 'Leadership', 'Personal Development', 'Management']", "['Romance', 'Romantic Suspense', 'Mystery', 'Suspense', 'Contemporary', 'Fiction', 'Contemporary Romance']", "['History', 'Nonfiction', 'War', 'World War II', 'Politics', 'European History', 'Holocaust']", "['Young Adult', 'Mystery', 'Contemporary', 'Romance', 'Fiction', 'Adventure', 'Teen']", "['Historical Fiction', 'Fiction', 'Historical', 'World War II', 'War', 'Audiobook', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Adventure', 'High Fantasy', 'Young Adult Fantasy']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Mystery', 'Fairies', 'Fiction', 'Childrens']", "['Nonfiction', 'Sexuality', 'Relationships']", "['Christian', 'Prayer', 'Nonfiction', 'Faith', 'Christianity', 'Religion', 'Spirituality']", "['Paranormal', 'Urban Fantasy', 'Romance', 'Paranormal Romance', 'Fantasy', 'Angels', 'Vampires']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Young Adult Romance', 'Chick Lit']", "['Young Adult', 'Romance', 'Contemporary', 'Music', 'Realistic Fiction', 'Chick Lit', 'Young Adult Contemporary']", "['Young Adult', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Childrens', 'Contemporary', 'Romance']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Romance', 'Werewolves', 'Vampires', 'Paranormal Romance']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Mystery', 'Supernatural', 'Paranormal']", "['Fantasy', 'Science Fiction', 'Young Adult', 'Fiction', 'Audiobook', 'Adventure', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Dystopia', 'Steampunk', 'Fantasy', 'Cyberpunk', 'Post Apocalyptic']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Fairies', 'Fae', 'Paranormal Romance']", "['Horror', 'Classics', 'Gothic', 'Vampires', 'Fiction', 'Fantasy', 'Paranormal']", "['Fiction', 'Novels', 'Humor', 'Philosophy', 'Literature', 'Literary Fiction', 'American']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Science Fiction Fantasy', 'Magic', 'High Fantasy', 'Science Fiction']", "['Nonfiction', 'Food', 'Philosophy', 'Animals', 'Health', 'Vegan', 'Environment']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Young Adult Contemporary', 'Death']", "['Vampires', 'Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Adult', 'Urban Fantasy']", "['Horror', 'Short Stories', 'Fiction', 'Weird Fiction', 'Speculative Fiction', 'Classics', 'Fantasy']", "['Young Adult', 'Mental Health', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Mental Illness', 'Teen']", "['Romance', 'Historical Fiction', 'Historical', 'Christian Fiction', 'Christian', 'Historical Romance', 'Love Inspired']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Realistic Fiction', 'High School', 'Fiction']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Paranormal', 'Fiction', 'Romance', 'Dystopia']", "['Realistic Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Contemporary', 'Disability', 'Childrens']", "['Young Adult', 'Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Realistic Fiction', 'Teen']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Romance', 'Vampires', 'Adult']", "['Fiction', 'Contemporary', 'Italian Literature', 'Italy', 'Novels', 'Young Adult', 'Literature']", "['Fiction', 'Mystery', 'Contemporary', 'Autistic Spectrum Disorder', 'Adult', 'Adult Fiction', 'Drama']", "['History', 'Economics', 'Nonfiction', 'Anthropology', 'Politics', 'Finance', 'Business']", "['Fiction', 'Historical Fiction', 'Chick Lit', 'Southern', 'Coming Of Age', 'Adult Fiction', 'Audiobook']", "['Fantasy', 'Romance', 'Young Adult', 'Fiction', 'Mermaids', 'Paranormal', 'Audiobook']", "['Novels', 'Romance', 'Fiction', 'Feminism', 'Literature', 'Love', 'Self Help']", "['Classics', 'Fiction', 'Literature', 'Greece', 'Novels', 'Childrens', 'Young Adult']", "['Fiction', 'Pakistan', 'Historical Fiction', 'Politics', 'Humor', 'Mystery', 'Asia']", "['Graphic Novels', 'Comics', 'Nonfiction', 'Biography', 'History', 'Africa', 'Politics']", "['Young Adult', 'Contemporary', 'Romance', 'Realistic Fiction', 'Fiction', 'High School', 'Young Adult Contemporary']", "['Fiction', 'Historical Fiction', 'Historical', 'Literary Fiction', 'Literature', 'Adventure', 'Australia']", "['Nonfiction', 'War', 'History', 'Military Fiction', 'Military History', 'Politics', 'Journalism']", "['Horror', 'Fiction', 'Pulp', 'Science Fiction', 'Novels']", "['Humor', 'Young Adult', 'Vampires', 'Fantasy', 'Fiction', 'Paranormal', 'Romance']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Chick Lit', 'Adult', 'Suspense']", "['Fiction', 'Historical Fiction', 'Novels', 'Romance', 'Philosophy', 'Spirituality', 'Religion']", "['Fiction', 'Romance', 'Contemporary', 'British Literature', 'Historical Fiction', 'Adult Fiction', 'Book Club']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fae', 'Fairies', 'Urban Fantasy']", "['Poetry', 'Russia', 'Russian Literature', 'Classics', 'Fiction', 'Womens', 'Literature']", "['Young Adult', 'Fiction', 'Contemporary', 'Philosophy', 'School', 'Horror', 'Teen']", "['History', 'Nonfiction', 'True Crime', 'American History', 'Crime', 'Tragedy', 'Adult']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Greek Mythology', 'Adventure']", "['Fantasy', 'Elves', 'Magic', 'Dragons', 'Young Adult', 'Feminism', 'Adventure']", "['Nonfiction', 'Japan', 'Crime', 'True Crime', 'Memoir', 'Biography', 'Journalism']", "['Young Adult', 'Werewolves', 'Paranormal', 'Fantasy', 'Romance', 'Supernatural', 'Fiction']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Demons', 'Fantasy', 'Angels', 'Vampires']", "['Manga', 'Romance', 'Shojo', 'Comedy', 'Comics Manga', 'Comics', 'Young Adult']", "['Horror', 'Science Fiction', 'Fiction', 'Fantasy', 'Mystery', 'Urban Fantasy', 'Science Fiction Fantasy']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Mystery', 'Teen', 'Coming Of Age']", "['Science Fiction', 'Fiction', 'Thriller', 'Cyberpunk', 'Mystery', 'Technology', 'Audiobook']", "['Nonfiction', 'Business', 'Self Help', 'Productivity', 'Medicine', 'Science', 'Medical']", "['Historical Fiction', 'Fiction', 'Historical', 'Chick Lit', 'Romance', 'Contemporary', 'Russia']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Shapeshifters', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Short Stories', 'Fiction', 'Literature', 'Contemporary', 'Literary Fiction', 'American', '21st Century']", "['Historical Fiction', 'Fiction', 'African American', 'African American Literature', 'Family', '20th Century', 'War']", "['Novels', 'Classics', 'Egypt']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Canada']", "['Nonfiction', 'Technology', 'Philosophy', 'Science', 'Cultural', 'Internet', 'Sociology']", "['Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Tv', 'Dark', 'Adult']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fantasy', 'Fiction', 'Horror', 'Paranormal']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Mystery Thriller', 'British Literature', 'Audiobook']", "['Historical Fiction', 'Mystery', 'Fiction', 'Crime', 'Thriller', 'Noir', 'Germany']", "['Horror', 'Fiction', 'Science Fiction', 'Fantasy', 'Post Apocalyptic', 'Vampires', 'Dystopia']", "['Fantasy', 'Graphic Novels', 'Manga', 'Comics', 'Fiction', 'Young Adult', 'Historical Fiction']", "['Manga']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Novels', 'Politics', 'Israel']", "['Politics', 'Nonfiction', 'History', 'American History', 'Presidents', 'Biography', 'Audiobook']", "['Middle Grade', 'Realistic Fiction', 'Fantasy', 'Fiction', 'Childrens', 'Young Adult', 'Contemporary']", "['Young Adult', 'Fantasy', 'Paranormal', 'Urban Fantasy', 'Vampires', 'Zombies', 'Demons']", "['Mystery', 'Adventure', 'Middle Grade', 'Young Adult', 'Fiction', 'Childrens', 'Fantasy']", "['Mystery', 'Historical Fiction', 'Young Adult', 'Historical', 'Fiction', 'Romance', 'Adventure']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Suspense', 'Drama', 'Mystery Thriller']", "['Fiction', 'Historical Fiction', 'Novels', 'Scandinavian Literature', 'Fantasy', 'Literature', 'Religion']", "['Manga', 'Romance', 'Shojo', 'Comics Manga', 'Young Adult', 'Comedy', 'Humor']", "['Childrens', 'Fiction', 'Fantasy']", "['Gothic', 'Classics', 'Horror', 'Fiction', '18th Century', 'Literature', 'Gothic Horror']", "['Vampires', 'Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Mermaids', 'Romance', 'Paranormal', 'Magic', 'Paranormal Romance']", "['Georgian', 'Fiction', 'Historical Fiction', 'Classics', 'School', 'Adventure', 'Novels']", "['Thriller', 'Fiction', 'Mystery', 'Adventure', 'Suspense', 'Contemporary', 'Mystery Thriller']", "['Manga', 'Fantasy', 'Graphic Novels', 'Comics', 'Video Games', 'Fiction', 'Adventure']", "['Historical Fiction', 'Romance', 'Fiction', 'Mystery', 'Historical', 'Italy', 'Contemporary']", "['Zombies', 'Horror', 'Post Apocalyptic', 'Fiction', 'Dystopia', 'Fantasy', 'Apocalyptic']", "['Urban Fantasy', 'Vampires', 'Paranormal', 'Fantasy', 'Paranormal Romance', 'Romance', 'Fiction']", "['Nonfiction', 'Memoir', 'Relationships', 'Biography', 'Marriage', 'Audiobook', 'Romance']", "['Business', 'Nonfiction', 'Entrepreneurship', 'Self Help', 'Management', 'Productivity', 'Leadership']", "['Manga', 'Comics', 'Graphic Novels', 'Slice Of Life', 'Fiction', 'Young Adult', 'Romance']", "['Fiction', 'Historical Fiction', 'War', 'Humor', 'World War II', 'Military Fiction', 'Comedy']", "['Romance', 'Historical Fiction', 'Historical Romance', 'Historical', 'Regency', 'Fiction', 'Classics']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Gothic', 'Romance', 'Adult']", "['Young Adult', 'Fantasy', 'Romance', 'Magic', 'Paranormal', 'Fiction', 'Contemporary']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Urban Fantasy', 'Vampires', 'Fiction']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Demons', 'Fantasy', 'Angels', 'Mythology']", "['Nonfiction', 'Politics', 'Philosophy', 'Economics', 'Theory', 'Sociology', 'Essays']", "['Romance', 'Fiction', 'Novels', 'Indonesian Literature', 'Young Adult', 'Love', 'Chick Lit']", "['Fantasy', 'High Fantasy', 'Epic Fantasy', 'Fiction', 'Magic', 'Science Fiction Fantasy', 'Adult']", "['Manga', 'Seinen', 'Science Fiction', 'Comics', 'Graphic Novels', 'Fiction', 'Fantasy']", "['Young Adult', 'Science Fiction', 'Time Travel', 'Fantasy', 'Fiction', 'Adventure', 'Historical Fiction']", "['Manga', 'Romance', 'Fantasy', 'Paranormal', 'Demons', 'Graphic Novels', 'Young Adult']", "['Mystery', 'Fiction', 'Historical Fiction', 'Young Adult', 'Audiobook', 'Crime', 'Historical']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Supernatural', 'Vampires', 'Paranormal Romance']", "['Nonfiction', 'Crime', 'Short Stories', 'German Literature', 'True Crime', 'Mystery', 'Thriller']", "['Nonfiction', 'History', 'Race', 'Politics', 'Social Justice', 'Sociology', 'Anti Racist']", "['Manga', 'Romance', 'Shojo', 'Comedy', 'Graphic Novels', 'Comics', 'Young Adult']", "['Manga', 'Romance', 'Graphic Novels', 'Historical', 'Shojo', 'Historical Fiction', 'Comics Manga']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fairies', 'Fae', 'Fiction']", "['Manga', 'Romance', 'Shojo', 'Graphic Novels', 'Humor', 'Young Adult', 'Comedy']", "['Manga', 'Vampires', 'Romance', 'Fantasy', 'Graphic Novels', 'Paranormal', 'Young Adult']", "['Historical Fiction', 'Fiction', 'Egypt', 'Historical', 'Philosophy', 'Africa', 'Literature']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Adult']", "['Comics', 'Graphic Novels', 'Fantasy', 'Horror', 'Comic Book', 'Fairy Tales', 'Graphic Novels Comics']", "['Historical Fiction', 'Fiction', 'Historical', 'Book Club', 'Audiobook', 'Adult', 'Adult Fiction']", "['Fantasy', 'Animals', 'Middle Grade', 'Fiction', 'Adventure', 'Wolves', 'Childrens']", "['Religion']", "['Fantasy', 'Young Adult', 'Horror', 'Spanish Literature', 'Romance', 'Halloween', 'Spain']", "['Vampires', 'Paranormal', 'Paranormal Romance', 'Romance', 'Urban Fantasy', 'Fantasy', 'Adult']", "['Vampires', 'Urban Fantasy', 'Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Adult']", "['Literature', 'Fiction']", "['Graphic Novels', 'Fiction', 'Fantasy', 'Books About Books', 'Comics', 'Adult', 'Graphic Novels Comics']", "['Fantasy', 'Time Travel', 'Middle Grade', 'Young Adult', 'Historical Fiction', 'Fiction', 'Magic']", "['M M Romance', 'Military Fiction', 'Romance', 'Contemporary', 'Humor', 'Gay', 'LGBT']", "['Memoir', 'Nonfiction', 'Mental Illness', 'Mental Health', 'Biography', 'Psychology', 'Biography Memoir']", "['Fiction', 'India', 'Contemporary', 'Adoption', 'Book Club', 'Canada', 'Adult Fiction']", "['Young Adult', 'Paranormal', 'Werewolves', 'Fantasy', 'Romance', 'Urban Fantasy', 'Shapeshifters']", "['Young Adult', 'Dystopia', 'Fantasy', 'Science Fiction', 'Fiction', 'Romance', 'Post Apocalyptic']", "['Manga', 'Fantasy', 'Vampires', 'Romance', 'Action', 'Graphic Novels', 'Fiction']", "['Nonfiction', 'Biography', 'Memoir', 'Biography Memoir', 'Writing', 'Travel', 'Audiobook']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Demons', 'Vampires']", "['Classics', 'Plays', 'Drama', 'School', 'Fiction', 'Read For School', '20th Century']", "['Fiction', 'Literature', 'Classics', 'Greece', 'Mystery', 'Novels', 'Politics']", "['Fantasy', 'Young Adult', 'Time Travel', 'Romance', 'Historical Fiction', 'Science Fiction', 'Fiction']", "['Young Adult', 'Fantasy', 'Paranormal', 'Magic', 'Urban Fantasy', 'Witches', 'Fairies']", "['Fantasy', 'Fiction', 'Urban Fantasy', 'Science Fiction', 'Horror', 'Weird Fiction', 'Mystery']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Chick Lit', 'High School', 'Realistic Fiction']", "['Steampunk', 'Fantasy', 'Paranormal', 'Romance', 'Vampires', 'Urban Fantasy', 'Fiction']", "['Horror', 'Classics', 'Vampires', 'Fiction', 'Fantasy', 'Short Stories', 'Mystery']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Chick Lit', 'Realistic Fiction', 'Contemporary Romance']", "['Classics', 'Fiction', 'Literature', 'Novels']", "['Nonfiction', 'Travel', 'Religion', 'History', 'Spirituality', 'Asia', 'Biography']", "['Young Adult', 'Angels', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Manga', 'Comics', 'Graphic Novels', 'Seinen', 'Science Fiction', 'Dystopia', 'Comix']", "['Fiction', 'Thriller', 'Politics', 'Mystery', 'Suspense', 'Mystery Thriller', 'Dystopia']", "['Nonfiction', 'Self Help', 'Psychology', 'Buddhism', 'Spirituality', 'Philosophy', 'Personal Development']", "['Young Adult', 'Mystery', 'Romance', 'Contemporary', 'Espionage', 'Fiction', 'Adventure']", "['Religion', 'Nonfiction', 'Spirituality', 'Islam', 'Literature']", "['Fiction', 'Horror', 'Australia', 'Psychology', 'Religion', 'Abuse', 'Dark']", "['Fiction', 'Romance', 'Indian Literature', 'India', 'Novels', 'Contemporary', 'Young Adult']", "['Picture Books', 'Christmas', 'Childrens', 'Fiction', 'Holiday', 'Adventure', 'Family']", "['Chick Lit', 'Contemporary', 'Fiction']", "['Mystery', 'Crime', 'Italy', 'Fiction', 'Italian Literature', 'Detective', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Magical Realism', 'Historical', 'Novels', 'Audiobook', 'Spanish Literature']", "['Young Adult', 'Paranormal', 'Ghosts', 'Romance', 'Fantasy', 'Supernatural', 'Contemporary']", "['Fiction', 'Religion', 'Historical Fiction', 'Portuguese Literature', 'Portugal', 'Literature', 'Novels']", "['Spirituality', 'Nonfiction', 'Biography', 'Memoir', 'Autobiography', 'Philosophy', 'Travel']", "['Memoir', 'Nonfiction', 'Biography', 'History', 'Agriculture', 'Biography Memoir', 'Classics']", "['Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Audiobook', 'Mental Health', 'Spirituality']", "['Nonfiction', 'Food', 'Health', 'Nutrition', 'Science', 'Cooking', 'Self Help']", "['Mystery', 'Fiction', 'Humor', 'Chick Lit', 'Romance', 'Crime', 'Audiobook']", "['History', 'Nonfiction', 'Military Fiction', 'Military History', 'American History', 'Biography', 'War']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fantasy', 'Adventure', 'Fiction', 'Middle Grade']", "['Paranormal', 'Vampires', 'Romance', 'Paranormal Romance', 'Urban Fantasy', 'Fantasy', 'Adult']", "['Travel', 'Nonfiction', 'Science', 'Environment', 'History', 'Nature', 'Adventure']", "['Paranormal', 'Romance', 'Paranormal Romance', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Fiction', 'Magical Realism', 'Fantasy', 'Contemporary', 'Food', 'Adult Fiction', 'Adult']", "['Nonfiction', 'History', 'Science', 'True Crime', 'Crime', 'Medicine', 'Historical']", "['Historical Fiction', 'Fiction', 'Australia', 'Historical', 'School', 'Novels', 'Literature']", "['Mystery', 'Crime', 'Thriller', 'Fiction', 'Mystery Thriller', 'Scandinavian Literature', 'Sweden']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fantasy', 'Romance', 'Fiction', 'Teen']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Middle Grade', 'Childrens', 'Mystery']", "['Fantasy', 'Young Adult', 'Mythology', 'Fiction', 'Magic', 'Adventure', 'Audiobook']", "['Young Adult', 'Mystery', 'Science Fiction', 'Adventure', 'Middle Grade', 'Fiction', 'Thriller']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Audiobook', 'Family', 'Drama']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Ireland', 'Thriller', 'Audiobook']", "['Vampires', 'BDSM', 'Paranormal', 'Erotica', 'Paranormal Romance', 'Romance', 'Menage']", "['Manga', 'Graphic Novels', 'Young Adult', 'Fantasy', 'Science Fiction', 'Comics', 'Adventure']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Adventure', 'Post Apocalyptic', 'Fantasy']", "['Drama', 'Novels', 'Fiction', 'Contemporary']", "['Nonfiction', 'Memoir', 'Biography', 'School', 'Audiobook', 'Biography Memoir', 'Race']", "['Art', 'History', 'Nonfiction', 'Classics', 'Mystery', 'Historical', 'Occult']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Supernatural', 'Horror', 'Fiction']", "['Food', 'Cookbooks']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Horror', 'Vampires', 'Paranormal', 'Historical']", "['Fantasy', 'Fiction', 'Young Adult', 'Dystopia', 'Dark Fantasy', 'Adventure', 'Science Fiction']", "['Novels', 'Romance', 'Fiction', 'Love', 'Romantic', 'Literature', 'Unfinished']", "['Young Adult', 'Angels', 'Fantasy', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Supernatural']", "['Fantasy', 'Animals', 'Middle Grade', 'Fiction', 'Childrens', 'Cats', 'Young Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Mystery', 'Horror', 'Spanish Literature', 'Historical Fiction']", "['Fantasy', 'Young Adult', 'Horror', 'Fiction', 'Adventure', 'Novels', 'Dystopia']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'High School', 'Realistic Fiction', 'Contemporary Romance']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Horror', 'Supernatural']", "['Science Fiction', 'Historical Fiction', 'Time Travel', 'Young Adult', 'Fantasy', 'Fiction', 'Middle Grade']", "['Novels', 'Fiction', 'Indonesian Literature', 'Classics', 'Historical Fiction', 'Literature']", "['Science Fiction', 'Fiction', 'Thriller', 'Cyberpunk', 'Audiobook', 'Technology', 'Dystopia']", "['Romance', 'Fiction', 'Fantasy', 'Young Adult', 'Historical Fiction', 'Time Travel', 'Chick Lit']", "['Young Adult', 'Dystopia', 'Zombies', 'Science Fiction', 'Post Apocalyptic', 'Fantasy', 'Romance']", "['Romance', 'Young Adult', 'Contemporary', 'High School', 'Contemporary Romance', 'Realistic Fiction', 'Fiction']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Historical Fantasy', 'China', 'Science Fiction Fantasy']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Literature', 'British Literature', 'Novels', 'Science Fiction']", "['Fiction', 'Historical Fiction', 'Japan', 'Historical', 'Literary Fiction', 'Asia', 'Novels']", "['History', 'Classics', 'Nonfiction', 'Roman', 'Politics', 'Russian Literature', 'Literature']", "['Fiction', 'Contemporary', 'Literature', 'Novels', 'Scandinavian Literature', 'Biography Memoir', 'Literary Fiction']", "['Young Adult', 'Paranormal', 'Fantasy', 'Horror', 'Fiction', 'Mystery', 'Ghosts']", "['Humor', 'Middle Grade', 'Fiction', 'Realistic Fiction', 'Childrens', 'Young Adult', 'Star Wars']", "['Fantasy', 'Paranormal Romance', 'Paranormal', 'Romance']", "['Nonfiction', 'Islam', 'Religion', 'Sociology', 'Philosophy']", "['Zombies', 'Young Adult', 'Horror', 'Dystopia', 'Fiction', 'Post Apocalyptic', 'Science Fiction']", "['Young Adult', 'Paranormal', 'Fantasy', 'Ghosts', 'Romance', 'Supernatural', 'Paranormal Romance']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Contemporary']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Adult', 'Audiobook']", "['Fantasy', 'Magic', 'Fiction', 'High Fantasy', 'Young Adult', 'Epic Fantasy', 'Adventure']", "['Fantasy', 'Mythology', 'Middle Grade', 'Young Adult', 'Fiction', 'Adventure', 'Childrens']", "['Nonfiction', 'Science', 'History', 'Medicine', 'Medical', 'Health', 'Biology']", "['Fantasy', 'Japanese Literature', 'Dystopia', 'Fiction', 'Science Fiction', 'Light Novel', 'Japan']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Steampunk', 'Historical Fiction', 'Fiction']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Classics', 'Horror', 'Aliens', 'Fantasy']", "['Young Adult', 'Poetry', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Teen', 'Mental Health']", "['Fiction', 'Canada', 'Animals', 'Holocaust', 'Contemporary', 'Novels', 'Literary Fiction']", "['History', 'Nonfiction', 'World War II', 'Germany', 'War', 'European History', 'Military History']", "['Spanish Literature', 'Fiction', 'Mystery', 'Classics', 'Crime', 'Latin American', 'School']", "['Fiction', 'Inspirational', 'Christian Fiction', 'Christian', 'Adult Fiction', 'Adult', 'Contemporary']", "['Bizarro Fiction', 'Fiction', 'Horror', 'Science Fiction', 'Dystopia']", "['Horror', 'Werewolves', 'Pulp']", "['Fantasy', 'Fairy Tales', 'Middle Grade', 'Young Adult', 'Romance', 'Retellings', 'Childrens']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Adult', 'Regency', 'Fiction']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Fiction', 'Supernatural', 'Paranormal Romance']", "['Science Fiction', 'Romance', 'Aliens', 'Erotica', 'Paranormal', 'Paranormal Romance', 'Fantasy']", "['Fiction', 'Romance', 'Chick Lit', 'Adult Fiction', 'Southern', 'Adult', 'Contemporary']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Video Games', 'Games']", "['History', 'Politics', 'Nonfiction', 'Religion', 'Cultural', 'Egypt']", "['Young Adult', 'Werewolves', 'Paranormal', 'Fantasy', 'Romance', 'Supernatural', 'Urban Fantasy']", "['Fiction', 'Mystery', 'Poland', 'Contemporary', 'Literary Fiction', 'Crime', 'Thriller']", "['Fantasy', 'Young Adult', 'Paranormal', 'Fae', 'Fairies', 'Romance', 'Urban Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Adult', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Middle Grade', 'Adventure', 'Magic', 'Childrens']", "['Religion', 'Spirituality', 'Nonfiction']", "['Science', 'Nonfiction', 'History', 'Chemistry', 'Audiobook', 'Historical', 'Popular Science']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Dystopia', 'Paranormal', 'Fiction', 'Romance']", "['Young Adult', 'Dystopia', 'Fiction', 'Fantasy', 'Science Fiction', 'Romance', 'Adventure']", "['Young Adult', 'Fantasy', 'Paranormal', 'Werewolves', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Historical Fiction', 'Fiction', 'World War II', 'Holocaust', 'Historical', 'War', 'Hungary']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Crime', 'Suspense', 'Audiobook']", "['Young Adult', 'Angels', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Urban Fantasy']", "['Steampunk', 'Fantasy', 'Science Fiction', 'Fiction', 'Alternate History', 'Historical Fiction', 'Time Travel']", "['Fiction', 'Iran', 'Romance', 'Contemporary', 'Magical Realism', 'Novels', 'Politics']", "['Paranormal', 'Urban Fantasy', 'Romance', 'Paranormal Romance', 'Angels', 'Fantasy', 'Vampires']", "['Mystery', 'Thriller', 'Fiction', 'Amish', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Audiobook', 'Novels', 'Adult']", "['Fiction', 'Classics', 'India', 'Novels', 'Adult']", "['Manga', 'Seinen', 'Comics', 'Science Fiction', 'Dystopia', 'Graphic Novels', 'Comix']", "['Manga', 'Romance', 'Graphic Novels', 'Shojo', 'Historical', 'Drama', 'Historical Fiction']", "['Manga', 'Romance', 'Fantasy', 'Paranormal', 'Shojo', 'Demons', 'Graphic Novels']", "['Manga', 'Vampires', 'Fantasy', 'Romance', 'Graphic Novels', 'Magic', 'Paranormal']", "['Manga', 'Romance', 'Shojo', 'Graphic Novels', 'Comedy', 'Comics', 'Contemporary']", "['Horror', 'Fiction', 'Fantasy', 'Mental Health', 'Psychology', 'Mental Illness', 'Historical Fiction']", "['Fantasy', 'Middle Grade', 'Fairy Tales', 'Adventure', 'Retellings', 'Childrens', 'Fiction']", "['Fantasy', 'Middle Grade', 'Science Fiction', 'Young Adult', 'Fiction', 'Adventure', 'Childrens']", "['Fiction', 'Contemporary', 'Music', 'Short Stories', 'Literary Fiction', 'Novels', 'Adult Fiction']", "['Nonfiction', 'Biography', 'Memoir', 'Politics', 'Autobiography', 'Biography Memoir', 'History']", "['Horror', 'Fantasy', 'Fiction', 'Paranormal', 'Monsters', 'Thriller', 'Supernatural']", "['Fiction', 'Food', 'India', 'France', 'Contemporary', 'Adult Fiction', 'Cooking']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Ghosts', 'Magic', 'Romance', 'Witches']", "['Fiction', 'Historical Fiction', 'Young Adult', 'Contemporary', 'Coming Of Age', 'China', 'Adult Fiction']", "['Young Adult', 'Fiction', 'Realistic Fiction', 'Survival', 'Adventure', 'Fantasy', 'School']", "['Nonfiction', 'Humor', 'Self Help', 'Inspirational', 'Psychology', 'Comedy', 'Canada']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Humor', 'Romantic Suspense', 'Chick Lit', 'Suspense']", "['Manga', 'Shojo', 'Paranormal', 'Supernatural', 'Urban Fantasy', 'Graphic Novels', 'Young Adult']", "['Fantasy', 'Bulgarian Literature']", "['Fiction', 'Novels', 'Contemporary', 'Literature', 'Scandinavian Literature', 'Biography Memoir', '21st Century']", "['Fiction', 'Mystery Thriller']", "['Fiction', 'Novels', 'Scandinavian Literature', 'Contemporary', 'Literature', 'Biography Memoir', '21st Century']", "['Short Stories', 'Childrens']", "['Young Adult', 'Fantasy', 'Angels', 'Paranormal', 'Romance', 'Paranormal Romance', 'Urban Fantasy']", "['Historical', 'Religion']", "['Biography', 'History', 'Nonfiction', 'Christian', 'Religion', 'Christianity', 'Theology']", "['Classics', 'Fantasy', 'Fiction', 'Childrens', 'Poetry', 'Literature', 'Short Stories']", "['Christian Fiction', 'Historical Fiction', 'Romance', 'Christian', 'Fiction', 'Historical', 'Christian Romance']", "['Nonfiction', 'History', 'Audiobook', 'Humor', 'Historical', 'Science', 'Architecture']", "['Young Adult', 'Fantasy', 'Horror', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Supernatural']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Adventure', 'Teen']", "['Classics', 'Brazil', 'Childrens', 'Fiction', 'Fantasy', 'Portuguese Literature']", "['Fiction', 'Horror', 'Contemporary', 'Suspense', 'Mystery', 'Science Fiction', 'Crime']", "['Fiction', 'Africa', 'South Africa', 'Historical Fiction', 'School', 'Classics', 'High School']", "['Fantasy', 'Young Adult', 'Retellings', 'Romance', 'Fiction', 'Fairy Tales', 'Young Adult Fantasy']", "['Fiction', 'Contemporary', 'American', 'Horror', 'Novels', 'Thriller', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Time Travel', 'Historical Fiction', 'Fiction', 'Science Fiction']", "['Fantasy', 'Fiction', 'Humor', 'Comedy', 'Science Fiction Fantasy', 'Plays', 'Science Fiction']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Fantasy', 'Space Opera', 'Mystery', 'Science Fiction Fantasy']", "['Fiction', 'Canada', 'Historical Fiction', 'France', 'Contemporary', 'Literary Fiction', 'Historical']", "['Fantasy', 'Young Adult', 'Fiction', 'Humor', 'Magic', 'Audiobook', 'Comedy']", "['Horror', 'Short Stories', 'Collections']", "['Horror', 'Young Adult', 'Thriller', 'Fiction', 'Mystery', 'Fantasy', 'Crime']", "['Graphic Novels', 'Young Adult', 'Vampires', 'Fantasy', 'Romance', 'Manga', 'Paranormal']", "['Fiction', 'Classics', 'Novels', 'Indian Literature', 'Womens', 'India', 'Philosophy']", "['Nonfiction', 'Christian', 'Inspirational', 'Faith', 'Religion']", "['Islam', 'Nonfiction']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Adventure', 'Post Apocalyptic']", "['Roman']", "['Nonfiction', 'Science', 'History', 'Sexuality', 'Psychology', 'Anthropology', 'Relationships']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Adventure', 'Humor', 'Audiobook']", "['History', 'Nonfiction', 'Biography', 'American History', 'Historical', 'Native Americans', 'Westerns']", "['Manga', 'Fantasy', 'Graphic Novels', 'Historical Fiction', 'Comics', 'Fiction', 'Horror']", "['Fantasy', 'Young Adult', 'Fiction', 'Dragons', 'Magic', 'Adventure', 'High Fantasy']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Road Trip', 'Realistic Fiction', 'Young Adult Contemporary']", "['Psychology', 'Contemporary', 'Fiction']", "['Fiction', 'Historical', 'Historical Fiction', 'Scandinavian Literature']", "['Fantasy', 'Romance', 'German Literature', 'Young Adult', 'High Fantasy', 'Magic', 'Fantasy Romance']", "['Philosophy', 'Islam']", "['History', 'Nonfiction']", "['Novels', 'Fiction', 'Horror', 'Fantasy', 'Crime', 'Thriller', 'Mystery']", "['Novels', 'Fiction', 'Crime', 'Mystery', 'Literature', 'Thriller', 'Suspense']", "['Mystery', 'Historical Fiction', 'Historical', 'Fiction', 'Romance', 'Historical Mystery', 'Cozy Mystery']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'Scandinavian Literature', 'Novels', 'Literature']", "['Occult', 'Religion', 'Personal Development', 'Spirituality', 'Philosophy', 'Christian', 'History']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Vampires', 'Urban Fantasy', 'Supernatural']", "['Philosophy', 'Islam', 'Religion', 'Nonfiction']", "['Fiction', 'Animals', 'Dogs', 'Contemporary', 'Fantasy', 'Adult', 'Audiobook']", "['Business', 'Entrepreneurship', 'Nonfiction', 'Management', 'Design', 'Buisness', 'Leadership']", "['Vampires', 'Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Fiction', 'Supernatural']", "['Science Fiction', 'Fiction', 'Time Travel', 'Humor', 'Science Fiction Fantasy', 'Fantasy', 'Speculative Fiction']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Paranormal', 'Mystery', 'Historical', 'Horror']", "['Young Adult', 'Dystopia', 'Romance', 'Science Fiction', 'Fantasy', 'Fiction', 'Teen']", "['Plays', 'Drama', 'Fiction', 'German Literature', 'Classics', 'Theatre', 'Germany']", "['Fantasy', 'Mythology', 'Young Adult', 'Fiction', 'Middle Grade', 'Adventure', 'Greek Mythology']", "['Paranormal', 'Vampires', 'Urban Fantasy', 'Fantasy', 'Mystery', 'Fiction', 'Paranormal Romance']", "['Comics', 'Graphic Novels', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'Superheroes', 'Marvel']", "['Young Adult', 'Fantasy', 'Romance', 'Angels', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Memoir', 'Nonfiction', 'LGBT', 'Biography', 'Poetry', 'Queer', 'Biography Memoir']", "['Young Adult', 'Romance', 'Contemporary', 'Christmas', 'Fiction', 'Holiday', 'Realistic Fiction']", "['Vampires', 'Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Urban Fantasy', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fae', 'Fairies', 'Magic']", "['Young Adult', 'Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Angels', 'Urban Fantasy']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Fiction', 'Aliens', 'Romance', 'Paranormal']", "['Young Adult', 'Thriller', 'Science Fiction', 'Fantasy', 'Mystery', 'Fiction', 'German Literature']", "['Islam', 'Religion', 'Nonfiction', 'Science']", "['Religion', 'Islam', 'Nonfiction', 'Science', 'Theology', 'Atheism', 'Philosophy']", "['Young Adult', 'Mystery', 'Thriller', 'Horror', 'Crime', 'Fiction', 'Mystery Thriller']", "['Fantasy', 'Paranormal', 'Historical Fiction', 'Romance', 'Fiction', 'Historical', 'Paranormal Romance']", "['Fiction', 'Young Adult', 'Contemporary', 'Historical Fiction', 'Audiobook', 'Australia', 'Family']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Fiction', 'Horror', 'Supernatural']", "['Young Adult', 'Angels', 'Fantasy', 'Romance', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Fiction', 'Israel', 'Historical Fiction', 'War', 'Jewish', 'Novels', 'Literature']", "['Realistic Fiction', 'Middle Grade', 'Fiction', 'Young Adult', 'School', 'Childrens', 'Contemporary']", "['Philosophy', 'Nonfiction', 'Science', 'Religion', 'Psychology', 'Atheism', 'Neuroscience']", "['Paranormal', 'Romance', 'Paranormal Romance', 'Werewolves', 'Fantasy', 'Shapeshifters', 'Adult']", "['Young Adult', 'Fantasy', 'Romance', 'Angels', 'Paranormal', 'Paranormal Romance', 'Fiction']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Contemporary Romance', 'Young Adult Romance', 'New Adult']", "['Young Adult', 'Mystery', 'Science Fiction', 'Fiction', 'Fantasy', 'Adventure', 'Paranormal']", "['Christian Fiction', 'Christian', 'Fiction', 'Christian Romance', 'Romance', 'Inspirational', 'Adult Fiction']", "['Classics', 'Gothic', 'Fiction', 'Romance', 'Horror', '18th Century', 'Mystery']", "['Horror', 'Gothic', 'Fiction', 'Short Stories', 'Anthologies', 'Classics', 'Speculative Fiction']", "['M M Romance', 'BDSM', 'Erotica', 'Romance', 'Abuse', 'Menage', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Holocaust', 'War', 'Music', 'Historical', 'World War II']", "['Humor', 'Nonfiction', 'Memoir', 'Comedy', 'Biography', 'Audiobook', 'Adult']", "['Nonfiction', 'History', 'Biography', 'Art', 'Memoir', 'Japan', 'Historical']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Suspense', 'Novels', 'Mystery Thriller']", "['Fantasy', 'Young Adult', 'Paranormal', 'Vampires', 'Romance', 'Fiction', 'Middle Grade']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Magic', 'Urban Fantasy', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Magic', 'Fairy Tales', 'Audiobook']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'War', 'World War II', 'Romance']", "['Fantasy', 'Middle Grade', 'Fairy Tales', 'Young Adult', 'Fiction', 'Childrens', 'Adventure']", "['Romance', 'Historical Fiction', 'Young Adult', 'Fantasy', 'Christian Fiction', 'Christian', 'Historical']", "['Steampunk', 'Young Adult', 'Fantasy', 'Science Fiction', 'Historical Fiction', 'Fiction', 'Alternate History']", "['Young Adult', 'Paranormal', 'Mystery', 'Romance', 'Fantasy', 'Supernatural', 'Fiction']", "['Fiction', 'Thriller', 'Historical Fiction', 'Mystery', 'Adventure', 'Suspense', 'Mystery Thriller']", "['Urban Fantasy', 'Vampires', 'Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Adult']", "['Cookbooks', 'Nonfiction', 'Cooking', 'Food', 'Humor', 'Reference', 'Self Help']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Magic', 'Fiction', 'Supernatural']", "['Humor', 'Comics']", "['Vampires', 'Young Adult', 'Fantasy', 'Fiction', 'Paranormal', 'Horror', 'Romance']", "['Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Fiction', 'Mystery', 'Supernatural']", "['Aviation', 'World War I', 'Biography', 'Nonfiction', 'History', 'Military History']", "['Fantasy', 'Young Adult', 'Mythology', 'Romance', 'Greek Mythology', 'Paranormal', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Mythology', 'Paranormal', 'Magic', 'Adventure']", "['Humor', 'Fiction', 'Short Stories', 'Audiobook', 'Comedy', 'Animals', 'Essays']", "['Business']", "['Young Adult', 'Contemporary', 'Romance', 'Realistic Fiction', 'Fiction', 'Young Adult Contemporary', 'Art']", "['Nonfiction', 'Business', 'Finance', 'Economics', 'History', 'Biography', 'Memoir']", "['Mystery', 'Fiction', 'Crime', 'Italy', 'Italian Literature', 'Detective', 'Mystery Thriller']", "['BDSM', 'Vampires', 'Erotica', 'Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Zombies', 'Supernatural']", "['Short Stories', 'Classics', 'Fiction', 'American', 'School', '20th Century', 'Literature']", "['Poetry', 'Classics', 'African American', 'Race', 'Literature', 'Nonfiction', 'American']", "['Time Travel', 'Young Adult', 'Historical Fiction', 'Fantasy', 'Romance', 'Historical', 'Christian Fiction']", "['Nonfiction', 'Animals', 'Cats', 'Biography', 'Memoir', 'Short Stories', 'Audiobook']", "['Classics', 'Historical Fiction', 'Fiction', 'Humor', 'Comedy', 'Novels', '20th Century']", "['Fantasy', 'Young Adult', 'Paranormal', 'Ghosts', 'Fiction', 'Middle Grade', 'Supernatural']", "['Romanian Literature', 'Classics']", "['Young Adult', 'Romance', 'Fiction', 'Magic', 'Young Adult Fantasy', 'High Fantasy', 'Fae']", "['Paranormal', 'Young Adult', 'Vampires', 'Horror', 'Romance', 'Fantasy', 'Supernatural']", "['Fantasy', 'Fiction', 'Romance', 'High Fantasy', 'Magic', 'Epic Fantasy', 'Science Fiction Fantasy']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Literature', 'American', 'Adult Fiction']", "['Horror', 'Science Fiction', 'Weird Fiction', 'Collections', 'Cyberpunk', 'Short Stories']", "['Fiction', 'Art', 'Contemporary', 'Novels', 'Audiobook', 'New York', 'Adult Fiction']", "['Horror', 'Short Stories', 'Fiction', 'Thriller', 'Mystery', 'Suspense', 'Audiobook']", "['Fiction', 'Fantasy', 'Mythology', 'Indian Literature', 'Historical Fiction', 'India', 'Amish']", "['Dark', 'BDSM', 'Erotica', 'Romance', 'Contemporary', 'Adult', 'Abuse']", "['Fantasy', 'Fiction', 'Magical Realism', 'Russia', 'Young Adult', 'Russian Literature', 'Disability']", "['Nonfiction', 'Christian', 'Religion', 'Inspirational', 'Memoir', 'Biography', 'Spirituality']", "['Fantasy', 'Young Adult', 'Vampires', 'Paranormal', 'Romance', 'Fiction', 'Supernatural']", "['Fantasy', 'Young Adult', 'Vampires', 'Paranormal', 'Fiction', 'Romance', 'Supernatural']", "['Fiction', 'Contemporary', 'Adult', 'Thriller', 'Adult Fiction', 'Audiobook', 'Book Club']", "['Young Adult', 'Fiction', 'Fantasy', 'Dystopia', 'Science Fiction', 'Romance', 'Adventure']", "['Fantasy', 'Mystery', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens', 'Young Adult']", "['Africa', 'Travel', 'Nonfiction', 'History', 'Adventure', 'Liberia', 'Sierra Leone']", "['Mystery', 'Fiction', 'Audiobook', 'Canada', 'Crime', 'Mystery Thriller', 'Detective']", "['Mystery', 'Fiction', 'Crime', 'Southern', 'Thriller', 'Mystery Thriller', 'Audiobook']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Mythology', 'Supernatural']", "['Fiction', 'Thriller', 'Espionage', 'Action', 'Mystery', 'Mystery Thriller', 'Spy Thriller']", "['History', 'Biography', 'Nonfiction', 'Egypt', 'Historical', 'Biography Memoir', 'Audiobook']", "['Fiction', 'Romance', 'France', 'Contemporary', 'Fantasy', 'French Literature', 'Novels']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'Fiction', 'High Fantasy', 'Young Adult Fantasy']", "['Manga', 'Fantasy', 'Graphic Novels', 'Historical Fiction', 'Comics', 'Horror', 'Supernatural']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Africa', 'Fiction', 'School', 'Realistic Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Denmark', 'Adventure', 'Danish', 'Scandinavian Literature']", "['Fiction', 'Historical Fiction', 'War', 'France', 'World War II', 'Historical', 'Literature']", "['Fantasy', 'Young Adult', 'Dragons', 'Romance', 'Magic', 'Fiction', 'High Fantasy']", "['Fiction', 'Crime', 'Thriller', 'Mystery', 'Mystery Thriller', 'Noir', 'Novels']", "['Nonfiction', 'Feminism', 'Science', 'Psychology', 'Gender', 'Sociology', 'Gender Studies']", "['Nonfiction', 'Psychology', 'Sociology', 'Medicine', 'Health', 'Politics', 'Social Science']", "['Historical Fiction', 'Spanish Literature', 'Fiction', 'Historical', 'Spain', 'Novels', 'Drama']", "['Religion', 'Nonfiction', 'Christianity', 'Theology', 'Spirituality', 'Christian', 'History']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'High Fantasy', 'Young Adult Fantasy', 'Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fae', 'Fairies', 'Short Stories']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Urban Fantasy', 'Angels', 'Vampires', 'Fantasy']", "['Angels', 'Young Adult', 'Paranormal', 'Romance', 'Fantasy', 'Paranormal Romance', 'Supernatural']", "['Fiction', 'Japan', 'Japanese Literature', 'Magical Realism', 'Contemporary', 'Novels', 'Literature']", "['Biography', 'Nonfiction', 'Politics', 'History', 'Memoir', 'Presidents', 'Autobiography']", "['Time Travel', 'Young Adult', 'Fantasy', 'Romance', 'Historical Fiction', 'Paranormal', 'Science Fiction']", "['Young Adult', 'Fantasy', 'Paranormal', 'Mythology', 'Vampires', 'Romance', 'Urban Fantasy']", "['Islam', 'Religion', 'History']", "['Fiction', 'Christian', 'Classics', 'Religion', 'Christianity', 'Fantasy', 'Theology']", "['Nonfiction', 'Memoir', 'War', 'Biography', 'Politics', 'History', 'Journalism']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Vampires', 'Witches', 'Demons', 'Magic']", "['Manga', 'Romance', 'Fantasy', 'Paranormal', 'Graphic Novels', 'Shojo', 'Demons']", "['Historical Fiction', 'Romance', 'Historical Romance', 'Historical', 'Mystery', 'Fiction', 'Christmas']", "['Nonfiction', 'History', 'Space', 'Science', 'Biography', 'American History', 'Classics']", "['Manga', 'Romance', 'Shojo', 'Graphic Novels', 'Historical', 'Historical Romance', 'Historical Fiction']", "['Horror', 'Fantasy', 'Fiction', 'Urban Fantasy', 'Dark Fantasy', 'Paranormal', 'Science Fiction']", "['M M Romance', 'Dystopia', 'Romance', 'LGBT', 'Dark', 'Science Fiction', 'Fantasy']", "['Zombies', 'Horror', 'Post Apocalyptic', 'Fiction', 'Apocalyptic', 'Audiobook', 'Fantasy']", "['History', 'Nonfiction', 'Race', 'American History', 'African American', 'Social Justice', 'Historical']", "['Romance', 'Paranormal', 'Paranormal Romance', 'Fantasy', 'Werewolves', 'Shapeshifters', 'Humor']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Contemporary']", "['Manga', 'Manhwa', 'Fantasy', 'Romance', 'Graphic Novels', 'Mythology', 'Supernatural']", "['Romance', 'Contemporary Romance', 'Contemporary', 'New Adult', 'Adult', 'Chick Lit', 'Love']", "['Mystery', 'Fantasy', 'Fiction', 'Romance', 'Paranormal', 'Humor', 'Chick Lit']", "['Fantasy', 'Christian', 'Young Adult', 'Adventure', 'Fiction', 'Christian Fantasy', 'Teen']", "['Manga', 'Romance', 'Shojo', 'Graphic Novels', 'Comics', 'Comics Manga', 'Humor']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Romance', 'Fantasy', 'Fiction', 'Mystery']", "['Novels', 'Fiction', 'Historical Fiction', 'Literature', 'War', 'Egypt', 'Politics']", "['Young Adult', 'Contemporary', 'Fiction', 'LGBT', 'Realistic Fiction', 'Romance', 'Family']", "['Fiction', 'Psychology', 'Contemporary', 'Philosophy', 'France', 'Adult Fiction', 'Travel']", "['Historical Fiction', 'Fiction', 'Historical', 'New York', 'Audiobook', 'American History', 'Novels']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Urban Fantasy', 'Supernatural', 'Magic']", "['Historical Fiction', 'Middle Grade', 'Young Adult', 'Fiction', 'Childrens', 'Historical', 'Mystery']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Adventure', 'Fiction', 'Magic', 'Childrens']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Paranormal Romance', 'Urban Fantasy', 'Supernatural']", "['History', 'Race', 'Politics', 'Nonfiction', 'Anthropology', 'Research', 'Genetics']", "['Romance', 'Novels', 'Fiction', 'Indonesian Literature', 'Love', 'Family', 'Young Adult']", "['Horror', 'Fiction', 'Historical Fiction', 'Historical', 'Mystery', 'Paranormal', 'Ghosts']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Literary Fiction', 'Fantasy', 'Book Club', 'War']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'Erotic Romance', 'Music', 'Erotica']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Short Stories', 'Fantasy', 'Historical', 'Audiobook']", "['Italian Literature']", "['Fantasy', 'Fiction', 'Magic', 'High Fantasy', 'Adventure', 'Epic Fantasy', 'Young Adult']", "['Young Adult', 'Fiction', 'Mystery', 'Historical Fiction', 'Australia', 'Coming Of Age', 'Contemporary']", "['Fiction', 'Humor', 'Classics', 'Comedy', 'British Literature', 'Romance', 'Novels']", "['Classics', 'Fiction', 'Gothic']", "['Travel', 'Christian', 'Nonfiction']", "['Young Adult', 'Angels', 'Paranormal', 'Fantasy', 'Romance', 'Demons', 'Urban Fantasy']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Magic', 'Vampires', 'Witches']", "['Young Adult', 'Mystery', 'Contemporary', 'Fiction', 'Romance', 'Thriller', 'Mystery Thriller']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Fairy Tales', 'Magic', 'Fiction']", "['Vampires', 'Paranormal Romance', 'Romance', 'Paranormal', 'Fantasy', 'Young Adult']", "['Young Adult', 'Adventure', 'Fiction', 'Espionage', 'Action', 'Mystery', 'Thriller']", "['Vampires', 'Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Supernatural', 'Fiction']", "['Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Contemporary', 'Magic', 'Urban Fantasy']", "['Graphic Novels', 'Comics', 'Fiction', 'Fantasy', 'Graphic Novels Comics', 'Comic Book', 'Magical Realism']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Demons', 'Supernatural']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Urban Fantasy', 'Angels', 'Fiction']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Vampires', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Fiction', 'Contemporary', 'Medical', 'Adult Fiction', 'Book Club', 'Adult', 'Audiobook']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Chick Lit', 'Fiction', 'High School']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Music', 'New Adult']", "['Angels', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Demons', 'Paranormal Romance']", "['Mystery', 'Fiction', 'Historical Fiction', 'Young Adult', 'Audiobook', 'Historical', 'Crime']", "['Science', 'Nonfiction', 'Physics', 'Philosophy', 'Astronomy', 'Popular Science', 'Audiobook']", "['Nonfiction', 'Psychology', 'Self Help', 'Business', 'Audiobook', 'Personal Development', 'Sociology']", "['Nonfiction', 'India', 'History', 'Politics', 'Philosophy', 'Sociology', 'Religion']", "['Young Adult', 'Paranormal', 'Fantasy', 'Demons', 'Urban Fantasy', 'Romance', 'Angels']", "['Historical Fiction', 'Poetry', 'Middle Grade', 'Young Adult', 'Fiction', 'Childrens', 'Historical']", "['Young Adult', 'Mystery', 'Horror', 'Paranormal', 'Fantasy', 'Romance', 'Fiction']", "['Fiction', 'Magical Realism', 'Romance', 'Chick Lit', 'Fantasy', 'Contemporary', 'Mystery']", "['Fiction', 'LGBT', 'Contemporary', 'Romance', 'Chick Lit', 'Adult', 'Adult Fiction']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Dystopia', 'South Africa', 'Africa', 'Fantasy']", "['Fiction', 'Contemporary', 'Asia', 'Asian Literature', 'Family', 'Novels', 'Literary Fiction']", "['Romance', 'Contemporary Romance', 'Fiction', 'Contemporary', 'Westerns', 'Historical', 'Romantic Suspense']", "['Self Help', 'Nonfiction', 'Spirituality', 'Personal Development', 'Psychology', 'Inspirational', 'Philosophy']", "['Young Adult', 'Contemporary', 'Romance', 'Mystery', 'Fiction', 'Fantasy', 'Thriller']", "['Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Crime', 'Thriller']", "['Christian', 'Nonfiction', 'Faith', 'Christian Living', 'Spirituality', 'Christianity', 'Self Help']", "['Classics', 'Fiction', 'Short Stories', 'Literature', 'Philosophy', '20th Century', 'Fantasy']", "['Young Adult', 'Paranormal', 'Mystery', 'Fantasy', 'Magical Realism', 'Fiction', 'Contemporary']", "['Fantasy', 'Historical Fiction', 'Historical Fantasy', 'Heroic Fantasy', 'Fiction', 'Sword and Sorcery', 'Adventure']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Adventure', 'Fiction', 'Childrens', 'Time Travel']", "['Nonfiction', 'Biography', 'Autobiography', 'Memoir', 'Humor', 'Audiobook', 'Biography Memoir']", "['Young Adult', 'Fantasy', 'Science Fiction', 'Fiction', 'Aliens', 'Adventure', 'Paranormal']", "['Romance', 'Young Adult', 'Contemporary', 'High School', 'Realistic Fiction', 'Contemporary Romance', 'New Adult']", "['Nonfiction', 'History', 'Biography', 'World War II', 'War', 'Historical', 'Audiobook']", "['Fiction', 'Jewish', 'Contemporary', 'Literary Fiction', 'Literature', 'British Literature', 'Unfinished']", "['Young Adult', 'Dystopia', 'Romance', 'Science Fiction', 'Fantasy', 'Fiction', 'Futuristic']", "['Fantasy', 'Romance', 'Fiction', 'Paranormal', 'Vampires', 'Witches', 'Magic']", "['Horror', 'Fiction', 'Gothic', 'Ghost Stories', 'Ghosts', 'Paranormal', 'Mystery']", "['Young Adult', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Demons', 'Vampires', 'Supernatural']", "['Horror', 'Short Stories', 'Ghost Stories', 'Fiction', 'Anthologies', 'English Literature']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'France', 'Book Club', 'Audiobook']", "['Science Fiction', 'Fantasy', 'Short Stories', 'Fiction', 'Space Opera', 'Novella', 'Space']", "['Fantasy', 'Young Adult', 'Romance', 'Fae', 'Paranormal', 'Fairies', 'Magic']", "['Paranormal', 'Paranormal Romance', 'Vampires', 'Romance', 'Fantasy', 'Shapeshifters', 'Urban Fantasy']", "['Mystery', 'Fiction', 'Thriller', 'Japan', 'Crime', 'Mystery Thriller', 'Japanese Literature']", "['Fiction', 'Childrens', 'Middle Grade']", "['Inspirational', 'Spirituality', 'Psychology']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Mythology', 'Historical', 'Fairy Tales', 'Retellings']", "['Romance', 'Historical Romance', 'Historical', 'Westerns', 'Fiction', 'Western Romance', 'Historical Fiction']", "['Fantasy', 'Young Adult', 'Paranormal', 'Vampires', 'Romance', 'Werewolves', 'Supernatural']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Urban Fantasy', 'Magic']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Romance', 'Magic', 'Urban Fantasy']", "['Fiction', 'France', 'French Literature', 'Literature', 'Novels', 'Contemporary', 'Art']", "['Young Adult', 'Romance', 'Contemporary', 'Realistic Fiction', 'Fiction', 'Young Adult Contemporary', 'Family']", "['Fantasy', 'Young Adult', 'Romance', 'Vampires', 'Paranormal', 'Fiction', 'Supernatural']", "['Classics', 'Short Stories', 'Fiction', 'Literature', '20th Century', 'Greece', 'Philosophy']", "['Nonfiction', 'Biography', 'Autobiography', 'Music', 'Memoir', 'Biography Memoir', 'Teen']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Scandinavian Literature', 'Sweden', 'Nordic Noir']", "['Horror', 'Short Stories', 'Classics', 'Fiction', 'Fantasy', 'School', 'Gothic']", "['Paranormal', 'Urban Fantasy', 'Fantasy', 'Romance', 'Mystery', 'Paranormal Romance', 'Ghosts']", "['Fantasy', 'Horror', 'Science Fiction', 'Fiction', 'Speculative Fiction', 'Occult', 'Novels']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Urban Fantasy', 'Paranormal Romance', 'Demons']", "['History', 'Nonfiction', 'Politics', 'Germany']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Demons', 'Fantasy', 'Angels', 'Urban Fantasy']", "['Fiction', 'Novels', 'Indian Literature', 'Classics', 'India', 'Historical Fiction', 'Historical']", "['Science Fiction', 'Fiction', 'Space', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Mystery']", "['Fiction', 'Contemporary', 'Young Adult', 'Coming Of Age', 'Literary Fiction', 'Book Club', 'Family']", "['Nonfiction', 'Science', 'History', 'Biology', 'Medicine', 'Medical', 'Health']", "['Horror', 'Science Fiction', 'Fiction', 'Thriller', 'Mystery', 'Classics', 'Contemporary']", "['Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Adult', 'Young Adult', 'Adult Fiction']", "['Chick Lit', 'Young Adult', 'Fiction', 'Adult Fiction', 'Contemporary', 'Audiobook', 'Unfinished']", "['Horror', 'Classics', 'Fiction', 'Mystery', 'Gothic', 'Crime', 'Thriller']", "['Fantasy', 'Short Stories', 'Fiction', 'Young Adult', 'Magic', 'Childrens', 'Middle Grade']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Fantasy', 'Space', 'Cultural']", "['Fiction', 'Romance', 'Chick Lit', 'Contemporary', 'Audiobook', 'Drama', 'Adult']", "['Spirituality', 'Self Help', 'Inspirational', 'Religion', 'Nonfiction', 'Hinduism']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Historical Mystery', 'Crime', 'Audiobook']", "['Plays', 'Theatre', 'School', 'Fiction', 'France', 'Drama', 'Classics']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Magic']", "['Fiction', 'Literary Fiction', 'Contemporary', 'Book Club', 'Adult Fiction', 'Mystery', 'Audiobook']", "['Novels', 'Classics', 'British Literature', 'Adventure', 'Fiction']", "['Nonfiction', 'Parenting', 'Memoir', 'Biography', 'China', 'Biography Memoir', 'Education']", "['Young Adult', 'Historical Fiction', 'Fiction', 'Middle Grade', 'Realistic Fiction', 'Coming Of Age', 'Historical']", "['Steampunk', 'Young Adult', 'Fantasy', 'Romance', 'Historical Fiction', 'Paranormal', 'Science Fiction']", "['Horror', 'Short Stories', 'Ghost Stories', 'Ghosts', 'Fantasy', 'British Literature', 'Supernatural']", "['Memoir', 'Nonfiction', 'Feminism', 'Queer', 'Biography', 'LGBT', 'Biography Memoir']", "['Manga', 'Comics', 'Historical Fiction', 'Fiction', 'Fantasy', 'Seinen', 'Graphic Novels']", "['China', 'Fiction', 'Historical Fiction', 'Asia', 'Chinese Literature', 'Asian Literature', 'Novels']", "['Middle Grade', 'Fiction', 'Childrens', 'Realistic Fiction', 'Contemporary', 'Audiobook', 'Family']", "['Young Adult', 'Paranormal', 'Ghosts', 'Fantasy', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Language', 'Aliens']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Retellings', 'High School', 'Realistic Fiction']", "['Young Adult', 'Mystery', 'Fiction', 'Contemporary', 'Romance', 'Thriller', 'Chick Lit']", "['Young Adult', 'Mystery', 'Contemporary', 'Romance', 'Fiction', 'Thriller', 'Mystery Thriller']", "['Fantasy', 'Epic Fantasy', 'Fiction', 'High Fantasy', 'Magic', 'Dark Fantasy', 'Audiobook']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary Romance', 'Humor', 'Love', 'Adult']", "['Romance', 'Fiction', 'Contemporary', 'Young Adult', 'Poetry', 'Adult', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Mythology', 'Magic', 'Fiction']", "['Vampires', 'Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Urban Fantasy', 'Horror']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Drama', 'Suspense', 'Contemporary']", "['Politics', 'Nonfiction', 'History', 'War', 'Biography', 'Presidents', 'American History']", "['Dystopia', 'Young Adult', 'Romance', 'Science Fiction', 'Fantasy', 'Post Apocalyptic', 'Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Dark Fantasy', 'Audiobook', 'War', 'High Fantasy']", "['Fantasy', 'Romance', 'LGBT', 'M M Romance', 'Adult', 'Queer', 'Fiction']", "['Fiction', 'Crime']", "['Fantasy', 'Urban Fantasy', 'Mystery', 'Fiction', 'Crime', 'Paranormal', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Paranormal', 'Werewolves', 'Fairy Tales']", "['Portugal', 'Romance', 'Portuguese Literature']", "['Fantasy', 'Fiction', 'Romance', 'Historical Fiction', 'Magic', 'Young Adult', 'Adult']", "['Time Travel', 'Historical Fiction', 'Young Adult', 'Fantasy', 'Romance', 'Historical', 'Christian Fiction']", "['Young Adult', 'Werewolves', 'Paranormal', 'Fantasy', 'Romance', 'Urban Fantasy', 'Shapeshifters']", "['Young Adult', 'Fantasy', 'Angels', 'Romance', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Young Adult', 'Horror', 'Paranormal', 'Fantasy', 'Ghosts', 'Romance', 'Supernatural']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Romance', 'Shapeshifters', 'Magic', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Magic', 'Paranormal Romance', 'Supernatural']", "['Young Adult', 'Fantasy', 'Mythology', 'Romance', 'Paranormal', 'Fiction', 'Paranormal Romance']", "['Romance', 'Historical Romance', 'Historical Fiction', 'Historical', 'Fiction', 'Audiobook', 'Regency']", "['Young Adult', 'Fantasy', 'Paranormal', 'Mythology', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Nonfiction', 'Memoir', 'Humor', 'Biography', 'Audiobook', 'Comedy', 'Autobiography']", "['Manga', 'Shojo', 'Romance', 'Fantasy', 'Historical Fiction', 'Graphic Novels', 'Historical Romance']", "['Music', 'Biography', 'Nonfiction', 'Memoir', 'Autobiography', 'Biography Memoir', 'Audiobook']", "['Fantasy', 'Young Adult', 'Mythology', 'Paranormal', 'Urban Fantasy', 'Magic', 'Romance']", "['Romance', 'Erotica', 'Contemporary', 'Contemporary Romance', 'Erotic Romance', 'Music', 'Adult']", "['Fiction', 'Novels', 'Literature', 'Contemporary', 'Literary Fiction', 'American', 'Unfinished']", "['Steampunk', 'Fiction', 'Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Paranormal', 'Mystery', 'Horror', 'Historical Fiction']", "['Fantasy', 'Fiction', 'High Fantasy', 'Adventure', 'Romance', 'Adult', 'Epic Fantasy']", "['Young Adult', 'Fiction', 'Chick Lit', 'Contemporary', 'Romance', 'Adult', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Mythology', 'Romance', 'Paranormal', 'Greek Mythology', 'Urban Fantasy']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Zombies', 'Supernatural']", "['Young Adult', 'Contemporary', 'Humor', 'Fiction', 'Audiobook', 'LGBT', 'Adventure']", "['Erotica', 'Contemporary', 'Adult', 'Romance', 'Erotic Romance', 'New Adult', 'M F Romance']", "['Thriller', 'Crime', 'Mystery Thriller', 'Fiction']", "['Georgian', 'School', 'Short Stories', 'Classics', 'Fiction', 'Young Adult']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Thriller', 'Germany', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'China', 'Historical', 'Asian Literature', 'Audiobook', 'Adult Fiction']", "['Classics', 'Fiction', 'Spain', 'Historical Fiction', 'School', 'Novels', 'Spanish Literature']", "['Mystery', 'Psychology', 'Fiction']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Fiction', 'Magic', 'Mythology', 'Vampires']", "['Fantasy', 'Young Adult', 'Fiction', 'Dystopia', 'Science Fiction', 'Romance', 'Fashion']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'British Literature', 'Adult', 'Audiobook']", "['Fiction', 'Czech Literature', 'Literature', 'Novels', '20th Century']", "['Angels', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Urban Fantasy', 'Paranormal Romance']", "['Urban Fantasy', 'Paranormal', 'Fantasy', 'Romance', 'Mystery', 'Paranormal Romance', 'Ghosts']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Romance', 'Historical', 'Fiction', 'Young Adult Fantasy']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'Scandinavian Literature', 'Detective']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Angels', 'Paranormal Romance']", "['Fantasy', 'Fiction', 'Dark Fantasy', 'Epic Fantasy', 'High Fantasy', 'Adult', 'Dark']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Childrens', 'Adventure', 'Fairy Tales']", "['Young Adult', 'Dystopia', 'Romance', 'Fantasy', 'Science Fiction', 'Fiction', 'Audiobook']", "['Nonfiction', 'Science', 'Environment', 'Travel', 'Nature', 'Memoir', 'Adventure']", "['Fiction', 'Mystery', 'Young Adult', 'Thriller', 'Contemporary', 'Mystery Thriller', 'Crime']", "['Graphic Novels', 'Young Adult', 'Comics', 'Fantasy', 'Fiction', 'Horror', 'Paranormal']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Chick Lit', 'Young Adult Contemporary', 'Realistic Fiction']", "['Fiction', 'Philosophy', 'Pakistan', 'Novels', 'Classics', 'Literature', 'Spirituality']", "['Science Fiction', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Robots', 'Thriller', 'Apocalyptic']", "['Middle Grade', 'Childrens', 'Realistic Fiction', 'Fiction', 'Graphic Novels', 'Diary', 'Contemporary']", "['Paranormal', 'Fantasy', 'Paranormal Romance', 'Dragons', 'Urban Fantasy', 'Shapeshifters', 'Magic']", "['Science Fiction', 'Fiction', 'Audiobook', 'Fantasy', 'Humor', 'Aliens', 'Science Fiction Fantasy']", "['Angels', 'Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Angels', 'Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Fantasy', 'Childrens', 'Fiction', 'Short Stories', 'Classics', 'Finnish Literature', 'Scandinavian Literature']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Middle Grade', 'Childrens', 'Graphic Novels', 'Fantasy']", "['Fiction', 'Italian Literature', 'Italy', 'Classics', 'Novels', '20th Century', 'Literature']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Post Apocalyptic', 'Romance']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Mythology', 'Paranormal Romance', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Mythology', 'Romance', 'Paranormal', 'Greek Mythology', 'Fiction']", "['Paranormal', 'Romance', 'Fantasy', 'Angels', 'Young Adult', 'New Adult', 'Paranormal Romance']", "['Novels', 'Romance', 'Fiction', 'Romantic', 'Drama', 'Literature', 'Love']", "['Nonfiction', 'History', 'World War II', 'War', 'Adventure', 'Survival', 'Military Fiction']", "['Mystery', 'Mystery Thriller', 'Suspense', 'Crime', 'Contemporary', 'Adult', 'Thriller']", "['Georgian', 'Historical Fiction', 'Classics', 'Fiction', 'School', 'Romance', 'Novels']", "['Poetry', 'Fiction', 'Classics', 'Psychology', 'Literature', 'Philosophy', 'Novels']", "['Classics', 'Historical Fiction', 'Fiction', 'Historical Romance', 'Italy', 'Italian Literature', '20th Century']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Mythology', 'Paranormal Romance', 'Greek Mythology']", "['Nonfiction', 'Psychology', 'Science', 'Technology', 'Sociology', 'Self Help', 'Internet']", "['Young Adult', 'Fantasy', 'Historical Fiction', 'Horror', 'Historical', 'Fiction', 'Gothic']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Mystery Thriller', 'Suspense', 'British Literature']", "['Self Help', 'Nonfiction', 'Spirituality', 'Personal Development', 'Psychology', 'Metaphysics', 'Research']", "['Horror', 'Fiction', 'Historical Fiction', 'Fantasy', 'Science Fiction', 'Dystopia', 'Historical']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Adventure', 'Science Fiction Fantasy', 'Novels', 'High Fantasy']", "['Horror', 'Vampires', 'Fiction', 'Paranormal', 'Thriller', 'Fantasy', 'Humor']", "['Nonfiction', 'Psychology', 'Neuroscience', 'Brain', 'Philosophy', 'Biology', 'Self Help']", "['Thriller', 'Mystery', 'Crime', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Scandinavian Literature']", "['Young Adult', 'Sports', 'Romance', 'Fiction', 'New Adult', 'Contemporary', 'Sports Romance']", "['Mystery', 'Psychology', 'Fiction', 'Crime']", "['Fiction', 'Westerns', 'Historical Fiction', 'Historical', 'Canada', 'Humor', 'Adventure']", "['Fiction', 'Classics', 'Humor', 'Comedy', 'British Literature', 'Audiobook', 'Novels']", "['Young Adult', 'Paranormal', 'Romance', 'Historical Fiction', 'Fantasy', 'Werewolves', 'Historical']", "['Horror', 'Fiction', 'Witches', 'Gothic', 'Classics', 'Fantasy', 'Novella']", "['Young Adult', 'Romance', 'Contemporary', 'Sports', 'High School', 'Chick Lit', 'Sports Romance']", "['Fiction', 'Fantasy', 'Horror', 'Humor', 'Contemporary', 'Audiobook', 'Adult']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Dystopia', 'Fiction', 'Magic', 'Adventure']", "['Young Adult', 'Dystopia', 'Fantasy', 'Romance', 'Science Fiction', 'Post Apocalyptic', 'Adventure']", "['Young Adult', 'Paranormal', 'Ghosts', 'Fantasy', 'Romance', 'Supernatural', 'Paranormal Romance']", "['Fiction', 'Adventure', 'Polish Literature', 'Classics', '20th Century']", "['Short Stories', 'Horror', 'Fiction', 'Dark']", "['Fiction', 'Humor', 'Classics', 'Comedy', 'British Literature', 'Audiobook', '20th Century']", "['Time Travel', 'Historical Fiction', 'Young Adult', 'Fantasy', 'Romance', 'Christian Fiction', 'Historical']", "['History', 'Nonfiction', 'World War II', 'Historical', 'Biography', 'War', 'Germany']", "['Fiction', 'Dutch Literature', 'Classics', 'Short Stories', 'Literature', 'Audiobook', '20th Century']", "['Classics', 'Fiction', 'Audiobook', 'Literature']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Fiction', 'Young Adult Contemporary', 'Realistic Fiction']", "['Science Fiction', 'Fiction', 'Young Adult', 'Fantasy', 'Dystopia', 'Audiobook', 'Adventure']", "['Money', 'Jewish', 'Finance', 'Nonfiction']", "['Young Adult', 'Zombies', 'Dystopia', 'Horror', 'Post Apocalyptic', 'Science Fiction', 'Fiction']", "['Nonfiction', 'Memoir', 'Crime', 'True Crime', 'China', 'Travel', 'Biography']", "['Romance', 'Young Adult', 'Fiction', 'Contemporary', 'Love', 'Chick Lit', 'Indian Literature']", "['Essays', 'Nonfiction', 'Music', 'Art', 'British Literature', 'Criticism']", "['Fantasy', 'Fiction', 'Fan Fiction', 'Philosophy', 'Science Fiction', 'Young Adult', 'Humor']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Steampunk', 'Historical Fiction', 'Urban Fantasy']", "['Fiction', 'Romance', 'Contemporary', 'Book Club', 'Adult Fiction', 'Adult', 'Chick Lit']", "['Fiction', 'Historical Fiction', 'Historical', 'New York', 'Literary Fiction', 'Audiobook', 'Book Club']", "['Fiction', 'Mystery', 'Chick Lit', 'Contemporary', 'Drama', 'Audiobook', 'Womens Fiction']", "['Fiction', 'Mystery', 'Thriller', 'Espionage', 'Classics', 'Crime', 'Mystery Thriller']", "['Fantasy', 'Fiction', 'Magic', 'Urban Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Young Adult']", "['Nonfiction', 'History', 'Biography', 'Tv', 'Pop Culture', 'Adult', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Historical Fiction', 'Crime', 'Mystery', 'Southern Gothic']", "['Business', 'Nonfiction', 'Entrepreneurship', 'Management', 'Leadership', 'Buisness', 'Self Help']", "['Historical Fiction', 'Middle Grade', 'Fiction', 'Young Adult', 'Graphic Novels', 'Childrens', 'Mystery']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Adult', 'New Adult', 'Fiction']", "['Paranormal Romance', 'Werewolves', 'Paranormal', 'Shapeshifters', 'Romance', 'Wolves', 'Supernatural']", "['Politics', 'Theory', 'History', 'Philosophy', 'Nonfiction', 'Lenin', 'Political Science']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'World War II', 'Historical Mystery', 'British Literature']", "['Romance', 'Fiction', 'Historical Fiction', 'Chick Lit', 'Contemporary', 'Historical', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'High Fantasy', 'Fiction', 'Young Adult Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Romance', 'High Fantasy', 'Young Adult Fantasy', 'Fiction', 'Adventure']", "['Memoir', 'Biography Memoir', 'Nonfiction', 'Biography']", "['Dystopia', 'Young Adult', 'Zombies', 'Post Apocalyptic', 'Science Fiction', 'Fantasy', 'Romance']", "['Fiction', 'Historical Fiction', 'Historical', 'Romance', 'British Literature', 'Coming Of Age', 'Book Club']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Magic', 'High Fantasy']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Contemporary Romance', 'High School', 'Realistic Fiction']", "['Historical Fiction', 'Fiction', 'Thriller', 'Mystery', 'Historical', 'Spanish Literature', 'Germany']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Autobiography', 'Biography Memoir', 'Adult']", "['M M Romance', 'LGBT', 'Romance', 'Young Adult', 'Contemporary', 'Gay', 'Queer']", "['Vampires', 'Young Adult', 'Fantasy', 'Paranormal', 'Dystopia', 'Romance', 'Urban Fantasy']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Romance', 'Fantasy', 'Fiction', 'Thriller']", "['Fiction', 'Science Fiction', 'Fantasy', 'Mystery', 'Thriller', 'Paranormal', 'Adventure']", "['Fiction', 'Roman', 'Italian Literature', 'Historical Fiction', 'Italy', 'Lebanon', 'War']", "['Italian Literature', 'Fiction', 'Plays', 'Drama']", "['Psychology', 'Short Stories', 'Fiction']", "['Young Adult', 'Romance', 'Abuse', 'Contemporary', 'High School', 'Realistic Fiction', 'Contemporary Romance']", "['History', 'Nonfiction', 'Military Fiction', 'Military History', 'War', 'Biography', 'Audiobook']", "['Nonfiction', 'Memoir', 'Humor', 'Audiobook', 'Biography', 'Comedy', 'Biography Memoir']", "['History', 'Nonfiction', 'Biography', 'American History', 'Presidents', 'Politics', 'Historical']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Magic', 'Mythology', 'Urban Fantasy']", "['Fantasy', 'Mythology', 'Middle Grade', 'Adventure', 'Magic', 'Fiction', 'Young Adult']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Romance', 'Fantasy', 'Fiction', 'Space']", "['Young Adult', 'Paranormal', 'Mystery', 'Fantasy', 'Ghosts', 'Romance', 'Fiction']", "['Novels', 'Fiction', 'Romance', 'Literature', 'Romantic', 'Love', 'Contemporary']", "['Fantasy', 'Young Adult', 'Witches', 'Paranormal', 'Magic', 'Romance', 'Fiction']", "['Fantasy', 'Romance', 'Young Adult', 'Paranormal', 'Paranormal Romance', 'Magic', 'Fiction']", "['History', 'Biography', 'Nonfiction', 'Russia', 'Historical', 'Biography Memoir', 'Russian History']", "['Angels', 'Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Dystopia', 'Young Adult', 'Fiction', 'Science Fiction', 'Paranormal', 'Young Adult Fantasy', 'Audiobook']", "['Young Adult', 'Fantasy', 'Mythology', 'Paranormal', 'Greek Mythology', 'Urban Fantasy', 'Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Magic', 'Fiction', 'High Fantasy']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Childrens', 'Adventure', 'Juvenile']", "['Romance', 'Science Fiction', 'Aliens', 'Erotica', 'Paranormal', 'Fantasy', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'High Fantasy', 'Fiction', 'Adventure']", "['Fiction', 'Thriller', 'Historical Fiction', 'War', 'Adventure', 'Action', 'Classics']", "['Novels', 'Romance', 'Romantic', 'Short Stories', 'Social']", "['Middle Grade', 'Fantasy', 'Realistic Fiction', 'Childrens', 'Fiction', 'Young Adult', 'Contemporary']", "['Politics', 'Nonfiction', 'Conspiracy Theories']", "['Fantasy', 'Historical Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Historical']", "['Romance', 'Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Audiobook']", "['Historical Fiction', 'Fiction', 'World War II', 'Romance', 'Historical', 'War', 'Adult Fiction']", "['Dystopia', 'Young Adult', 'Science Fiction', 'Romance', 'Fantasy', 'Paranormal', 'Fiction']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Middle Grade', 'Historical Fiction', 'Action']", "['Christian', 'Fiction', 'Christian Fiction', 'Religion', 'Inspirational', 'Christianity', 'Spirituality']", "['Fiction', 'Science Fiction', 'Thriller', 'Cyberpunk', 'Audiobook', 'Science Fiction Fantasy', 'Mystery']", "['Georgian', 'Fiction', 'Magical Realism', 'Classics']", "['Young Adult', 'Dystopia', 'Fantasy', 'Science Fiction', 'Romance', 'Fiction', 'Paranormal']", "['History', 'Nonfiction', 'Biography', 'Historical', 'American History', 'Civil War', 'Politics']", "['Nonfiction', 'Feminism', 'Memoir', 'Humor', 'Biography', 'Audiobook', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Mythology', 'Audiobook', 'Young Adult Fantasy']", "['Young Adult', 'Dystopia', 'Fantasy', 'Romance', 'Paranormal', 'Magic', 'Science Fiction']", "['Fiction', 'Historical Fiction', 'Science Fiction', 'Time Travel', 'Horror', 'Fantasy', 'Thriller']", "['Fiction', 'Literary Fiction', 'Literature', '20th Century', 'Psychology', 'Classics', 'American']", "['Young Adult', 'Contemporary', 'Romance', 'Paranormal', 'Fantasy', 'Fiction', 'Mystery']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Dragons', 'Adult']", "['Politics', 'Nonfiction', 'History', 'Political Science', 'Psychology', 'American History', 'Sociology']", "['Dystopia', 'Young Adult', 'Romance', 'Science Fiction', 'Fiction', 'Post Apocalyptic', 'Fantasy']", "['Young Adult', 'Graphic Novels', 'Romance', 'Contemporary', 'Fiction', 'Teen', 'Music']", "['Young Adult', 'Contemporary', 'Romance', 'Realistic Fiction', 'Fiction', 'Death', 'Young Adult Contemporary']", "['Horror', 'Fiction', 'Queer', 'Thriller', 'Contemporary', 'LGBT', 'Dark']", "['Historical Fiction', 'Romance', 'Young Adult', 'Christian Fiction', 'Christian', 'Fantasy', 'Fairy Tales']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Literature', 'Novels', 'British Literature', 'Book Club']", "['Horror', 'Vampires', 'Fiction', 'Science Fiction', 'Thriller', 'Fantasy', 'Mystery']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Adult', 'Audiobook', 'Adult Fiction']", "['Thriller', 'Fiction', 'Dystopia', 'Young Adult', 'Science Fiction', 'Suspense', 'Adult Fiction']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Denmark', 'Suspense']", "['Health', 'Nonfiction', 'Food', 'Nutrition', 'Swedish Literature', 'Self Help', 'Pseudoscience']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Audiobook', 'Adventure', 'High Fantasy', 'Magic']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adventure', 'Audiobook', 'Adult']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Vampires', 'Fantasy', 'Urban Fantasy', 'New Adult']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Chick Lit', 'Young Adult Contemporary']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Teen', 'Young Adult Contemporary']", "['Young Adult', 'Fantasy', 'Mythology', 'Romance', 'Paranormal', 'Paranormal Romance', 'Greek Mythology']", "['Fantasy', 'Fiction', 'Steampunk', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Adult']", "['Fantasy', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens', 'Young Adult', 'Magic']", "['Horror', 'Fiction', 'Mystery', 'Thriller', 'Swedish Literature', 'Fantasy', 'Sweden']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Suspense', 'Mystery', 'Adult']", "['Manga', 'Zombies', 'Horror', 'Graphic Novels', 'Action', 'Shonen', 'Comics']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Young Adult Fantasy', 'Fiction', 'Adventure']", "['Romance', 'Fiction', 'Erotica', 'BDSM', 'Adult', 'Contemporary', 'Contemporary Romance']", "['Mystery', 'Crime', 'Thriller', 'Fiction', 'Mystery Thriller', 'Denmark', 'Scandinavian Literature']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Magic', 'Paranormal Romance', 'Witches']", "['Fantasy', 'Young Adult', 'Horror', 'Romance', 'Fiction', 'Paranormal', 'Mystery']", "['Fantasy', 'Urban Fantasy', 'Fiction', 'Mystery', 'Paranormal', 'Science Fiction', 'Thriller']", "['Historical Fiction', 'Fiction', 'Spain', 'Historical', 'Spanish Literature', 'Romance', 'World War II']", "['Young Adult', 'Dystopia', 'Horror', 'Zombies', 'Post Apocalyptic', 'Science Fiction', 'Apocalyptic']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Historical Fiction', 'African American', 'Novels', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Dragons', 'Childrens', 'Adventure', 'Magic']", "['Young Adult', 'Science Fiction', 'Romance', 'Paranormal', 'Fantasy', 'Dystopia', 'Mystery']", "['Fantasy', 'Young Adult', 'Paranormal', 'Mythology', 'Romance', 'Novella', 'Paranormal Romance']", "['Fantasy', 'Fiction', 'Young Adult', 'Contemporary', 'Adventure', 'Adult', 'Coming Of Age']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Mystery', 'Magic', 'Urban Fantasy']", "['Fiction', 'Historical Fiction', 'Historical', 'Mystery', 'Audiobook', 'Thriller', 'Drama']", "['Steampunk', 'Young Adult', 'Fantasy', 'Historical Fiction', 'Paranormal', 'Fiction', 'Vampires']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Fantasy', 'Magical Realism', 'Adult']", "['Fantasy', 'Young Adult', 'Paranormal', 'Mystery', 'Fiction', 'Urban Fantasy', 'Romance']", "['Paranormal', 'Young Adult', 'Angels', 'Fantasy', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Historical Fiction', 'Fiction', 'Historical', 'Magical Realism', 'Jewish', 'Book Club', 'Adult Fiction']", "['Fantasy', 'Fiction', 'Middle Grade', 'Christian', 'Young Adult', 'Christian Fiction', 'Childrens']", "['Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Science Fiction', 'Time Travel', 'Fantasy']", "['Fiction', 'Romance', 'Literary Fiction', 'Contemporary', 'Novels', 'Audiobook', 'Literature']", "['Fantasy', 'Young Adult', 'Fan Fiction', 'Video Games', 'Science Fiction Fantasy']", "['Fiction', 'Sports', 'Baseball', 'Contemporary', 'Literary Fiction', 'Novels', 'Audiobook']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Paranormal', 'Swedish Literature', 'Witches']", "['Aviation', 'History', 'Military Fiction', 'Nonfiction', 'Military History', 'Aircraft', 'War']", "['Horror', 'Novels', 'Fiction', 'Fantasy', 'Crime', 'Thriller', 'Audiobook']", "['Thriller', 'Mystery', 'Crime', 'Fiction', 'Mystery Thriller', 'Italian Literature', 'Detective']", "['Fiction', 'Humor', 'Mystery', 'Thriller', 'Crime', 'Comedy', 'British Literature']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fantasy', 'Fiction', 'Romance', 'Paranormal']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Vampires', 'Paranormal Romance', 'Magic']", "['Young Adult', 'Contemporary', 'Romance', 'Young Adult Contemporary', 'Realistic Fiction', 'Fiction', 'Family']", "['Gothic', 'Horror']", "['Paranormal', 'Vampires', 'Young Adult', 'Romance', 'Fantasy', 'Paranormal Romance', 'Supernatural']", "['Biography', 'Nonfiction', 'Business', 'Technology', 'History', 'Biography Memoir', 'Audiobook']", "['Fantasy', 'Fan Fiction', 'Fiction', 'Vampires', 'Romance', 'Humor', 'Young Adult']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'Audiobook', 'High Fantasy', 'Adventure', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Supernatural', 'Urban Fantasy', 'Vampires']", "['Young Adult', 'Dystopia', 'Romance', 'Science Fiction', 'Fantasy', 'Fiction', 'Post Apocalyptic']", "['Young Adult', 'Time Travel', 'Romance', 'Fantasy', 'Contemporary', 'Science Fiction', 'Paranormal']", "['Fiction', 'Romance', 'Young Adult', 'Fantasy', 'Contemporary', 'Paranormal', 'Adult']", "['Young Adult', 'Poetry', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Romance', 'LGBT']", "['Nonfiction', 'Science', 'History', 'Food', 'Anthropology', 'Evolution', 'Biology']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Mystery Thriller', 'Police', 'British Literature']", "['Historical Fiction', 'Fiction', 'Canada', 'Family', 'Ireland', 'Historical', 'Contemporary']", "['Urban Fantasy', 'Vampires', 'Paranormal', 'Supernatural', 'Ghosts', 'Fantasy', 'Horror']", "['Fiction', 'Short Stories', 'Greece', 'Literature', '20th Century']", "['History', 'Nonfiction', 'American History', 'Westerns', 'Historical', 'Biography', 'Adventure']", "['Fantasy', 'Witches', 'Young Adult', 'Paranormal', 'Fiction', 'Magic', 'Supernatural']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Classics', 'Weird Fiction', 'Gothic']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Romantic Suspense', 'Suspense', 'Mystery']", "['Nonfiction', 'Humor', 'Audiobook', 'Memoir', 'Biography', 'Comedy', 'Autobiography']", "['Fiction', 'Greece', 'Historical Fiction', 'Literature', '20th Century', 'Classics', 'War']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Romance', 'Retellings', 'Fiction', 'Dystopia']", "['Fantasy', 'Historical Fiction', 'Romance', 'Fiction', 'Mythology', 'LGBT', 'Historical']", "['Fiction', 'Humor', 'Middle Grade', 'Childrens', 'Graphic Novels', 'Realistic Fiction', 'Young Adult']", "['Vampires', 'Paranormal', 'Young Adult', 'Romance', 'Fantasy', 'Paranormal Romance', 'Supernatural']", "['Nonfiction', 'Christian', 'Biography', 'Memoir', 'Faith', 'Africa', 'Christianity']", "['Fantasy', 'Angels', 'Young Adult', 'Paranormal', 'Romance', 'Paranormal Romance', 'Demons']", "['Young Adult', 'Romance', 'Contemporary', 'Mystery', 'Fantasy', 'Fiction', 'Realistic Fiction']", "['Nonfiction', 'History', 'War', 'Military Fiction', 'Memoir', 'Biography', 'Psychology']", "['Young Adult', 'Fantasy', 'Zombies', 'Paranormal', 'Romance', 'Horror', 'Retellings']", "['Fantasy', 'Young Adult', 'Fiction', 'Adventure', 'Middle Grade', 'Short Stories', 'Medieval']", "['Horror', 'Fantasy', 'Mystery', 'Fiction', 'Magical Realism', 'Gothic', 'Literature']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Historical Fiction', 'France', 'Adult', 'M F Romance']", "['Nonfiction', 'Psychology', 'Philosophy', 'Religion', 'Science', 'Sociology', 'Politics']", "['Mystery', 'Cozy Mystery', 'Fiction', 'Mystery Thriller']", "['Nonfiction', 'Memoir', 'True Crime', 'Biography', 'Autobiography', 'Crime', 'Biography Memoir']", "['Fiction', 'Historical Fiction', 'Romance', 'Book Club', 'Asia', 'Audiobook', 'Historical']", "['Poetry', '19th Century', 'Gothic']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Fiction', 'Adventure', 'Middle Grade', 'Teen']", "['Witches', 'Romance', 'Paranormal Romance', 'Young Adult', 'Demons', 'Urban Fantasy', 'Angels']", "['Young Adult', 'Dystopia', 'Romance', 'Science Fiction', 'Fiction', 'Mental Health', 'Fantasy']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Mystery Thriller', 'Suspense', 'Audiobook']", "['Thriller', 'Fiction', 'Adventure', 'Short Stories', 'Action', 'Mystery Thriller', 'Science Fiction']", "['Contemporary Romance', 'Contemporary', 'Humor', 'Adult', 'New Adult', 'Chick Lit', 'Erotica']", "['Philosophy', 'Nonfiction', 'Essays', 'Religion', 'Logic', 'Classics', 'Science']", "['Young Adult', 'Romance', 'Fantasy', 'Contemporary', 'Paranormal', 'Ghosts', 'Fiction']", "['Young Adult', 'Fiction', 'Middle Grade', 'Contemporary', 'Realistic Fiction', 'Childrens', 'School']", "['Memoir', 'Nonfiction', 'Biography', 'LGBT', 'Queer', 'Biography Memoir', 'Autobiography']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Mystery', 'Fiction', 'Supernatural']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Chick Lit', 'Love', 'Contemporary Romance']", "['Fiction', 'Thriller', 'Adult', 'Drama', 'Novels', 'Mystery', 'Adult Fiction']", "['Fiction', 'Historical Fiction', 'Italy', 'Romance', 'Audiobook', 'Contemporary', 'Book Club']", "['Dark Fantasy', 'Fantasy']", "['Young Adult', 'Time Travel', 'Fantasy', 'Science Fiction', 'Romance', 'Paranormal', 'Fiction']", "['Religion', 'Historical Fiction', 'Fiction', 'French Literature', 'Historical', 'Roman']", "['Nonfiction', 'Psychology', 'Self Help', 'Business', 'Personal Development', 'Philosophy', 'Audiobook']", "['Romance', 'Young Adult', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Chick Lit', 'Music']", "['Fantasy', 'Young Adult', 'Angels', 'Dystopia', 'Paranormal', 'Romance', 'Urban Fantasy']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'College', 'Fiction']", "['Fiction', 'Mathematics', 'Novels', 'Mystery', 'France', 'Literature', 'Roman']", "['Paranormal Romance', 'Paranormal', 'Romance', 'Fantasy', 'Angels', 'Vampires', 'Urban Fantasy']", "['Horror', 'Vampires', 'Fiction', 'Fantasy', 'Canada', 'Paranormal', 'Novels']", "['Fiction', 'Historical Fiction', 'Asia', 'Literary Fiction', 'Contemporary', 'Literature', 'Novels']", "['Classics', 'Fiction', 'Historical Fiction', 'School', 'Serbian Literature', 'Novels', 'Nobel Prize']", "['Fantasy', 'Fiction', 'Romance', 'Historical Fiction', 'Paranormal', 'Vampires', 'Witches']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Abuse', 'Fiction', 'High School']", "['Young Adult', 'Fantasy', 'Angels', 'Paranormal', 'Romance', 'Paranormal Romance', 'Supernatural']", "['Christian', 'Nonfiction', 'New Adult', 'Inspirational', '21st Century', 'Drama', 'Self Help']", "['Young Adult', 'Dystopia', 'Romance', 'Fantasy', 'Science Fiction', 'Fiction', 'Post Apocalyptic']", "['Middle Grade', 'Fiction', 'Animals', 'Childrens', 'Young Adult', 'Fantasy', 'Juvenile']", "['Fantasy', 'Middle Grade', 'Fiction', 'Childrens', 'Young Adult', 'Fairy Tales', 'Adventure']", "['Young Adult', 'Dystopia', 'Romance', 'Fantasy', 'Science Fiction', 'Fiction', 'Teen']", "['Christian', 'Christian Fiction', 'Fiction', 'Religion', 'Inspirational', 'Faith', 'Christianity']", "['History', 'Biography', 'Nonfiction', 'Feminism', 'Historical', 'British Literature', 'Womens']", "['China', 'Short Stories', 'Classics', 'Fiction', 'Fantasy', 'Chinese Literature', 'Horror']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Suspense', 'Adult', 'Mystery']", "['Horror', 'Fantasy', 'Vampires', 'Romanian Literature', 'Werewolves', 'Historical Fiction', 'Fiction']", "['Young Adult', 'Fiction', 'Contemporary', 'Childrens', 'Middle Grade', 'Banned Books', 'Realistic Fiction']", "['Historical Fiction', 'Romance', 'Fiction', 'Fantasy', 'Time Travel', 'Historical', 'Historical Romance']", "['History', 'Nonfiction', 'Science', 'Audiobook', 'Indian Literature']", "['Young Adult', 'Romance', 'Contemporary', 'Chick Lit', 'Realistic Fiction', 'Fiction', 'Young Adult Contemporary']", "['Business', 'Nonfiction', 'Leadership', 'Management', 'Buisness', 'Design', 'Entrepreneurship']", "['Historical Fiction', 'Fiction', 'Historical', 'Medieval', 'Fantasy', 'Adventure', 'War']", "['Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Romance', 'Adventure']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fairies', 'Magic', 'Fae']", "['Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Adventure', 'Media Tie In']", "['Mystery', 'Middle Grade', 'Childrens', 'Fiction', 'Adventure', 'Espionage', 'Young Adult']", "['Fantasy', 'Christian Fiction', 'Christian', 'Young Adult', 'Dragons', 'Christian Fantasy', 'Romance']", "['Crime', 'Thriller', 'Fiction', 'Mystery', 'Scandinavian Literature', 'Mystery Thriller', 'Nordic Noir']", "['Nonfiction', 'Biography', 'History', 'Memoir', 'Politics', 'Asia', 'Biography Memoir']", "['Fantasy', 'Adventure', 'Young Adult', 'Mystery', 'Magic', 'Paranormal', 'Fiction']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Angels', 'Demons', 'Paranormal Romance']", "['Science Fiction', 'Fiction', 'Science Fiction Fantasy', 'Space Opera', 'Speculative Fiction', 'Space', 'Fantasy']", "['Classics', 'Fiction', 'Fantasy', 'Adventure', 'Animals', 'Romance', 'Literature']", "['Horror', 'Fiction', 'Classics', 'Fantasy', 'Short Stories', 'Science Fiction', 'Literature']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fantasy', 'Fiction', 'Romance', 'Post Apocalyptic']", "['Young Adult', 'Contemporary', 'Realistic Fiction', 'Humor', 'Fiction', 'Romance', 'LGBT']", "['Nonfiction', 'India', 'History', 'Asia', 'Poverty', 'Sociology', 'Audiobook']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Teen', 'Coming Of Age', 'Novels']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Supernatural', 'Urban Fantasy']", "['Nonfiction', 'Biography', 'Military Fiction', 'History', 'War', 'Memoir', 'Autobiography']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'World War II', 'War', 'Audiobook']", "['Paranormal', 'Young Adult', 'Fantasy', 'Werewolves', 'Romance', 'Paranormal Romance', 'Shapeshifters']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Paranormal Romance', 'Fiction', 'Magic']", "['Paranormal', 'Young Adult', 'Romance', 'Angels', 'Fantasy', 'Vampires', 'Demons']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Paranormal Romance', 'Fiction', 'Magic']", "['Fiction', 'School', 'Classics', '20th Century', 'Novels', 'Dutch Literature']", "['Historical Fiction', 'Historical', 'Fiction']", "['Young Adult', 'Historical Fiction', 'Fantasy', 'Romance', 'Retellings', 'Historical', 'Adventure']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Science Fiction', 'Contemporary', 'Dystopia']", "['Mystery', 'Middle Grade', 'Fiction', 'Adventure', 'Young Adult', 'Childrens', 'Espionage']", "['Young Adult', 'LGBT', 'Contemporary', 'Fiction', 'Queer', 'Audiobook', 'Coming Of Age']", "['Steampunk', 'Fantasy', 'Science Fiction', 'Adventure', 'Fiction', 'Post Apocalyptic', 'Young Adult']", "['Young Adult', 'Witches', 'Fantasy', 'Paranormal', 'Magic', 'Urban Fantasy', 'Supernatural']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Humor', 'Contemporary Romance', 'Adult']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Mythology', 'Fiction', 'Magic']", "['Anthologies', 'Fantasy', 'Erotica', 'Romance', 'Paranormal', 'Supernatural', 'Mythology']", "['Plays', 'Spanish Literature']", "['Historical Fiction', 'Fantasy', 'Mystery']", "['Religion', 'Catholic', 'Reference', 'Theology', 'Nonfiction', 'Christian', 'Faith']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Greek Mythology']", "['Spirituality', 'Religion', 'Nonfiction', 'Psychology', 'Philosophy']", "['Poetry', 'Politics']", "['Young Adult', 'Science Fiction', 'Paranormal', 'Romance', 'Fantasy', 'Mystery', 'Dystopia']", "['Nonfiction', 'Politics', 'History', 'Business', 'Sociology', 'Political Science', 'Society']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Fiction', 'Urban Fantasy', 'Paranormal Romance']", "['Horror', 'Thriller', 'Fiction', 'Mystery', 'Dark', 'Adult', 'Suspense']", "['Fiction', 'Mystery', 'Young Adult', 'Contemporary', 'Fantasy', 'Crime', 'Thriller']", "['Fiction', 'Mystery', 'Crime', 'Suspense', 'Mystery Thriller', 'New York', 'Thriller']", "['Fiction', 'Fantasy', 'Japan', 'Japanese Literature', 'Magical Realism', 'Science Fiction', 'Contemporary']", "['Paranormal', 'Romance', 'Paranormal Romance', 'Erotica', 'Fantasy', 'Shapeshifters', 'Science Fiction']", "['Mystery Thriller', 'Fiction']", "['Nonfiction', 'Memoir', 'Travel', 'Biography', 'Adventure', 'Audiobook', 'Biography Memoir']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Thriller', 'Adventure', 'Science Fiction Fantasy']", "['Mystery', 'Thriller', 'Fiction', 'Religion', 'Medicine', 'Mystery Thriller', 'Medical']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Fairy Tales', 'Teen']", "['Science Fiction', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Fantasy', 'Short Stories', 'Science Fiction Fantasy']", "['Young Adult', 'Historical Fiction', 'Horror', 'Fantasy', 'Mystery', 'Historical', 'Romance']", "['Horror', 'Fiction', 'Paranormal', 'Ghosts']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Young Adult Contemporary', 'Realistic Fiction', 'Chick Lit']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Adult', 'Erotica', 'Suspense']", "['Fantasy', 'Middle Grade', 'Adventure', 'Fairy Tales', 'Retellings', 'Magic', 'Fiction']", "['Historical Fiction', 'Fiction', 'Classics', 'Adventure', 'Historical', 'Novels', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Classics', 'Japan', 'Adventure', 'Historical', 'Asia']", "['Fiction', 'Science Fiction', 'Dystopia', 'Horror', 'Classics', 'Audiobook', 'Thriller']", "['Fantasy', 'Paranormal', 'Young Adult', 'Magic', 'Romance', 'Paranormal Romance', 'Witches']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Humor', 'Adult', 'Chick Lit', 'New Adult']", "['Fantasy', 'Fiction', 'Dystopia', 'Science Fiction', 'Classics']", "['Contemporary', 'Classics', 'Audiobook', 'Fiction', 'Family', 'Literature', 'Novels']", "['Dark', 'Romance', 'Abuse', 'Contemporary', 'Adult', 'Thriller', 'Suspense']", "['Fantasy', 'Romance', 'Fiction', 'Young Adult', 'Roman', 'Contemporary', 'France']", "['Fiction', 'India', 'Indian Literature', 'Historical Fiction', 'Asia', 'Literary Fiction', 'Novels']", "['Young Adult', 'Realistic Fiction', 'Middle Grade', 'Fiction', 'Contemporary', 'Family', 'Death']", "['Politics', 'Nonfiction', 'History', 'Biography', 'Greece', 'Literature', '20th Century']", "['Fantasy', 'Young Adult', 'Romance', 'Magic']", "['Nonfiction', 'Psychology', 'Science', 'Mental Health', 'Audiobook', 'Sociology', 'Journalism']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Romance', 'Fantasy', 'Post Apocalyptic', 'Fiction']", "['Nonfiction', 'Animals', 'Biography', 'Cats', 'Memoir', 'Autobiography', 'Biography Memoir']", "['Fantasy', 'Mythology', 'Middle Grade', 'Adventure', 'Young Adult', 'Fiction', 'Magic']", "['Psychology', 'Mental Health', 'Nonfiction', 'Memoir', 'Mental Illness', 'Self Help', 'Biography']", "['Fiction', 'Young Adult', 'Science Fiction', 'Dystopia', 'Coming Of Age', 'Fantasy', 'Post Apocalyptic']", "['Comics', 'Comedy', 'Indian Literature', 'Fiction', 'Humor', 'Classics', 'Novels']", "['Chick Lit', 'Fiction', 'Humor', 'Comedy', 'Contemporary', 'Adult', 'Fashion']", "['Fantasy', 'Young Adult', 'Romance', 'Mermaids', 'Paranormal', 'Mythology', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Adventure', 'Fiction', 'Mystery', 'Audiobook']", "['Fantasy', 'Romance', 'Paranormal', 'Fantasy Romance', 'Paranormal Romance', 'Magic', 'Time Travel']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Post Apocalyptic', 'Fiction', 'Fantasy', 'Romance']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Audiobook', 'Epic']", "['Dark', 'Romance', 'BDSM', 'Adult', 'Contemporary', 'Abuse', 'Erotica']", "['Paranormal', 'Witches', 'Young Adult', 'Fantasy', 'Magic', 'Romance', 'Fiction']", "['Christian', 'Science', 'Nonfiction', 'Christianity', 'Spirituality', 'Theology', 'Faith']", "['Fantasy', 'Romance', 'Young Adult', 'Spanish Literature', 'Fiction', 'Adventure', 'Magic']", "['Fantasy', 'Young Adult', 'Retellings', 'Romance', 'Magic', 'Paranormal', 'Fairy Tales']", "['Young Adult', 'Fantasy', 'Mystery', 'Romance', 'Paranormal', 'Fiction', 'Thriller']", "['Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Aliens', 'Science Fiction', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Angels', 'Paranormal', 'Paranormal Romance', 'Supernatural']", "['Nonfiction', 'Self Help', 'Psychology', 'Business', 'Personal Development', 'Productivity', 'Audiobook']", "['Fiction', 'Romance', 'Indian Literature', 'India', 'Contemporary', 'Novels', 'Young Adult']", "['Fiction', 'Mystery', 'Thriller', 'Suspense', 'Mystery Thriller', 'Espionage', 'Audiobook']", "['Horror', 'Short Stories', 'Fiction', 'Weird Fiction', 'Fantasy', 'Anthologies', 'New Weird']", "['Mythology', 'Young Adult', 'Fantasy', 'Romance', 'Paranormal', 'Greek Mythology', 'Fiction']", "['Nonfiction', 'Humor', 'Books About Books', 'Comedy', 'Adult', 'Contemporary', 'Short Stories']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Magic', 'Audiobook', 'Science Fiction Fantasy']", "['Dystopia', 'Young Adult', 'Short Stories', 'Romance', 'Novella', 'Fantasy', 'Fiction']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Fiction', 'Mystery', 'Adventure', 'Dystopia']", "['Paranormal', 'Romance', 'Young Adult', 'Fantasy', 'Paranormal Romance', 'Supernatural', 'Magic']", "['Horror', 'Vampires', 'Pulp', 'Paranormal Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Mythology', 'Paranormal', 'Adventure', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'High Fantasy', 'Magic']", "['Young Adult', 'Werewolves', 'Paranormal', 'Fantasy', 'Urban Fantasy', 'Romance', 'Shapeshifters']", "['Young Adult', 'Science Fiction', 'Romance', 'Fantasy', 'Dystopia', 'Paranormal', 'Mystery']", "['Young Adult', 'Contemporary', 'Fiction', 'Humor', 'Realistic Fiction', 'Coming Of Age', 'Banned Books']", "['Fantasy', 'Young Adult', 'Paranormal', 'Fiction', 'Angels', 'Demons', 'Adventure']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fantasy', 'Romance', 'Fiction', 'Mystery']", "['Fantasy', 'Young Adult', 'Romance', 'Angels', 'Paranormal', 'Paranormal Romance', 'Fiction']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Post Apocalyptic', 'Survival', 'Fiction', 'Apocalyptic']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Horror', 'Adventure']", "['Horror', 'Young Adult', 'Science Fiction', 'Fiction', 'Thriller', 'Space', 'Mystery']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Angels', 'Urban Fantasy', 'Fiction']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Horror', 'Urban Fantasy', 'Romance']", "['Nonfiction', 'Biography', 'History', 'Adventure', 'Travel', 'Ireland', 'Biography Memoir']", "['Romance', 'Historical Fiction', 'Historical Romance', 'Historical', 'Fiction', 'Regency', 'Clean Romance']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'New Adult', 'Travel', 'Realistic Fiction']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Fiction', 'Adventure', 'Magic', 'Childrens']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Nonfiction', 'History', 'Memoir', 'Biography', 'Ukraine', 'War', 'Autobiography']", "['Horror', 'Young Adult', 'Paranormal', 'Ghosts', 'Fantasy', 'Supernatural', 'Mystery']", "['Nonfiction', 'Memoir', 'Humor', 'Biography', 'Audiobook', 'Comedy', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Romance', 'Retellings', 'Fairy Tale Retellings', 'Fiction']", "['Fiction', 'Young Adult', 'Historical Fiction', 'Contemporary', 'Coming Of Age', 'LGBT', 'Adult']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Paranormal Romance', 'Supernatural', 'Magic']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Adult', 'Suspense', 'Erotica']", "['Romance', 'Paranormal Romance', 'Paranormal', 'Science Fiction', 'Fantasy', 'Aliens', 'Adult']", "['Fantasy', 'Fiction', 'Dark Fantasy', 'Epic Fantasy', 'High Fantasy', 'Post Apocalyptic', 'Magic']", "['Paranormal', 'Angels', 'Fantasy', 'Young Adult', 'Romance', 'Paranormal Romance', 'New Adult']", "['Fiction', 'Contemporary', 'Thriller', 'Mystery', 'Scotland', 'Crime', 'Dark']", "['Realistic Fiction', 'Middle Grade', 'Young Adult', 'Fiction', 'Contemporary', 'Family', 'Fostering']", "['Romance', 'Chick Lit', 'Fiction', 'Contemporary', 'Contemporary Romance', 'Adult', 'Adult Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Suspense', 'Adult', 'Erotica']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Short Stories']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'War', 'World War II', 'Novels']", "['Paranormal', 'Romance', 'Paranormal Romance', 'Fantasy', 'Shapeshifters', 'Science Fiction', 'Adult']", "['Romance', 'Christian Fiction', 'Historical Fiction', 'Christian', 'Historical', 'Historical Romance', 'Westerns']", "['Romance', 'Dark', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Erotica', 'Adult']", "['Young Adult', 'Contemporary', 'Spanish Literature', 'Fiction', 'Coming Of Age', 'Drama', 'Romance']", "['Comics', 'Horror', 'Graphic Novels', 'Pulp']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Magic', 'Supernatural', 'Paranormal Romance']", "['Fiction', 'Young Adult', 'Mystery', 'Thriller', 'Contemporary', 'Mystery Thriller', 'Audiobook']", "['Fiction', 'Literature', 'Greece', '20th Century']", "['Fiction', 'Historical Fiction', 'Novella', 'Westerns', 'Literary Fiction', 'Novels', 'Short Stories']", "['Science Fiction', 'Fiction', 'Space Opera', 'Romance', 'Science Fiction Fantasy', 'Audiobook', 'Fantasy']", "['Mythology', 'Young Adult', 'Fantasy', 'Romance', 'Greek Mythology', 'Paranormal', 'Short Stories']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Middle Grade', 'Historical Fiction', 'Medieval']", "['Paranormal', 'Thriller', 'Horror', 'Angels']", "['Manga', 'Fantasy', 'Yaoi', 'Supernatural', 'Romance', 'Paranormal', 'Fiction']", "['Comics', 'Biography', 'Horror', 'Art', 'Nonfiction', 'Graphic Novels', 'Comix']", "['Romance', 'Contemporary Romance', 'Contemporary', 'New Adult', 'Adult', 'Abuse', 'Dark']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Fiction', 'Dystopia', 'Adventure', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Humor', 'Audiobook', 'Science Fiction Fantasy', 'Fantasy', 'Comedy']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'Adult', 'Adult Fiction', 'New York']", "['Fantasy', 'Horror', 'Mythology', 'Urban Fantasy', 'Mermaids', 'Fiction', 'Greek Mythology']", "['Young Adult', 'LGBT', 'Contemporary', 'Fiction', 'Romance', 'Realistic Fiction', 'Queer']", "['Young Adult', 'Thriller', 'Science Fiction', 'Fiction', 'Romance', 'Mystery', 'Contemporary']", "['Dystopia', 'Young Adult', 'Science Fiction', 'Fiction', 'Fantasy', 'Post Apocalyptic', 'Adventure']", "['Fiction', 'Russia', 'Russian Literature', 'Literature', 'Roman', 'War', 'Contemporary']", "['Nonfiction', 'Art', 'Self Help', 'Design', 'Writing', 'Business', 'Personal Development']", "['Fantasy', 'Dystopia', 'Young Adult', 'Romance', 'Science Fiction', 'Fiction', 'Paranormal']", "['Poetry', 'Romance', 'Fiction', 'Contemporary', 'Young Adult', 'Short Stories', 'Photography']", "['Fantasy', 'Short Stories', 'Fiction', 'Humor', 'Death', 'Comedy', 'Philosophy']", "['Science Fiction', 'Fiction', 'Thriller', 'Artificial Intelligence', 'Cyberpunk', 'Singularity', 'Science Fiction Fantasy']", "['Romance', 'Paranormal', 'Paranormal Romance', 'New Adult', 'Fantasy', 'Young Adult', 'Contemporary']", "['Fiction', 'Classics', 'Literature', 'Russia', 'Historical Fiction', '20th Century', 'Novels']", "['Vampires', 'Paranormal', 'Romance', 'Paranormal Romance', 'Urban Fantasy', 'Fantasy', 'Adult']", "['Young Adult', 'Dystopia', 'Romance', 'Science Fiction', 'Fiction', 'Fantasy', 'Teen']", "['Science Fiction', 'Young Adult', 'Romance', 'Fantasy', 'Dystopia', 'Fiction', 'Space']", "['Fantasy', 'Vampires', 'Werewolves', 'Romance', 'Young Adult', 'Paranormal', 'Paranormal Romance']", "['Science Fiction', 'Fantasy', 'Fiction', 'Audiobook', 'Science Fiction Fantasy', 'Adventure', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Audiobook', 'Science Fiction Fantasy', 'Fantasy', 'Young Adult', 'Space Opera']", "['Nonfiction', 'Self Help', 'Memoir', 'Essays', 'Audiobook', 'Psychology', 'Personal Development']", "['Mystery', 'Fiction', 'Middle Grade', 'Young Adult', 'Adventure', 'Childrens', 'Fantasy']", "['Romance', 'LGBT', 'Fiction', 'Historical Fiction', 'Queer', 'Historical', 'Contemporary']", "['Nonfiction', 'True Crime', 'Crime', 'History', 'Politics', 'Race', 'Sociology']", "['Manga', 'Fantasy', 'Graphic Novels', 'Horror', 'Comics', 'Fiction', 'Science Fiction']", "['Fiction', 'Historical Fiction', 'Australia', 'Historical', 'Book Club', 'Romance', 'Adult']", "['Fiction', 'Historical Fiction', 'German Literature', 'Nobel Prize', 'Romania', 'Germany', 'Historical']", "['Fiction', 'Animals', 'Dogs', 'Contemporary', 'Audiobook', 'Young Adult', 'Adult']", "['Young Adult', 'Paranormal', 'Romance', 'Fantasy', 'Aliens', 'Science Fiction', 'Paranormal Romance']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Romantic Suspense', 'Humor', 'Adult', 'Suspense']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Romance', 'Retellings', 'Dystopia', 'Fiction']", "['Young Adult', 'Science Fiction', 'Romance', 'Retellings', 'Dystopia', 'Fiction', 'Fairy Tales']", "['Fiction', 'Novels', 'Literature', 'Crime', 'Contemporary', 'Mystery', 'Literary Fiction']", "['True Crime', 'Crime', 'Cults', 'Counter Culture', 'Nonfiction', 'Psychology', 'Satanism']", "['Young Adult', 'Romance', 'Amish', 'Fiction', 'Realistic Fiction', 'Young Adult Contemporary', 'Chick Lit']", "['Manga', 'Graphic Novels', 'Fantasy', 'Young Adult', 'Steampunk', 'Romance', 'Paranormal']", "['Fiction', 'Contemporary', 'Audiobook', 'Book Club', 'British Literature', 'Adult Fiction', 'Literary Fiction']", "['Fantasy', 'Middle Grade', 'Dragons', 'Fiction', 'Childrens', 'Young Adult', 'Adventure']", "['Self Help', 'Nonfiction', 'Spirituality', 'Personal Development', 'Psychology', 'Philosophy', 'Inspirational']", "['Young Adult', 'Dystopia', 'Romance', 'Fantasy', 'Science Fiction', 'Post Apocalyptic', 'Fiction']", "['Young Adult', 'Fiction', 'Contemporary', 'Middle Grade', 'Childrens', 'Banned Books', 'Realistic Fiction']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Fiction', 'Adventure', 'Magic', 'Mystery']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Magic', 'Mystery']", "['Young Adult', 'Romance', 'Fantasy', 'Fiction', 'Contemporary', 'LGBT', 'Magical Realism']", "['Horror', 'Fiction', 'Fantasy', 'Science Fiction', 'Post Apocalyptic', 'Vampires', 'Dystopia']", "['Angels', 'Paranormal', 'Fantasy', 'Romance', 'Young Adult', 'Paranormal Romance', 'New Adult']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Drama', 'Fiction']", "['Paranormal', 'Young Adult', 'Romance', 'Fantasy', 'Paranormal Romance', 'Supernatural', 'Ghosts']", "['Dystopia', 'Young Adult', 'Science Fiction', 'Fiction', 'Fantasy', 'Romance', 'Post Apocalyptic']", "['Fiction', 'Thriller', 'Adult', 'Drama', 'Mystery', 'Adventure', 'Suspense']", "['Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Romance', 'Teen']", "['Fiction', 'Thriller', 'Science Fiction', 'Mystery', 'Horror', 'Animals', 'Audiobook']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Fiction', 'Urban Fantasy', 'Adventure', 'Mystery']", "['Mythology', 'Religion', 'Classics', 'Nonfiction', 'Philosophy']", "['Historical Romance', 'Romance', 'Historical', 'Historical Fiction', 'Adult', 'Medieval', 'Disability']", "['Paranormal', 'Young Adult', 'Werewolves', 'Fantasy', 'Romance', 'Shapeshifters', 'Paranormal Romance']", "['Mystery', 'Science Fiction', 'Time Travel']", "['Horror', 'Zombies', 'Young Adult', 'Fiction', 'Fantasy', 'Teen', 'Paranormal']", "['Fantasy', 'Young Adult', 'Fairy Tales', 'Romance', 'Fiction', 'Paranormal', 'Retellings']", "['Young Adult', 'Contemporary', 'Romance', 'Paranormal', 'Fiction', 'Fantasy', 'Realistic Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'High School', 'Chick Lit', 'Contemporary Romance']", "['Fantasy', 'Young Adult', 'Dystopia', 'Romance', 'Magic', 'Paranormal', 'Science Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Romantic Suspense', 'Suspense', 'Erotica']", "['Dystopia', 'Young Adult', 'Romance', 'Science Fiction', 'Fantasy', 'Fiction', 'Adventure']", "['Nonfiction', 'Memoir', 'Books About Books', 'Biography', 'Biography Memoir', 'Audiobook', 'Death']", "['Historical Fiction', 'Fiction', 'LGBT', 'War', 'Historical', 'World War I', 'Queer']", "['Fiction', 'Classics', 'Historical Fiction', 'Historical', 'Politics', 'Literature']", "['Fantasy', 'Young Adult', 'Novella', 'Short Stories', 'Fiction', 'Romance', 'High Fantasy']", "['Poetry', 'Romance', 'Greece']", "['Georgian', 'Poetry', 'Classics']", "['Graphic Novels', 'Middle Grade', 'Young Adult', 'Comics', 'LGBT', 'Fiction', 'Realistic Fiction']", "['Graphic Novels', 'Fantasy', 'Comics', 'Middle Grade', 'Adventure', 'Fiction', 'Young Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fiction', 'Urban Fantasy', 'Supernatural']", "['Poetry', 'Goth', 'Gothic', 'Queer']", "['Nonfiction', 'History', 'Classics', 'War', 'World War II', 'Memoir', 'Literature']", "['Fiction', 'Classics', 'Romance', 'Historical Fiction', 'Audiobook', 'Young Adult', 'Americana']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Erotica', 'Romantic Suspense', 'Suspense']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Dystopia', 'Paranormal Romance', 'Urban Fantasy']", "['Science Fiction', 'Fiction', 'Mystery', 'Urban Fantasy', 'Audiobook', 'Novella', 'Short Stories']", "['Science Fiction', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Fantasy', 'Science Fiction Fantasy', 'Audiobook']", "['Young Adult', 'Science Fiction', 'Romance', 'Dystopia', 'Fantasy', 'Fiction', 'Mystery']", "['Young Adult', 'Contemporary', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Audiobook', 'Mental Illness']", "['Mystery', 'Middle Grade', 'Fiction', 'Childrens', 'Young Adult', 'Humor', 'Adventure']", "['Contemporary Romance', 'Contemporary', 'Adult', 'Chick Lit', 'New Adult', 'Fiction', 'Humor']", "['Fiction', 'Contemporary', 'Historical Fiction', 'Humor', 'Audiobook', 'Adventure', 'Comedy']", "['Young Adult', 'Fantasy', 'Paranormal', 'Demons', 'Angels', 'Urban Fantasy', 'Romance']", "['Paranormal', 'Werewolves', 'Young Adult', 'Romance', 'Fantasy', 'Shapeshifters', 'Paranormal Romance']", "['Fiction', 'Classics', 'Childrens', 'Novels', 'Brazil', 'Literature', 'Drama']", "['Fantasy', 'Witches', 'Young Adult', 'Paranormal', 'Young Adult Paranormal', 'Magic', 'Romance']", "['Fantasy', 'Christian Fiction', 'Young Adult', 'Christian', 'Dragons', 'Romance', 'Christian Fantasy']", "['Christian', 'Nonfiction', 'Faith', 'Christianity', 'Self Help', 'Christian Living', 'Religion']", "['Poetry', 'Goth', 'Gothic', 'Short Stories', 'Memoir']", "['Fiction', 'Contemporary', 'Mystery', 'Adult', 'Adult Fiction', 'Drama', 'Unfinished']", "['Science Fiction', 'Fiction', 'Space Opera', 'Cultural', 'Science Fiction Fantasy', 'Audiobook', 'Speculative Fiction']", "['Fiction', 'Short Stories', 'Contemporary', 'Romance', 'Literary Fiction', 'Adult Fiction', 'Adult']", "['Fiction', 'Historical Fiction', 'Classics', 'Novels', 'Historical']", "['Mystery', 'Crime', 'Thriller', 'Fiction', 'Mystery Thriller', 'Scandinavian Literature', 'Denmark']", "['Georgian']", "['Historical Fiction', 'Fiction', 'Historical', 'British Literature', 'Audiobook', 'Literary Fiction', 'Literature']", "['Poetry', 'Nonfiction', 'Philosophy', 'Amazon', 'Sociology', 'Adult', 'Linguistics']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Romance', 'Book Club', 'Audiobook']", "['Historical Fiction', 'Historical', 'Medieval', 'Romance', 'Fiction', 'Fantasy', 'Thriller']", "['Young Adult', 'Science Fiction', 'Time Travel', 'Dystopia', 'Romance', 'Fantasy', 'Fiction']", "['Fantasy', 'Young Adult', 'Horror', 'Paranormal', 'Science Fiction']", "['Mythology', 'Fantasy', 'Young Adult', 'Romance', 'Greek Mythology', 'Paranormal', 'Novella']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Romance', 'Fantasy', 'Zombies', 'Fiction']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'College', 'Music']", "['BDSM', 'Romance', 'Erotica', 'Contemporary', 'Erotic Romance', 'Contemporary Romance', 'College']", "['Mystery', 'Young Adult', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Contemporary']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Young Adult Contemporary', 'Coming Of Age']", "['Nonfiction', 'Self Help', 'Business', 'Personal Development', 'Productivity', 'Psychology', 'Leadership']", "['Fiction', 'Contemporary', 'Humor', 'Mystery', 'Audiobook', 'Chick Lit', 'Adult']", "['Comics', 'Marvel', 'Graphic Novels', 'Superheroes', 'Comic Book', 'Fiction', 'Time Travel']", "['Contemporary']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Historical Mystery', 'Crime', 'Mystery Thriller']", "['Nonfiction', 'Philosophy', 'Business', 'Economics', 'Psychology', 'Science', 'Finance']", "['Biography', 'Nonfiction', 'Food', 'Biography Memoir', 'History', 'Memoir', 'Cooking']", "['Fantasy', 'Young Adult', 'Pirates', 'Romance', 'Magic', 'Adventure', 'High Fantasy']", "['Romance', 'Erotica', 'Fiction', 'BDSM', 'Adult', 'Contemporary', 'Contemporary Romance']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Magic', 'Fiction', 'Mystery', 'Adventure']", "['Reference', 'Textbooks', 'Literature', 'Nonfiction', 'School', 'Anthologies']", "['Fiction', 'Fantasy', 'Contemporary', 'Young Adult', 'Adult', 'Adult Fiction', 'Autistic Spectrum Disorder']", "['Fiction', 'Mystery', 'Fantasy', 'Books About Books', 'Contemporary', 'Audiobook', 'Adult']", "['Fiction', 'Romance', 'Contemporary', 'Mental Health', 'Adult', 'Audiobook', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Urban Fantasy', 'Paranormal', 'Young Adult Fantasy', 'Fiction']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Horror', 'Teen']", "['Fantasy', 'Young Adult', 'Romance', 'Novella', 'Short Stories', 'Fiction', 'High Fantasy']", "['Nonfiction', 'Memoir', 'Psychology', 'Biography', 'Mental Health', 'Audiobook', 'Science']", "['Middle Grade', 'Childrens', 'Fiction', 'Graphic Novels', 'Realistic Fiction', 'Diary', 'Contemporary']", "['Fantasy', 'Young Adult', 'Romance', 'Fairies', 'Paranormal', 'Fae', 'Novella']", "['Classics', 'Fiction', 'Romance', 'Historical Fiction', 'British Literature', '20th Century', 'Fantasy']", "['Humor', 'Romance', 'Fiction', 'Comedy', 'Contemporary', 'Adult', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Mystery', 'Horror', 'Paranormal', 'Middle Grade', 'Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'High School', 'Chick Lit', 'Mystery']", "['Georgian', 'Classics', '20th Century', 'School', 'Fiction']", "['Classics', 'Feminism', 'Fiction', 'Literature', 'English Literature', 'British Literature', '20th Century']", "['Philosophy', 'Religion', 'Nonfiction', 'Spirituality', 'India', 'Poetry', 'Cultural']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Erotica', 'BDSM', 'Adult', 'Erotic Romance']", "['Fantasy', 'Young Adult', 'Paranormal', 'Urban Fantasy', 'Vampires', 'Fiction', 'Angels']", "['Fantasy', 'Epic Fantasy', 'Fiction', 'High Fantasy', 'Magic', 'Audiobook', 'Adventure']", "['Paranormal', 'Romance', 'Vampires', 'Paranormal Romance', 'Fantasy', 'M M Romance', 'Urban Fantasy']", "['Paranormal', 'Young Adult', 'Romance', 'Fantasy', 'Paranormal Romance', 'Supernatural', 'New Adult']", "['Young Adult', 'Science Fiction', 'Romance', 'Aliens', 'Fantasy', 'Paranormal', 'Fiction']", "['Music', 'Fiction']", "['Fantasy', 'Fiction', 'Novella', 'High Fantasy', 'Short Stories', 'Audiobook', 'Magic']", "['Young Adult', 'Mystery', 'Contemporary', 'Romance', 'Fiction', 'Adventure', 'Crime']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Paranormal', 'Urban Fantasy', 'Suspense']", "['Romance', 'Fiction', 'Erotica', 'BDSM', 'Adult', 'Contemporary', 'Erotic Romance']", "['Fiction', 'Historical Fiction', 'Italy', 'Literary Fiction', 'Italian Literature', 'Contemporary', 'Novels']", "['Business', 'Nonfiction', 'Leadership', 'Management', 'Entrepreneurship', 'Buisness', 'Self Help']", "['Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Audiobook', 'Leadership', 'Parenting']", "['Nonfiction', 'Science', 'Business', 'Economics', 'Politics', 'Psychology', 'Mathematics']", "['Self Help', 'Nonfiction', 'Psychology', 'Business', 'Personal Development', 'Philosophy', 'Productivity']", "['Picture Books', 'Family', 'Childrens', 'Death', 'Fiction', 'Animals', 'Art']", "['Young Adult', 'Mystery', 'Fantasy', 'Paranormal', 'Ghosts', 'Fiction', 'Horror']", "['Horror', 'Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Romance', 'Erotica', 'Contemporary Romance', 'Contemporary', 'Adult', 'Erotic Romance', 'Fiction']", "['Mystery', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Romance', 'Crime', 'Fiction']", "['Horror', 'Young Adult', 'Mystery', 'Paranormal', 'Fiction', 'Fantasy', 'Thriller']", "['Nonfiction', 'History', 'War', 'Politics', 'Journalism', 'Reportage', 'Travel']", "['Picture Books', 'LGBT', 'Fantasy', 'Childrens', 'Fiction', 'Transgender', 'Queer']", "['Fiction', 'Historical Fiction', 'Mystery', 'Literary Fiction', 'Coming Of Age', 'Novels', 'Contemporary']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Mythology', 'Paranormal Romance', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'Paranormal', 'Adventure', 'Fiction']", "['Fiction', 'Classics', 'Childrens', 'Historical Fiction', 'Young Adult', 'Kids', 'Family']", "['Poetry', 'Classics', 'Serbian Literature', 'Read For School']", "['Fiction', 'Crime', 'Novels', 'Young Adult', 'Coming Of Age']", "['Dark', 'Romance', 'BDSM', 'Erotica', 'Adult', 'Contemporary', 'Abuse']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'New Adult', 'Chick Lit', 'Fiction']", "['Young Adult', 'Dystopia', 'Short Stories', 'Fantasy', 'Science Fiction', 'Fiction', 'Romance']", "['Fantasy', 'Young Adult', 'Mermaids', 'Paranormal', 'Romance', 'Mythology', 'Fiction']", "['Biography', 'France', 'Nonfiction', 'Autobiography', 'Literature', 'Memoir', 'French Literature']", "['Fantasy', 'Young Adult', 'Romance', 'Angels', 'Paranormal', 'Urban Fantasy', 'Fiction']", "['Fantasy', 'Dystopia', 'Young Adult', 'Romance', 'Novella', 'Science Fiction', 'Fiction']", "['Fiction', 'Fantasy', 'Inspirational', 'Contemporary', 'Adult', 'Time Travel', 'Adult Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'High School', 'Abuse', 'Contemporary Romance']", "['Novels', 'Fiction', 'Literature', 'Contemporary', 'Drama', 'Audiobook', 'Social']", "['Fantasy', 'Young Adult', 'Paranormal', 'Mystery', 'Urban Fantasy', 'Romance', 'Fiction']", "['Romance', 'Young Adult', 'New Adult', 'Contemporary', 'Abuse', 'Contemporary Romance', 'College']", "['Fantasy', 'Magical Realism', 'Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'New Adult', 'College', 'Erotica']", "['Short Stories', 'Fiction', 'Contemporary', 'Literary Fiction', 'Literature', 'Audiobook', 'American']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Thriller', 'Dystopia', 'Science Fiction Fantasy', 'Audiobook']", "['Young Adult', 'Paranormal', 'Fantasy', 'Romance', 'Mystery', 'Fiction', 'Supernatural']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fiction', 'Supernatural', 'Young Adult Fantasy']", "['Christian', 'Theology', 'Religion', 'Nonfiction', 'Christianity', 'Philosophy', 'Faith']", "['Christian', 'Nonfiction', 'Theology', 'Religion', 'Christianity', 'Philosophy', 'Faith']", "['Fiction', 'Humor', 'Classics', 'Comedy', 'British Literature', 'Novels', 'Audiobook']", "['History', 'Nonfiction', 'Philosophy', 'Science', 'Religion', 'Historical', 'Audiobook']", "['Nonfiction', 'Economics', 'Business', 'Finance', 'Politics', 'History', 'Travel']", "['Romance', 'Love', 'Philosophy', 'Mythology', 'India', 'Humor', 'Literature']", "['Fantasy', 'Young Adult', 'Mystery', 'Horror', 'Paranormal', 'Middle Grade', 'Ghosts']", "['Romance', 'Paranormal', 'Aliens', 'Fantasy', 'New Adult', 'Paranormal Romance', 'Science Fiction']", "['Poetry', 'Queer', 'Goth', 'Gothic', 'Erotica']", "['Fiction', 'Mystery', 'Crime', 'Latin American', 'Novels', 'Literature', 'Spanish Literature']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Chick Lit', 'Erotica', 'Fiction']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Short Stories', 'Mystery', 'Mystery Thriller']", "['Young Adult', 'Dystopia', 'Fantasy', 'Romance', 'Science Fiction', 'Post Apocalyptic', 'Fiction']", "['Humor', 'Fantasy', 'Fiction', 'Folklore', 'Fairies']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Supernatural']", "['Fantasy', 'Romance', 'Young Adult', 'Paranormal', 'Angels', 'Fiction', 'Fantasy Romance']", "['Mystery', 'Fantasy', 'Science Fiction']", "['Comics', 'Horror', 'Graphic Novels', 'Zombies']", "['True Crime', 'Nonfiction', 'History', 'Crime', 'Politics', 'Historical', 'Mystery']", "['Fantasy', 'Sword and Sorcery', 'Historical Fiction', 'Heroic Fantasy']", "['History', 'Nonfiction', 'Egypt']", "['Fan Fiction', 'Fantasy', 'Science Fiction', 'Fiction', 'Post Apocalyptic', 'Dragons', 'Dystopia']", "['Paranormal', 'Fantasy', 'Vampires', 'Thriller', 'Supernatural', 'Horror', 'Urban Fantasy']", "['Poetry', 'Nobel Prize', 'Classics', 'Spanish Literature', 'Latin American', 'Fiction', 'Literature']", "['Historical Fiction', 'Fiction', 'War', 'Historical', 'Contemporary', 'Israel', 'Drama']", "['Vampires', 'Paranormal', 'Romance', 'Fantasy', 'Paranormal Romance', 'Young Adult', 'Dystopia']", "['Thriller', 'Science Fiction', 'Mystery', 'Fiction', 'Horror', 'Mystery Thriller', 'Dystopia']", "['Nonfiction', 'Travel', 'History', 'Geography', 'Maps', 'Art', 'Cartography']", "['Romance', 'Young Adult', 'Contemporary', 'Chick Lit', 'Realistic Fiction', 'Young Adult Contemporary', 'Fiction']", "['Childrens', 'Mystery', 'Classics', 'Crime', 'Swedish Literature', 'Fiction', 'Detective']", "['Nonfiction', 'Feminism', 'Memoir', 'Biography', 'Audiobook', 'Biography Memoir', 'Womens']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Fiction', 'Chick Lit', 'New Adult', 'Adult']", "['Fantasy', 'Young Adult', 'Adventure', 'Middle Grade', 'Fiction', 'Audiobook', 'Romance']", "['Graphic Novels', 'Comics', 'Fantasy', 'Science Fiction', 'Fiction', 'Graphic Novels Comics', 'Adult']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Fiction', 'Dystopia', 'Urban Fantasy', 'Audiobook']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Vampires', 'Adult', 'Romance', 'Shapeshifters']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'College', 'Chick Lit']", "['Romance', 'New Adult', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Abuse']", "['Young Adult', 'Fantasy', 'Paranormal', 'Mystery', 'Ghosts', 'Fiction', 'Supernatural']", "['Steampunk', 'Young Adult', 'Fantasy', 'Paranormal', 'Historical Fiction', 'Vampires', 'Fiction']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'Urban Fantasy']", "['Novels', 'Fiction', 'Egyptian Literature', 'Literature', 'Romance', 'Audiobook', 'Egypt']", "['Horror', 'Fiction', 'Fantasy', 'Thriller', 'Audiobook', 'Paranormal', 'Vampires']", "['Horror', 'Classics', 'Fiction', 'Short Stories', 'Fantasy', 'Science Fiction', 'Lovecraftian']", "['Romance', 'Erotica', 'Contemporary Romance', 'Contemporary', 'Adult', 'Erotic Romance', 'BDSM']", "['Romance', 'Chick Lit', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Adult', 'Humor']", "['Romance', 'Fiction', 'Indian Literature', 'Love', 'India', 'Young Adult', 'Romantic']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'College', 'Contemporary Romance', 'Chick Lit']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Time Travel', 'Paranormal', 'Paranormal Romance', 'Fantasy']", "['Young Adult', 'Dystopia', 'Romance', 'Fantasy', 'Fiction', 'Science Fiction', 'Action']", "['Erotica', 'BDSM', 'Nonfiction', 'Romance', 'Memoir', 'Biography', 'Adult']", "['Young Adult', 'Romance', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Audiobook', 'Coming Of Age']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'College', 'Fiction']", "['Romance', 'Contemporary', 'Young Adult', 'Fiction', 'Audiobook', 'Chick Lit', 'Realistic Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adult', 'Magic', 'Adventure']", "['Nonfiction', 'Psychology', 'Business', 'Audiobook', 'Self Help', 'Sociology', 'Science']", "['Young Adult', 'Zombies', 'Fantasy', 'Paranormal', 'Romance', 'Horror', 'Supernatural']", "['Historical Fiction', 'Young Adult', 'Holocaust', 'Historical', 'Fiction', 'Middle Grade', 'War']", "['Fantasy', 'Young Adult', 'Magic']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Adult', 'Erotica', 'Fiction']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Mythology', 'Urban Fantasy', 'Vampires']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Angels', 'Paranormal Romance', 'Demons']", "['Paranormal', 'Romance', 'Angels', 'New Adult', 'Paranormal Romance', 'Fantasy', 'Supernatural']", "['Fiction', 'Swedish Literature', 'Sweden', 'Classics', 'Historical Fiction', 'Romance', 'Magical Realism']", "['Young Adult', 'Romance', 'Amish', 'Realistic Fiction', 'Contemporary', 'Young Adult Contemporary', 'Teen']", "['Mystery', 'Fiction', 'Thriller', 'Young Adult', 'Mystery Thriller', 'Contemporary', 'Suspense']", "['Romance', 'New Adult', 'Sports', 'College', 'Contemporary', 'Sports Romance', 'Young Adult']", "['Fantasy', 'Fiction', 'Magical Realism', 'Horror', 'Audiobook', 'Young Adult', 'Adult']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'Fiction', 'Chick Lit']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Humor', 'Teen', 'Coming Of Age']", "['Young Adult', 'Mystery', 'Thriller', 'Horror', 'Crime', 'Contemporary', 'Fiction']", "['Humor', 'Nonfiction', 'Essays', 'Memoir', 'Audiobook', 'Short Stories', 'Comedy']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Historical', 'Time Travel', 'Audiobook', 'Literary Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Steampunk', 'Magic', 'Adult']", "['Horror', 'Fiction', 'Thriller', 'Cults', 'Paranormal', 'Mystery', 'Fantasy']", "['Young Adult', 'Contemporary', 'Fiction', 'Mystery', 'Realistic Fiction', 'Abuse', 'Audiobook']", "['Fiction', 'Africa', 'Contemporary', 'Feminism', 'Literary Fiction', 'Race', 'Nigeria']", "['Horror', 'Young Adult', 'Thriller', 'Mystery', 'Contemporary', 'Romance', 'Mystery Thriller']", "['Fiction', 'Mystery', 'Thriller', 'Contemporary', 'Mystery Thriller', 'Audiobook', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Horror', 'Middle Grade', 'Contemporary', 'Magical Realism']", "['Nonfiction', 'Memoir', 'Feminism', 'Biography', 'Audiobook', 'Autobiography', 'Biography Memoir']", "['Nonfiction', 'History', 'World War II', 'Science', 'Historical', 'Biography', 'War']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Mystery Thriller', 'Audiobook', 'Russia']", "['Fiction', 'Mystery', 'Historical Fiction', 'Coming Of Age', 'Audiobook', 'Book Club', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Paranormal', 'Steampunk', 'Urban Fantasy']", "['Mystery', 'Horror', 'Fiction', 'Thriller', 'Suspense', 'Crime', 'Mystery Thriller']", "['Urban Fantasy', 'Paranormal', 'Romance', 'Angels', 'Paranormal Romance', 'Fantasy', 'Vampires']", "['Fantasy', 'Dragons', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Childrens']", "['Zombies', 'Horror', 'Science Fiction', 'Fiction', 'Post Apocalyptic', 'Thriller', 'Fantasy']", "['Fiction', 'Japan', 'Magical Realism', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Turkish', 'Turkish Literature', 'Novels', 'Literary Fiction']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Audiobook']", "['Urban Fantasy', 'Paranormal', 'Romance', 'Fantasy', 'Paranormal Romance', 'Mystery', 'Ghosts']", "['Historical Fiction', 'Fiction', 'Historical', 'Book Club', 'Adult', 'Adult Fiction', 'Young Adult']", "['Thriller', 'Fiction', 'Horror', 'Fantasy', 'Mystery', 'Adventure', 'Paranormal']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Psychological Thriller']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Magical Realism', 'Historical', 'Audiobook', 'Mythology']", "['Classics', 'Fiction', 'Romance', 'Russia', 'Historical Fiction', 'Russian Literature', 'Literature']", "['Poetry', 'Medieval']", "['Nonfiction', 'Memoir', 'Religion', 'Biography', 'Cults', 'Audiobook', 'Biography Memoir']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'College', 'Sports']", "['Science Fiction', 'Amazon']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Drama', 'Dark']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Mental Health', 'Realistic Fiction']", "['Science Fiction', 'Fantasy', 'Fiction', 'Dystopia', 'Young Adult', 'Audiobook', 'Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Fairy Tales', 'Mythology', 'Young Adult Fantasy']", "['Zombies', 'Romance', 'Young Adult', 'Horror', 'Fiction', 'Fantasy', 'Dystopia']", "['Romance', 'New Adult', 'Contemporary Romance', 'Contemporary', 'Music', 'College', 'Young Adult']", "['Romance', 'Dystopia', 'Young Adult', 'Fantasy']", "['Self Help', 'Nonfiction', 'Personal Development', 'Audiobook', 'Psychology', 'Business', 'Inspirational']", "['Nonfiction', 'Spirituality', 'Memoir', 'Biography', 'Christian', 'Science', 'Medical']", "['Crime', 'Mystery', 'Thriller', 'Fiction', 'Scandinavian Literature', 'Sweden', 'Mystery Thriller']", "['Science Fiction', 'Christian Fiction', 'Amazon']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Humor', 'New Adult', 'Adult', 'Chick Lit']", "['Young Adult', 'Middle Grade', 'Fiction', 'Realistic Fiction', 'Contemporary', 'Family', 'Childrens']", "['Middle Grade', 'Fantasy', 'Horror', 'Mystery', 'Young Adult', 'Adventure', 'Fiction']", "['Fantasy', 'Fiction', 'Magic']", "['Classics', 'Fiction', 'Russia', 'Short Stories', 'Russian Literature', 'Medicine', 'Literature']", "['Paranormal', 'Vampires', 'Erotica', 'Romance', 'Paranormal Romance', 'Urban Fantasy', 'Fantasy']", "['Time Travel', 'Historical Fiction', 'Fantasy', 'Historical', 'Romance', 'Scotland', 'War']", "['Fantasy', 'Fiction', 'Dark Fantasy', 'Epic Fantasy', 'Science Fiction', 'Post Apocalyptic', 'High Fantasy']", "['Short Stories', 'Fiction', 'Contemporary', 'American', 'Literary Fiction', 'Literature', 'Audiobook']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'Fiction', 'Chick Lit']", "['History', 'Nonfiction', 'Politics', 'World War II', 'Holocaust', 'Conspiracy Theories', 'Banned Books']", "['Science Fiction', 'Fantasy', 'Young Adult', 'Aliens', 'Horror']", "['New Adult', 'Romance', 'College', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'Chick Lit']", "['Romance', 'Young Adult', 'New Adult', 'Contemporary', 'Chick Lit', 'Contemporary Romance', 'Fiction']", "['Vampires', 'Fantasy', 'Paranormal', 'Romance', 'Young Adult', 'Paranormal Romance', 'Fiction']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'High Fantasy', 'Young Adult Fantasy', 'Adventure']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Erotica', 'Adult', 'College']", "['Young Adult', 'Romance', 'Paranormal', 'Fantasy', 'Magic', 'Demons', 'Supernatural']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Angels', 'Demons', 'Paranormal Romance']", "['Urban Fantasy', 'Paranormal', 'Vampires', 'Fantasy', 'Magic', 'Witches', 'Romance']", "['Fantasy', 'Young Adult', 'Fae', 'Urban Fantasy', 'Paranormal', 'Magic', 'Fiction']", "['Novels', 'Fiction', 'Horror', 'Mystery', 'Literature', 'Psychology', 'Fantasy']", "['Short Stories', 'Horror', 'Fiction', 'Japan', 'Japanese Literature', 'Asia', 'Literary Fiction']", "['Thriller', 'Fiction', 'Horror', 'Adventure', 'Paranormal', 'Fantasy', 'Mystery Thriller']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'France', 'Mystery Thriller', 'Contemporary']", "['Romance', 'Erotica', 'BDSM', 'Contemporary Romance', 'Contemporary', 'Erotic Romance', 'Adult']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'College', 'Young Adult', 'Chick Lit']", "['Young Adult', 'Fantasy', 'Vampires', 'Paranormal', 'Witches', 'Supernatural', 'Werewolves']", "['Fiction', 'Historical Fiction', 'Scandinavian Literature', 'Relationships', 'Food', 'Family', 'Literature']", "['Romance', 'New Adult', 'Music', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Adult']", "['Vampires', 'Romance', 'Young Adult', 'Paranormal Romance', 'Paranormal', 'Fiction', 'Supernatural']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'High School', 'Contemporary Romance', 'Chick Lit']", "['Fantasy', 'Fiction', 'Romance', 'Paranormal', 'Vampires', 'Witches', 'Magic']", "['Middle Grade', 'Mystery', 'Fiction', 'Childrens', 'Adventure', 'Young Adult', 'Fantasy']", "['Fiction', 'Philosophy', 'Historical Fiction', 'Spirituality', 'Self Help', 'Novels', 'Inspirational']", "['Horror', 'Short Stories', 'Fiction', 'Fantasy', 'Weird Fiction', 'Anthologies', 'Magical Realism']", "['Young Adult', 'Thriller', 'Mystery', 'Suspense', 'Fiction', 'Mystery Thriller', 'Contemporary']", "['Fantasy', 'Middle Grade', 'Adventure', 'Young Adult', 'Mythology', 'Fiction', 'Childrens']", "['Romance', 'New Adult', 'Music', 'Contemporary', 'Contemporary Romance', 'Musicians', 'Erotica']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Chick Lit', 'Erotica', 'New Adult']", "['Fantasy', 'Young Adult', 'Fiction']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Mystery', 'Mystery Thriller', 'Science Fiction']", "['Paranormal', 'Young Adult', 'Fantasy', 'Demons', 'Romance', 'Urban Fantasy', 'Magic']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fantasy', 'Fiction', 'Action', 'Adventure']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'New Adult', 'Coming Of Age', 'Audiobook']", "['Young Adult', 'Dystopia', 'Young Adult Fantasy', 'Fiction', 'High Fantasy', 'Historical Fiction', 'Fantasy Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Mythology', 'Fiction', 'Magic']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'Chick Lit', 'Adult']", "['Fantasy', 'Mythology', 'Middle Grade', 'Adventure', 'Fiction', 'Young Adult', 'Magic']", "['Nonfiction', 'Business', 'Feminism', 'Self Help', 'Leadership', 'Audiobook', 'Womens']", "['Horror', 'Halloween', 'Fiction']", "['Middle Grade', 'Childrens', 'Graphic Novels', 'Fiction', 'Realistic Fiction', 'Romance', 'Diary']", "['Young Adult', 'Mystery', 'Thriller', 'Contemporary', 'Mystery Thriller', 'Fiction', 'Crime']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Dystopia', 'Post Apocalyptic', 'Fiction', 'Paranormal']", "['Ukraine', 'Fiction', 'Historical Fiction', 'Ukrainian Literature', 'Literary Fiction', 'Literature', 'Historical']", "['Historical Fiction', 'Arthurian', 'Fiction', 'Fantasy', 'Historical', 'Classics', 'Young Adult']", "['Novels', 'Romance', 'Fiction', 'Literature', 'Romantic', 'Love', 'Drama']", "['Romance', 'Fiction', 'BDSM', 'Erotic Romance', 'Erotica', 'Adult', 'New Adult']", "['Fiction', 'Romance', 'Contemporary', 'Chick Lit', 'Audiobook', 'Adult', 'Humor']", "['War', 'Fiction', 'Historical Fiction', 'World War II', 'Military Fiction', 'Classics', 'Action']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Drama', 'Chick Lit']", "['Fantasy', 'Fiction', 'Horror']", "['Fantasy', 'Young Adult', 'Fiction', 'New Adult', 'Fae', 'Fantasy Romance', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Mystery', 'Italy', 'Historical', 'World War II', 'War']", "['Short Stories', 'Zombies', 'Paranormal', 'Erotica', 'Horror', 'Steampunk']", "['Young Adult', 'LGBT', 'Contemporary', 'Romance', 'Queer', 'Fiction', 'Realistic Fiction']", "['Fantasy', 'Dragons', 'Middle Grade', 'Fiction', 'Adventure', 'Young Adult', 'Childrens']", "['Young Adult', 'LGBT', 'Dystopia', 'Science Fiction', 'Fiction', 'Queer', 'Fantasy']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Fantasy', 'Aliens', 'Romance']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Erotica', 'Adult', 'New Adult', 'Fiction']", "['Young Adult', 'Fantasy', 'Witches', 'Paranormal', 'Romance', 'Magic', 'Paranormal Romance']", "['Romance', 'Dark', 'Contemporary', 'Erotica', 'Contemporary Romance', 'Adult', 'Abuse']", "['Nonfiction', 'Autistic Spectrum Disorder', 'Memoir', 'Psychology', 'Biography', 'Biography Memoir', 'Mental Health']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'College', 'Contemporary Romance', 'Abuse']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Novels', 'Historical', 'Literary Fiction', 'Adult']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Erotica', 'Adult', 'New Adult', 'Erotic Romance']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Chick Lit', 'New Adult', 'Erotica']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Magic', 'Adventure', 'Mystery']", "['Fiction', 'Contemporary', 'Mental Health', 'Young Adult', 'Mental Illness', 'Adult', 'Psychology']", "['New Adult', 'Romance', 'Contemporary', 'Young Adult', 'College', 'Contemporary Romance', 'Abuse']", "['New Adult', 'Contemporary', 'Romance']", "['China', 'Fiction', 'Historical Fiction', 'Asia', 'Nobel Prize', 'Chinese Literature', 'Literature']", "['Science Fiction', 'Romance', 'Aliens', 'Space Opera', 'Science Fiction Romance', 'Science Fiction Fantasy', 'Paranormal']", "['Fiction', 'Science Fiction', 'Fantasy', 'Humor', 'Contemporary', 'Audiobook', 'Adult']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Paranormal', 'Audiobook', 'Supernatural']", "['Science Fiction', 'Fiction', 'Space Opera', 'Audiobook', 'Space', 'Science Fiction Fantasy', 'Fantasy']", "['Fiction', 'Mystery', 'Horror', 'Thriller', 'Time Travel', 'Science Fiction', 'Crime']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Aliens', 'Fiction', 'Fantasy', 'Romance']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Aliens', 'Fantasy', 'Romance']", "['Young Adult', 'Mental Illness', 'Mental Health', 'Contemporary', 'Romance', 'Drama', 'Fiction']", "['Romance', 'New Adult', 'Young Adult', 'High School', 'Contemporary', 'Contemporary Romance', 'Sports']", "['Romance', 'BDSM', 'Erotica', 'Contemporary', 'Contemporary Romance', 'Adult', 'Erotic Romance']", "['Paranormal', 'Young Adult', 'Fantasy', 'Romance', 'Urban Fantasy', 'Science Fiction', 'Thriller']", "['Romance', 'Erotica', 'Contemporary Romance', 'Contemporary', 'BDSM', 'Adult', 'Erotic Romance']", "['Romance', 'Contemporary Romance', 'New Adult', 'Contemporary', 'Adult', 'Erotica', 'Chick Lit']", "['Humor', 'Nonfiction', 'Memoir', 'Audiobook', 'Comedy', 'Parenting', 'Biography']", "['Nonfiction', 'Religion', 'History', 'Cults', 'Audiobook', 'Biography', 'Psychology']", "['Fiction', 'Thriller', 'Mystery Thriller', 'Contemporary', 'Mystery', 'Dark', 'Suspense']", "['Science Fiction', 'Fiction', 'Horror', 'Fantasy', 'Art', 'Speculative Fiction', 'Philosophy']", "['Dystopia', 'Young Adult', 'Fantasy', 'Science Fiction', 'Romance', 'Fiction', 'Paranormal']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Fiction', 'Contemporary Romance', 'Abuse']", "['Fiction', 'Ukrainian Literature', 'Classics', 'Ukraine', 'Historical', 'Historical Fiction', 'Audiobook']", "['Fantasy', 'Fiction', 'Christian', 'High Fantasy', 'Christian Fiction', 'Science Fiction Fantasy', 'Epic Fantasy']", "['Nonfiction', 'History', 'Sports', 'Biography', 'Audiobook', 'Historical', 'Book Club']", "['Fiction', 'Science Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Audiobook', 'Science Fiction Fantasy']", "['M M Romance', 'Romance', 'Contemporary', 'Mystery', 'Crime', 'LGBT', 'Military Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Erotica', 'New Adult', 'Motorcycle']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Thriller', 'Ireland', 'Audiobook']", "['Fiction', 'Thriller', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Psychological Thriller']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Animals', 'Audiobook', 'Adult Fiction', 'Book Club']", "['Fiction', 'Contemporary', 'Humor', 'Chick Lit', 'Adult', 'Audiobook', 'Adult Fiction']", "['Nonfiction', 'Animals', 'Dogs']", "['Fantasy', 'Fiction', 'Contemporary', 'Young Adult', 'Epic', 'Drama', 'Young Adult Fantasy']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Dystopia', 'Classics', 'Fantasy', 'Novels']", "['Nonfiction', 'Biography', 'Philosophy']", "['Romance', 'Contemporary Romance', 'Erotica', 'Contemporary', 'Adult', 'New Adult', 'Fiction']", "['Romance', 'Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Audiobook', 'Science Fiction']", "['Fiction', 'Contemporary', 'Young Adult', 'Coming Of Age', 'Novels', 'Audiobook', 'Spanish Literature']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Paranormal', 'Ghosts']", "['Science Fiction', 'Fiction', 'Young Adult', 'Audiobook', 'Fantasy', 'Science Fiction Fantasy', 'Adventure']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Fantasy', 'Adventure', 'Mystery']", "['Paranormal', 'Romance', 'Young Adult', 'Fantasy', 'Paranormal Romance', 'Supernatural', 'New Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Adventure', 'Romance', 'Amazon']", "['Paranormal', 'Romance', 'Shapeshifters', 'Werewolves', 'Paranormal Romance', 'Fantasy', 'Vampires']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Paranormal', 'Short Stories', 'Romance', 'LGBT']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Fiction', 'High Fantasy', 'Magic']", "['War', 'Iran', 'India', 'Romance', 'Pakistan', 'Love', 'Mythology']", "['China', 'History', 'Nonfiction']", "['Autistic Spectrum Disorder', 'Family', 'Nonfiction']", "['Romance', 'New Adult', 'Contemporary', 'College', 'Young Adult', 'Abuse', 'Contemporary Romance']", "['Dark', 'Romance', 'Abuse', 'Mental Illness', 'Contemporary', 'Fiction', 'Mental Health']", "['Fiction', 'Dutch Literature', 'Classics', 'School', 'Literature', 'Fantasy', '19th Century']", "['Nonfiction', 'Politics', 'Essays', 'Writing', 'Classics', 'Language', 'Philosophy']", "['Historical Fiction', 'Japan', 'Fiction', 'Japanese Literature', 'Feminism', 'Historical', 'Asian Literature']", "['Romance', 'Erotica', 'Contemporary Romance', 'Contemporary', 'New Adult', 'Adult', 'Erotic Romance']", "['Classics', 'Fiction', 'German Literature', 'School', 'Literature', 'Read For School', '20th Century']", "['Fantasy', 'Fiction', 'Classics', 'Adventure', 'Science Fiction Fantasy', 'High Fantasy', 'Young Adult']", "['Fantasy', 'Romance', 'LGBT', 'M M Romance', 'Queer', 'Adult', 'Fiction']", "['Fiction', 'Hungary', 'Hungarian Literature', 'Literary Fiction', 'Classics', 'Literature', 'Novels']", "['Fiction', 'Spain', 'Historical Fiction', 'Spanish Literature', 'War', 'Novels', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Magic', 'Young Adult Fantasy', 'Fae']", "['Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Adventure', 'Speculative Fiction']", "['Science Fiction', 'Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Dystopia', 'Audiobook']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Fiction', 'Dystopia', 'Urban Fantasy', 'Superheroes']", "['Fiction', 'India', 'Historical Fiction', 'Classics', 'Indian Literature', 'Politics', 'Literature']", "['Fiction', 'Novels', 'France', 'Lebanon', 'Literature', 'Roman', 'War']", "['Fantasy', 'Young Adult', 'Dystopia', 'Fiction', 'Science Fiction', 'Paranormal', 'Romance']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'College', 'Young Adult', 'Fiction']", "['Georgian', 'Fiction', 'Historical Fiction']", "['Georgian', 'Historical Fiction']", "['New Adult', 'Romance', 'Contemporary', 'College', 'Contemporary Romance', 'Abuse', 'Sports']", "['Young Adult', 'Romance', 'Fantasy', 'Paranormal', 'Contemporary', 'Science Fiction', 'Fiction']", "['Young Adult', 'Horror', 'Thriller', 'Fiction', 'Mystery', 'Contemporary', 'Suspense']", "['Romance', 'Contemporary', 'Erotica', 'Adult', 'Erotic Romance', 'Amazon', 'Humor']", "['Fiction', 'Contemporary', 'Horror', 'Adult', 'Dark', 'Crime', 'Literary Fiction']", "['Horror', 'Short Stories']", "['Fiction', 'Ukraine', 'Ukrainian Literature', 'Classics', 'School', 'Book Club', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Contemporary Romance', 'High School', 'Young Adult Contemporary']", "['Romance', 'Erotica', 'BDSM', 'Contemporary Romance', 'New Adult', 'Contemporary', 'Erotic Romance']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Romance', 'Time Travel', 'Fiction', 'Audiobook']", "['Horror', 'Fiction', 'Science Fiction', 'Zombies', 'Dystopia', 'Post Apocalyptic', 'Fantasy']", "['Werewolves', 'Paranormal', 'Young Adult', 'Romance', 'Paranormal Romance', 'Shapeshifters', 'Fantasy']", "['Young Adult', 'LGBT', 'Romance', 'Contemporary', 'Fiction', 'Queer', 'Gay']", "['Dark', 'BDSM', 'Romance', 'Erotica', 'Abuse', 'Contemporary', 'Adult']", "['Fantasy', 'Paranormal', 'Vampires', 'Urban Fantasy', 'Fiction', 'Romance', 'Supernatural']", "['Novels', 'Historical Fiction', 'Literature']", "['Crime', 'Mystery', 'Fiction', 'Scandinavian Literature', 'Nordic Noir', 'Thriller', 'Audiobook']", "['Contemporary', 'LGBT', 'Young Adult', 'Sports', 'Romance', 'Queer', 'Fiction']", "['Fiction', 'India', 'Historical Fiction', 'Literary Fiction', 'Novels', 'Contemporary', 'Audiobook']", "['Fiction', 'Science Fiction', 'Dystopia', 'Post Apocalyptic', 'Speculative Fiction', 'Fantasy', 'Canada']", "['Historical Fiction', 'Young Adult', 'Historical', 'Fiction', 'World War II', 'War', 'Holocaust']", "['History', 'Nonfiction', 'American History', 'Audiobook', 'Historical', 'Biography', 'Humor']", "['Science Fiction', 'Fiction', 'Horror', 'Post Apocalyptic', 'Dystopia', 'Fantasy', 'Russia']", "['Paranormal', 'Fantasy', 'Young Adult', 'Fiction', 'Young Adult Paranormal', 'Witches']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Historical', 'Romance', 'Fairy Tales', 'Retellings']", "['Young Adult', 'Contemporary', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Romance', 'Young Adult Contemporary']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Erotica', 'Adult', 'Erotic Romance']", "['Nonfiction', 'Memoir', 'Race', 'Biography', 'African American', 'Biography Memoir', 'Social Justice']", "['Memoir', 'Nonfiction', 'True Crime', 'Biography', 'Audiobook', 'Autobiography', 'Biography Memoir']", "['Nonfiction', 'Art']", "['Young Adult', 'Dystopia', 'Fiction', 'Fantasy', 'Science Fiction', 'Post Apocalyptic', 'Mystery']", "['Young Adult', 'Historical Fiction', 'Mystery', 'Romance', 'Historical', 'Fiction', 'Thriller']", "['Romance', 'New Adult', 'Contemporary', 'College', 'Contemporary Romance', 'Young Adult', 'Chick Lit']", "['Romance', 'Romania', 'Fiction', 'Contemporary', 'Romanian Literature']", "['Science Fiction', 'Fiction', 'Dystopia', 'Post Apocalyptic', 'Fantasy', 'Audiobook', 'Apocalyptic']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Short Stories', 'Fiction', 'Adventure']", "['Romance', 'Erotica', 'Fiction']", "['Romance', 'New Adult', 'Contemporary', 'College', 'Contemporary Romance', 'Young Adult', 'Abuse']", "['Comics', 'Horror', 'Graphic Novels', 'Fiction', 'Anthologies']", "['Romance', 'New Adult', 'Abuse', 'Military Fiction', 'Amazon']", "['Dark', 'Romance', 'BDSM', 'Erotica', 'Adult', 'Contemporary', 'Contemporary Romance']", "['Science Fiction', 'Fantasy', 'Aliens', 'Fiction', 'Young Adult', 'Paranormal']", "['Nonfiction', 'Economics', 'Business', 'Psychology', 'Self Help', 'Science', 'Audiobook']", "['Fantasy', 'Young Adult', 'Dragons', 'Romance', 'Paranormal', 'Urban Fantasy', 'Fiction']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Adult', 'Magic']", "['Historical Fiction', 'Fiction', 'Historical', 'Fantasy', 'Queer', 'LGBT', 'Medieval']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Fiction', 'Realistic Fiction', 'Young Adult Contemporary']", "['Fiction', 'Mystery', 'Contemporary', 'Literary Fiction', '21st Century', 'International', 'Literature']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Romance', 'Fantasy', 'Post Apocalyptic']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Mystery', 'Art', 'Adult']", "['Fiction', 'Historical Fiction', 'Mystery', 'Historical', 'Literary Fiction', 'Literature', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Crime', 'Adult', 'Literary Fiction']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Fantasy', 'Audiobook']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'Erotica', 'Abuse']", "['Horror', 'Novels', 'Short Stories', 'Fiction', 'Comedy', 'Humor', 'Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'High Fantasy', 'Young Adult Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'High Fantasy', 'Young Adult Fantasy', 'Fiction']", "['Young Adult', 'Mystery', 'Romance', 'Fantasy', 'Thriller', 'Fiction', 'Boarding School']", "['Graphic Novels', 'Nonfiction', 'History', 'Memoir', 'Comics', 'Biography', 'Historical']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'Fiction', 'Urban Fantasy', 'Magic']", "['Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Adult', 'Adult Fiction', 'Audiobook']", "['Middle Grade', 'Historical Fiction', 'Fiction', 'Childrens', 'Adventure', 'Young Adult', 'Historical']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'Erotic Romance', 'Dark', 'Erotica']", "['Romance', 'Erotica', 'New Adult', 'Contemporary Romance', 'Contemporary', 'BDSM', 'Erotic Romance']", "['Fantasy', 'Young Adult', 'Paranormal', 'Fiction', 'Urban Fantasy', 'Magic', 'Audiobook']", "['Fantasy', 'Young Adult', 'Paranormal', 'Romance', 'LGBT', 'Fiction', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Young Adult Fantasy', 'High Fantasy', 'Fiction']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Fantasy', 'Dystopia', 'Speculative Fiction', 'Novels']", "['Dystopia', 'Young Adult', 'Romance', 'New Adult', 'Fantasy', 'Science Fiction', 'Post Apocalyptic']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Marriage', 'Adult Fiction', 'Romance']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Mythology', 'Adventure', 'Middle Grade']", "['Nonfiction', 'Memoir', 'Biography', 'Film', 'Humor', 'Audiobook', 'Comedy']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Young Adult Fantasy', 'Adventure', 'High Fantasy']", "['Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Adult', 'Audiobook', 'Contemporary Romance']", "['Novels', 'Literature']", "['Young Adult', 'Mystery', 'Graphic Novels', 'Fiction', 'Contemporary', 'Teen', 'Thriller']", "['New Adult', 'Romance', 'Survival', 'Erotica', 'Contemporary', 'Abuse', 'Adventure']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'College', 'Erotica']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Magic', 'Paranormal', 'Fairy Tales']", "['Romance', 'Erotica', 'Contemporary', 'Fiction', 'Dark', 'Erotic Romance']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Demons', 'Paranormal Romance', 'Urban Fantasy']", "['Fantasy', 'Romance', 'Young Adult', 'Paranormal', 'Demons', 'Paranormal Romance', 'Urban Fantasy']", "['Fiction', 'Historical Fiction', 'Historical', 'Audiobook', 'Nature', 'Literary Fiction', 'Adult Fiction']", "['Fiction', 'Historical Fiction', 'Italy', 'Italian Literature', 'Literary Fiction', 'Novels', 'Contemporary']", "['Nonfiction', 'Science', 'Nature', 'Audiobook', 'Memoir', 'Environment', 'Essays']", "['Fiction', 'Novels', 'Historical Fiction', 'Egypt', 'Africa', 'Literature', 'Egyptian Literature']", "['Romance', 'Erotica', 'Erotic Romance', 'Contemporary', 'Menage', 'Adult', 'Humor']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Young Adult Fantasy', 'Fiction', 'Childrens', 'Paranormal']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Adult', 'Fiction', 'New Adult']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Vampires', 'Shapeshifters', 'Romance', 'Adult']", "['Young Adult', 'Contemporary', 'Fiction', 'Romance', 'Thriller', 'Mystery', 'Realistic Fiction']", "['Dystopia', 'Romance', 'Fantasy', 'New Adult', 'Young Adult', 'Science Fiction', 'Fiction']", "['Short Stories', 'Science Fiction', 'Classics', 'Fiction', 'Time Travel', 'School', 'Fantasy']", "['History', 'Nonfiction', 'Religion', 'Biography', 'Christianity', 'Audiobook', 'Spirituality']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Audiobook', 'Adult', 'Mystery']", "['Humor', 'Nonfiction', 'Graphic Novels', 'Memoir', 'Comics', 'Comedy', 'Biography']", "['Fantasy', 'Childrens', 'Middle Grade', 'Kids', 'Juvenile', 'Fiction']", "['Feminism', 'Nonfiction', 'Classics', 'History', 'Womens', 'Philosophy', 'Sociology']", "['Graphic Novels', 'Fantasy', 'Mythology', 'Middle Grade', 'Young Adult', 'Comics', 'Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'High School', 'Audiobook', 'Fiction', 'Realistic Fiction']", "['Romance', 'New Adult', 'Sports', 'Contemporary', 'Contemporary Romance', 'Sports Romance', 'Fighters']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Adventure', 'Fiction', 'Romance', 'Audiobook']", "['Historical Fiction', 'Young Adult', 'Historical', 'Romance', 'Mystery', 'Fiction', 'World War II']", "['Fantasy', 'Young Adult', 'Vampires', 'Horror', 'Romance', 'Supernatural', 'Magic']", "['Fiction', 'Military Fiction', 'Thriller', 'Espionage', 'Spy Thriller', 'Adult Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'Autobiography', 'Teen', 'Contemporary']", "['Fantasy', 'Young Adult', 'Romance', 'Historical Fiction', 'Young Adult Fantasy', 'Paranormal', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Historical Fiction', 'Young Adult Fantasy', 'Urban Fantasy', 'Paranormal']", "['Nonfiction', 'History', 'Medicine', 'Medical', 'Audiobook', 'True Crime', 'Health']", "['Fiction', 'Fantasy', 'Animals', 'Asian Literature', 'Novels', 'Contemporary', 'Childrens']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Childrens', 'Fairy Tales', 'Adventure']", "['New Adult', 'Romance', 'Dystopia', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'College']", "['Romance', 'Contemporary', 'New Adult', 'Fiction', 'Contemporary Romance', 'Audiobook', 'Adult']", "['Nonfiction', 'Memoir', 'True Crime', 'Abuse', 'Psychology', 'Mental Health', 'Biography']", "['Romantic Suspense', 'Romance', 'Military Fiction', 'Suspense', 'Contemporary', 'Contemporary Romance', 'Thriller']", "['Childrens', 'Picture Books', 'Fiction', 'Classics', 'Poetry', 'Kids', 'Fantasy']", "['Romance', 'Sports', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Sports Romance', 'New Adult']", "['Fiction', 'Mystery', 'Chick Lit', 'Contemporary', 'Audiobook', 'Adult', 'Thriller']", "['Erotica', 'Fiction', 'Contemporary', 'Adult', 'Romance', 'Chick Lit', 'Sexuality']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Beauty and The Beast', 'Adult', 'New Adult']", "['New Adult', 'Romance', 'College', 'Contemporary', 'Contemporary Romance', 'Erotica', 'High School']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Abuse', 'Adult', 'Erotica']", "['Romance', 'Erotica', 'Contemporary Romance', 'Contemporary', 'Adult', 'Erotic Romance', 'New Adult']", "['Romance', 'New Adult', 'Sports', 'Fighters', 'Contemporary Romance', 'Contemporary', 'Sports Romance']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Erotica', 'Adult', 'Humor']", "['New Adult', 'Romance', 'Contemporary', 'College', 'Contemporary Romance', 'Humor', 'Abuse']", "['Romance', 'New Adult', 'Contemporary', 'Abuse', 'Contemporary Romance', 'Young Adult', 'College']", "['Horror', 'Manga', 'Graphic Novels', 'Comics', 'Fiction', 'Fantasy', 'Japan']", "['Contemporary', 'Young Adult', 'Romance', 'Young Adult Contemporary', 'Fiction', 'Realistic Fiction', 'Young Adult Romance']", "['Fantasy', 'Young Adult', 'Angels', 'Dystopia', 'Paranormal', 'Romance', 'Post Apocalyptic']", "['Nonfiction', 'Biography', 'Memoir', 'Feminism', 'Autobiography', 'Audiobook', 'History']", "['Romance', 'Music', 'New Adult', 'Contemporary Romance', 'Contemporary', 'Abuse', 'Musicians']", "['Graphic Novels', 'Fiction', 'Comics', 'Fantasy', 'Graphic Novels Comics', 'Science Fiction', 'Comic Book']", "['Fiction', 'Dystopia', 'Fantasy', 'Science Fiction', 'Young Adult', 'Adventure', 'Teen']", "['Romance', 'New Adult', 'Contemporary', 'College', 'Contemporary Romance', 'Young Adult', 'Novella']", "['Fiction', 'Mystery', 'Fantasy', 'Thriller', 'Romance', 'Contemporary', 'Books About Books']", "['Mystery', 'Fiction', 'Crime']", "['Historical Fiction', 'Fiction', 'Historical', 'Ancient History', 'Egypt', 'Ancient', 'War']", "['Memoir', 'Nonfiction', 'Biography', 'Education', 'Inspirational']", "['Romance', 'Sports', 'Contemporary Romance', 'Erotica', 'Contemporary', 'Sports Romance', 'New Adult']", "['Romance', 'Sports', 'Contemporary Romance', 'Contemporary', 'Sports Romance', 'Erotica', 'New Adult']", "['Vampires', 'Young Adult', 'Fantasy', 'Dystopia', 'Paranormal', 'Romance', 'Post Apocalyptic']", "['Fiction', 'Inspirational', 'Contemporary', 'Mystery', 'Adult Fiction', 'Adult', 'Audiobook']", "['Fantasy', 'Inspirational']", "['Witches', 'Historical Fiction', 'Paranormal', 'Fantasy', 'Fiction', 'Historical']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'Fiction', 'Road Trip']", "['Fiction', 'Historical Fiction', 'War', 'Historical', 'World War II', 'Literary Fiction', 'Literature']", "['Zombies']", "['Nonfiction', 'Science', 'History', 'Environment', 'Nature', 'Biology', 'Climate Change']", "['Chick Lit', 'Romance', 'Fiction', 'Contemporary', 'Humor', 'Adult', 'Audiobook']", "['Romance', 'New Adult', 'Dark', 'Contemporary Romance', 'Suspense', 'Contemporary', 'Abuse']", "['Science Fiction', 'Thriller', 'Fiction', 'Horror', 'Mystery', 'Dystopia', 'Audiobook']", "['Fantasy', 'Romance', 'Young Adult', 'New Adult', 'Fiction', 'Fae', 'Fantasy Romance']", "['Fantasy', 'Paranormal', 'Fae', 'Romance', 'Paranormal Romance', 'Urban Fantasy', 'Magic']", "['Science Fiction', 'Fiction', 'Horror', 'Fantasy', 'Mystery', 'Dystopia', 'Audiobook']", "['Science Fiction', 'Fantasy', 'Aliens', 'Dystopia', 'Horror', 'Paranormal']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Humor', 'New Adult', 'Chick Lit', 'Adult']", "['Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Fantasy', 'Thriller', 'Teen']", "['Werewolves', 'Fantasy', 'Romance', 'Supernatural', 'Shapeshifters', 'Urban Fantasy', 'Paranormal']", "['Paranormal', 'Fantasy', 'Young Adult', 'Science Fiction', 'Romance', 'Fiction', 'Dystopia']", "['Fantasy', 'Paranormal', 'Fae', 'Romance', 'Paranormal Romance', 'Vampires', 'Magic']", "['Romance', 'Abuse', 'Dark', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Suspense']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Music', 'Adult', 'Erotica']", "['Fantasy', 'Young Adult', 'Ghosts', 'Middle Grade', 'Magic', 'Paranormal', 'Adventure']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Dark', 'Erotica']", "['Poetry', 'Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Love', 'Adult']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Romance', 'Fiction', 'Magic', 'Fairy Tales']", "['Fantasy', 'Young Adult', 'Romance', 'Fae', 'Magic', 'Fiction', 'Young Adult Fantasy']", "['Science Fiction', 'Fiction', 'Audiobook', 'Adventure', 'Space', 'Adult', 'Thriller']", "['Historical Fiction', 'Christian Fiction', 'Historical', 'Romance', 'Fiction', 'World War II', 'Christian']", "['Nonfiction', 'Memoir', 'Biography', 'Travel', 'Africa', 'Biography Memoir', 'Book Club']", "['Novels', 'Fiction', 'Egypt', 'Literature', 'Historical Fiction', 'Egyptian Literature', 'Africa']", "['Business', 'Nonfiction', 'Entrepreneurship', 'Self Help', 'Economics', 'Technology', 'Management']", "['Self Help', 'Nonfiction', 'Psychology', 'Health', 'Spirituality', 'Science', 'Personal Development']", "['Romance', 'Paranormal', 'Paranormal Romance', 'Vampires', 'Fantasy', 'Fiction', 'Adult']", "['Nonfiction', 'Self Help', 'Business', 'Personal Development', 'Psychology', 'Feminism', 'Leadership']", "['Fantasy', 'Young Adult', 'Retellings', 'Fiction', 'Magic', 'Adventure', 'Fairy Tales']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Anthologies']", "['Mystery', 'Middle Grade', 'Historical Fiction', 'Crime', 'Young Adult', 'Fiction', 'Historical']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Humor', 'Adult', 'Suspense']", "['Young Adult', 'Contemporary', 'Fiction', 'Mental Health', 'Mental Illness', 'Realistic Fiction', 'Audiobook']", "['Science Fiction', 'Fiction', 'Horror', 'Fantasy', 'Audiobook', 'Mystery', 'Science Fiction Fantasy']", "['Science Fiction', 'Fiction', 'Horror', 'Fantasy', 'Mystery', 'Audiobook', 'Science Fiction Fantasy']", "['Nonfiction', 'Self Help', 'Business', 'Productivity', 'Personal Development', 'Psychology', 'Philosophy']", "['Business', 'Nonfiction', 'Leadership', 'Biography', 'Management', 'Self Help', 'Design']", "['Young Adult', 'Contemporary', 'Realistic Fiction', 'Fiction', 'Romance', 'Mental Health', 'Mental Illness']", "['Fantasy', 'Young Adult', 'Paranormal', 'Magic', 'Witches', 'Fiction', 'Urban Fantasy']", "['Young Adult', 'Dystopia', 'Short Stories', 'Fiction', 'Fantasy', 'Science Fiction', 'Novella']", "['Fiction', 'Romance', 'Contemporary', 'Adult', 'Chick Lit', 'Adult Fiction', 'Audiobook']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Disability', 'Young Adult', 'Music']", "['Thriller', 'Fiction', 'Fantasy', 'Horror', 'Paranormal', 'Adventure', 'Mystery']", "['Paranormal', 'Romance', 'Vampires', 'Paranormal Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Time Travel', 'Young Adult', 'Science Fiction', 'Fantasy', 'Fiction', 'Historical Fiction', 'Romance']", "['Nonfiction', 'Memoir', 'Biography', 'India', 'Audiobook', 'Biography Memoir', 'Autobiography']", "['New Adult', 'Romance', 'College', 'Abuse', 'Contemporary', 'Contemporary Romance', 'Young Adult']", "['Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Romance', 'Short Stories']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Magic', 'Mystery', 'Paranormal']", "['Mystery', 'Romance', 'Romantic Suspense', 'Mystery Thriller', 'Thriller', 'Suspense', 'Fiction']", "['Romance', 'New Adult', 'College', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'Sports']", "['Dark', 'Romance', 'BDSM', 'Erotica', 'New Adult', 'Abuse', 'Contemporary']", "['Fantasy', 'Angels']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Adult', 'Fiction', 'Humor']", "['Fantasy', 'Young Adult', 'Mythology', 'Fiction', 'Romance', 'High Fantasy', 'Young Adult Fantasy']", "['Romance', 'Contemporary Romance', 'Erotica', 'Contemporary', 'Adult', 'New Adult', 'Erotic Romance']", "['Young Adult', 'Contemporary', 'Fiction', 'Romance', 'Realistic Fiction', 'Coming Of Age', 'Mental Health']", "['Horror', 'Fantasy', 'Short Stories', 'Fiction', 'Poetry', 'Weird Fiction', 'Classics']", "['Short Stories', 'Bizarro Fiction', 'Erotica', 'Horror', 'Fiction', 'Adult']", "['Nonfiction', 'Short Stories', 'Essays', 'Memoir', 'Contemporary', 'Biography', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'World War II', 'Audiobook', 'Adult']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Mystery Thriller', 'Suspense', 'Espionage']", "['Video Games', 'Gaming', 'Nonfiction', 'History']", "['Romance', 'Chick Lit', 'Fiction', 'Contemporary', 'Contemporary Romance', 'Novels', 'Adult']", "['Fantasy', 'Young Adult', 'Romance', 'German Literature', 'Audiobook', 'Urban Fantasy', 'Paranormal']", "['Mythology', 'Fantasy', 'Short Stories', 'Fiction', 'Greek Mythology', 'Historical Fiction', 'Retellings']", "['Historical Fiction', 'Fantasy', 'Fiction', 'Historical', 'Adventure', 'Medieval', 'Retellings']", "['Fantasy', 'Magical Realism', 'Young Adult', 'Fiction', 'Romance', 'Historical Fiction', 'Contemporary']", "['Young Adult', 'Romance', 'Dystopia', 'Fantasy', 'Novella', 'Short Stories', 'Fiction']", "['Nonfiction', 'Science', 'Biography', 'Space', 'Memoir', 'Autobiography', 'Biography Memoir']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Romance', 'Magic', 'Fiction', 'Fairy Tales']", "['Young Adult', 'Romance', 'Dystopia', 'Fantasy', 'Fiction', 'Short Stories', 'Novella']", "['Modern', 'Suspense', 'Novels', 'Fiction', 'Drama', 'Young Adult', 'Mystery']", "['Fantasy', 'Paranormal', 'Fae', 'Romance', 'Paranormal Romance', 'Magic', 'Urban Fantasy']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Young Adult Contemporary', 'Realistic Fiction', 'Audiobook']", "['Romance', 'Historical Romance', 'Historical', 'Westerns', 'Historical Fiction', 'Western Romance', 'Fantasy']", "['Sports', 'Leadership', 'Nonfiction']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'Chick Lit', 'Drama']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Audiobook', 'Mystery Thriller', 'Detective']", "['Romance', 'Erotica', 'Contemporary', 'Contemporary Romance', 'Erotic Romance', 'Adult', 'Humor']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Dark', 'Suspense', 'Crime']", "['Middle Grade', 'Mystery', 'Fantasy', 'Fiction', 'Young Adult', 'Christmas', 'Childrens']", "['Science Fiction', 'Short Stories', 'Fantasy', 'Romance', 'Cyberpunk', 'Erotica', 'Adventure']", "['Historical Fiction', 'Fiction', 'Holocaust', 'World War II', 'Historical', 'Christian Fiction', 'War']", "['Horror', 'Gothic', 'Classics']", "['Young Adult', 'Science Fiction', 'Time Travel', 'Romance', 'Dystopia', 'Fiction', 'Fantasy']", "['Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'High Fantasy', 'Short Stories', 'Fae']", "['Romance', 'Dark', 'Contemporary', 'New Adult', 'Mystery', 'Thriller', 'Suspense']", "['Poetry', 'Young Adult', 'Sports', 'Middle Grade', 'Realistic Fiction', 'Fiction', 'Family']", "['Fantasy', 'Paranormal', 'Coming Of Age', 'Time Travel', 'Romance', 'Adventure', 'Young Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Dystopia', 'Science Fiction', 'Mystery', 'Adventure']", "['Manga', 'Romance', 'Shojo', 'Young Adult', 'Contemporary', 'Comics Manga', 'High School']", "['Fiction', 'Contemporary', 'Books About Books', 'Adult', 'Romance', 'Adult Fiction', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'Young Adult Contemporary', 'Fiction', 'Chick Lit', 'Realistic Fiction']", "['Fiction', 'Thriller', 'Contemporary', 'Mystery', 'Dark', 'Adult', 'Drama']", "['History', 'Nonfiction', 'World War I', 'War', 'Biography', 'Travel', 'Historical']", "['Fiction', 'Science Fiction', 'Dystopia', 'Contemporary', 'Audiobook', 'Adult', 'Novels']", "['Romance', 'Military Fiction', 'New Adult', 'Contemporary Romance', 'Contemporary', 'War', 'Military Romance']", "['Romance', 'Young Adult', 'Paranormal', 'Romantic Suspense']", "['Fantasy', 'Young Adult', 'Adventure', 'Humor', 'Magic', 'Middle Grade', 'Mythology']", "['Fantasy', 'Young Adult', 'Novella', 'Short Stories', 'Fiction', 'High Fantasy', 'Romance']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Music', 'Adult', 'Chick Lit']", "['Fiction', 'Science Fiction', 'Contemporary', 'Drama', 'Thriller', 'Novels', 'Young Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Historical Fiction', 'Steampunk', 'Urban Fantasy']", "['Young Adult', 'Contemporary', 'Romance', 'Mental Health', 'Fiction', 'Mental Illness', 'Realistic Fiction']", "['Horror', 'Paranormal', 'Short Stories', 'Thriller', 'Fiction', 'Indian Literature', 'Fantasy']", "['Romance', 'Young Adult', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Dark', 'Abuse']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Erotica', 'Adult', 'Abuse']", "['Nonfiction', 'Asia', 'Business', 'Travel', 'History', 'Memoir', 'Politics']", "['Fiction', 'Thriller', 'Mystery', 'Suspense', 'Audiobook', 'Action', 'Mystery Thriller']", "['Young Adult', 'Fantasy', 'Paranormal', 'Contemporary', 'Romance', 'Fiction', 'LGBT']", "['Comics', 'Graphic Novels', 'Fantasy', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'Urban Fantasy']", "['Romance', 'Music', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Rock N Roll', 'New Adult']", "['Reverse Harem', 'Young Adult', 'Romance', 'Contemporary', 'High School', 'Mystery', 'Fiction']", "['Nonfiction', 'History', 'Biography', 'Russia', 'Historical', 'Audiobook', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Science Fiction', 'New Adult', 'Paranormal', 'Fiction', 'Amazon']", "['Fiction', 'Historical Fiction', 'War', 'Russia', 'Literary Fiction', 'Historical', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Childrens', 'Historical', 'Time Travel', 'Young Adult', 'Adventure']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Mental Illness']", "['Nonfiction', 'True Crime', 'Humor', 'Comedy', 'Biography', 'Memoir', 'Cultural']", "['Graphic Novels', 'Young Adult', 'Comics', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Coming Of Age']", "['Aliens', 'Science Fiction', 'Romance', 'Fantasy', 'Paranormal', 'Science Fiction Romance', 'Paranormal Romance']", "['Nonfiction', 'History', 'Classics', 'Biography', 'Memoir', 'Historical', 'Autobiography']", "['Nonfiction', 'Self Help', 'Mental Health', 'Inspirational', 'Memoir', 'Biography', 'Unfinished']", "['Fantasy', 'Dystopia', 'Young Adult', 'Romance', 'Novella', 'Fiction', 'Science Fiction']", "['Mystery', 'Historical Fiction', 'Fiction', 'Historical', 'Egypt', 'Romance', 'Historical Mystery']", "['Horror', 'Fiction', 'Thriller', 'Dystopia', 'Mystery', 'Science Fiction', 'Post Apocalyptic']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Fantasy', 'Magical Realism', 'Adult']", "['Mystery', 'Fiction', 'Science Fiction', 'Tv', 'Mystery Thriller', 'Thriller']", "['Historical Fiction', 'War', 'Adventure', 'Drama', 'Epic', 'Fiction', 'Historical']", "['Nonfiction', 'Self Help', 'Psychology', 'Memoir', 'Audiobook', 'Personal Development', 'Health']", "['Young Adult', 'Contemporary', 'Romance', 'Abuse', 'Realistic Fiction', 'Fiction', 'High School']", "['Romance', 'New Adult', 'Erotica', 'Contemporary Romance', 'Contemporary', 'BDSM', 'Adult']", "['Fantasy', 'Fiction', 'Humor', 'Science Fiction', 'Urban Fantasy']", "['Nonfiction', 'Feminism', 'Essays', 'Politics', 'Womens', 'Gender', 'Memoir']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Novella', 'Young Adult', 'College']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Audiobook', 'Suspense', 'Mystery Thriller']", "['Amazon']", "['Christianity']", "['Fiction', 'Romance', 'Fantasy', 'Time Travel', 'Science Fiction', 'Contemporary', 'Adult']", "['Fantasy', 'Paranormal', 'Urban Fantasy', 'Supernatural', 'Young Adult', 'Demons', 'Horror']", "['Romance', 'New Adult', 'College', 'Contemporary', 'Contemporary Romance', 'High School', 'Young Adult']", "['Romance', 'New Adult', 'Young Adult', 'Contemporary', 'Novella', 'Contemporary Romance', 'Fiction']", "['Fantasy', 'Fiction', 'Short Stories', 'Audiobook', 'Adventure', 'High Fantasy', 'Epic Fantasy']", "['Fantasy', 'Romance', 'Historical Fiction', 'Fiction', 'Urban Fantasy', 'Paranormal', 'Spanish Literature']", "['Thriller', 'Fiction', 'Adventure', 'Mystery', 'Science Fiction', 'Action', 'Mystery Thriller']", "['Fantasy', 'Fiction', 'Audiobook', 'High Fantasy', 'Polish Literature', 'Adventure', 'Epic Fantasy']", "['Fiction', 'Young Adult', 'Mystery', 'Thriller', 'Contemporary', 'Horror', 'Mystery Thriller']", "['Graphic Novels', 'Horror', 'Comics', 'Fantasy', 'Short Stories', 'Young Adult', 'Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'Chick Lit', 'Young Adult Contemporary', 'High School', 'Realistic Fiction']", "['Fantasy', 'Mythology', 'Fiction', 'Retellings', 'Adult', 'Audiobook', 'Historical Fiction']", "['Horror', 'Fantasy', 'Graphic Novels', 'Manga', 'Comics', 'Fiction', 'Paranormal']", "['Young Adult', 'LGBT', 'Contemporary', 'Romance', 'Queer', 'Lesbian', 'Fiction']", "['Nonfiction', 'Business', 'Memoir', 'Feminism', 'Self Help', 'Biography', 'Audiobook']", "['Philosophy', 'Nonfiction', 'Self Help', 'Business', 'Personal Development', 'Psychology', 'Leadership']", "['History', 'Nonfiction', 'World War I', 'War', 'Politics', 'European History', 'Military History']", "['Nonfiction', 'History', 'Civil War', 'Biography', 'Historical', 'War', 'American History']", "['Comics', 'Fantasy']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Audiobook', 'Young Adult Contemporary', 'Teen']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Chick Lit', 'Contemporary', 'Adult']", "['Fiction', 'Contemporary', 'Mystery', 'Historical Fiction', 'Audiobook', 'Literary Fiction', 'Adult']", "['Nonfiction', 'Psychology', 'Self Help', 'Mental Health', 'Health', 'Science', 'Audiobook']", "['Nonfiction', 'Memoir']", "['Young Adult', 'Contemporary', 'Mystery', 'Fiction', 'Romance', 'Thriller', 'Audiobook']", "['Romance', 'Humor', 'Fiction', 'Contemporary', 'Chick Lit', 'Contemporary Romance', 'Comedy']", "['Novels', 'Romance', 'Fiction', 'Literature', 'Romantic', 'Love', 'Contemporary']", "['Fantasy', 'Science Fiction', 'Fiction', 'Superheroes', 'Horror', 'Urban Fantasy', 'Dystopia']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Mental Health', 'Coming Of Age', 'Mental Illness']", "['Young Adult', 'Romance', 'Dystopia', 'Fantasy', 'Science Fiction', 'Fiction', 'Novella']", "['Economics', 'Nonfiction', 'Politics', 'History', 'Business', 'Finance', 'Philosophy']", "['Fantasy', 'Fiction', 'Audiobook', 'High Fantasy', 'Epic Fantasy', 'Steampunk', 'Adult']", "['Adventure', 'Nonfiction', 'Travel', 'Memoir']", "['Dark', 'Romance', 'Abuse', 'Adult', 'Contemporary', 'Crime', 'Contemporary Romance']", "['Science Fiction', 'Dystopia', 'Cyberpunk', 'Pulp', 'Fiction', 'Space Opera', 'Mystery']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Sports', 'Drama', 'Sports Romance']", "['Mystery', 'Fiction', 'Horror', 'Thriller', 'Mystery Thriller', 'Adult', 'Contemporary']", "['Fiction', 'Contemporary', 'Audiobook', 'Humor', 'Adult', 'Book Club', 'Adult Fiction']", "['Horror', 'Thriller', 'Fiction', 'Mystery', 'Crime', 'Audiobook', 'Mystery Thriller']", "['Romance', 'New Adult', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Adult', 'Abuse']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Erotica', 'Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Fiction', 'Young Adult Fantasy', 'Historical Fiction']", "['Comics', 'Graphic Novels', 'Horror', 'Short Stories', 'Fiction']", "['Nonfiction', 'Memoir', 'Nature', 'Biography', 'Animals', 'Audiobook', 'Birds']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Crime']", "['Nonfiction', 'Feminism', 'Essays', 'Memoir', 'Audiobook', 'Womens', 'Race']", "['Fiction', 'Mystery', 'Audiobook', 'Contemporary', 'Adult Fiction', 'Adult', 'Chick Lit']", "['Fiction', 'Occult', 'Philosophy', 'Classics', 'Fantasy', 'Novels', 'Literature']", "['Philosophy', 'Nonfiction', 'Classics', 'Literature', 'Spirituality', 'Religion', 'Poetry']", "['Science Fiction', 'Short Stories', 'Fiction', 'Fantasy', 'Dystopia', 'Climate Change Fiction', 'The United States Of America']", "['Nonfiction', 'Memoir', 'True Crime', 'Biography', 'Abuse', 'Crime', 'Audiobook']", "['History', 'Nonfiction', 'Race', 'Africa', 'Anti Racist', 'Historical', 'World History']", "['Classics', 'Fiction', 'Historical Fiction', 'Gothic', 'Mystery', 'Historical', 'Thriller']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'Mystery', 'Gothic', 'Romance']", "['Short Stories', 'Horror', 'Classics', 'Fiction', 'Gothic', 'Mystery', 'Thriller']", "['Science Fiction', 'Horror', 'Paranormal', 'Aliens', 'Dystopia', 'Fantasy', 'Dark']", "['True Crime', 'Nonfiction', 'Crime', 'Japan', 'Audiobook', 'Mystery', 'History']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Mental Health', 'Mystery']", "['History', 'American History', 'Catholic', 'Religion', 'Nonfiction']", "['Fantasy', 'Picture Books', 'Childrens', 'Family', 'Education', 'Magic', 'Adventure']", "['Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Thriller', 'Asia', 'Novels']", "['Romance', 'Contemporary Romance', 'Erotica', 'Contemporary', 'New Adult', 'BDSM', 'Erotic Romance']", "['Mathematics', 'Science', 'Philosophy', 'Nonfiction', 'Textbooks', 'Reference', 'Technical']", "['Romance', 'Contemporary', 'Young Adult', 'New Adult', 'Fiction', 'Contemporary Romance', 'Music']", "['Fantasy', 'Romance', 'Fiction', 'Young Adult']", "['Nonfiction', 'Travel', 'Biography', 'Crime', 'Memoir', 'True Crime', 'Bolivia']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Vampires', 'Magic', 'Romance', 'Science Fiction']", "['Romance', 'New Adult', 'Contemporary Romance', 'Contemporary', 'Music', 'Humor', 'Adult']", "['Fantasy', 'Fiction', 'Magic', 'Urban Fantasy', 'Audiobook', 'Science Fiction Fantasy', 'Adult']", "['Horror', 'Young Adult', 'Paranormal', 'Mystery', 'Teen', 'Fantasy', 'Ghosts']", "['Fantasy', 'Fiction', 'Science Fiction', 'Dystopia', 'Adult', 'Audiobook', 'Science Fiction Fantasy']", "['Fiction', 'Crime', 'Noir', 'Mystery', 'Thriller', 'Novels', 'Pulp']", "['Fiction', 'Crime', 'Noir', 'Mystery', 'Thriller', 'Novels', 'Hard Boiled']", "['Romance', 'Contemporary Romance', 'Contemporary']", "['Historical Fiction', 'Young Adult', 'Historical', 'Middle Grade', 'Fiction', 'Coming Of Age', 'Fantasy']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Erotica', 'Military Fiction', 'Adult', 'Romantic Suspense']", "['Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Crime', 'Suspense', 'Contemporary']", "['Ukrainian Literature', 'Ukraine', 'Plays', 'Drama', 'Classics', 'Poetry', 'Fiction']", "['Fiction', 'Classics', 'Poetry', 'Ukrainian Literature', 'Plays', 'Ukraine', 'Drama']", "['Graphic Novels', 'Fantasy', 'Comics', 'Young Adult', 'Fiction', 'LGBT', 'Graphic Novels Comics']", "['Romance', 'New Adult', 'Young Adult', 'Contemporary', 'Contemporary Romance', 'Fiction', 'Chick Lit']", "['Survival', 'Adventure', 'Fiction', 'Novels', 'Thriller', 'Literature', 'Womens']", "['Romance', 'Fiction', 'Indian Literature', 'Love', 'Love Story', 'Romantic', 'Novels']", "['Fantasy', 'Paranormal', 'Young Adult', 'Horror', 'Witches', 'Fiction', 'Historical Fiction']", "['Fantasy', 'Angels', 'Paranormal', 'Fiction', 'Mythology', 'Dark', 'Demons']", "['Fantasy', 'Fiction', 'Tarot', 'Classics', 'Literature', 'Novels', 'Christian']", "['Fiction', 'Humor', 'Contemporary', 'Horror', 'Science Fiction', 'Adult', 'Thriller']", "['Spirituality', 'Poetry', 'Nonfiction']", "['Young Adult', 'LGBT', 'Contemporary', 'Fiction', 'Romance', 'Queer', 'Science Fiction']", "['Young Adult', 'Romance', 'LGBT', 'Contemporary', 'Fiction', 'Queer', 'Realistic Fiction']", "['Romance', 'Mystery', 'Psychology']", "['Fantasy', 'Young Adult', 'Dragons', 'Fiction', 'Romance', 'Young Adult Fantasy', 'High Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Swedish Literature', 'Medieval', 'Scandinavian Literature', 'War']", "['Nonfiction', 'Memoir', 'Humor', 'Biography', 'Audiobook', 'Autobiography', 'Biography Memoir']", "['Fiction', 'Science Fiction', 'Dystopia', 'Post Apocalyptic', 'Audiobook', 'Fantasy', 'Adult']", "['Nonfiction', 'True Crime', 'Memoir', 'Biography', 'Crime', 'Biography Memoir', 'Autobiography']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Adult', 'Young Adult', 'Fiction']", "['Young Adult', 'Romance', 'Short Stories', 'Christmas', 'Contemporary', 'Anthologies', 'Holiday']", "['Romantic Suspense', 'Romance', 'Thriller', 'Mystery Thriller', 'Suspense', 'Mystery']", "['Fantasy', 'Mystery', 'Young Adult', 'Historical Fiction', 'Paranormal', 'Historical', 'Fiction']", "['Novels', 'Fiction', 'Romance', 'Fantasy', 'Literature', 'Drama', 'Religion']", "['Novels', 'Fiction', 'Romance', 'Romantic', 'Literature', 'Fantasy', 'Love']", "['Novels', 'Fiction', 'Thriller', 'Drama', 'Crime', 'Literature']", "['Nonfiction', 'Memoir', 'Social Justice', 'Race', 'Politics', 'History', 'Audiobook']", "['Fantasy', 'Fiction', 'High Fantasy', 'Epic Fantasy', 'Dark Fantasy', 'Epic', 'Adventure']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Young Adult', 'High School', 'Fiction']", "['Fiction', 'Dystopia', 'Young Adult', 'Fantasy', 'Science Fiction', 'Adventure', 'Thriller']", "['Halloween']", "['Fiction', 'Occult', 'Horror', 'Thriller', 'Mystery', 'Fantasy', 'Supernatural']", "['Mystery', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Romance', 'Crime', 'Contemporary']", "['Dark', 'Romance', 'BDSM', 'Contemporary', 'Erotica', 'Abuse', 'Contemporary Romance']", "['Short Stories', 'Fiction', 'Classics']", "['Fantasy', 'Mythology', 'Middle Grade', 'Young Adult', 'Childrens', 'Science Fiction', 'Gods']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Dystopia', 'Fiction', 'High Fantasy']", "['Romance', 'Erotica', 'Contemporary', 'Contemporary Romance', 'Adult', 'Fiction', 'Erotic Romance']", "['Romance', 'Time Travel', 'Historical', 'Historical Romance', 'Fantasy', 'Historical Fiction', 'Adult']", "['Time Travel', 'Fantasy', 'Young Adult', 'Romance', 'Science Fiction', 'Paranormal', 'Fiction']", "['Fantasy', 'Dragons', 'Young Adult', 'Romance', 'Paranormal', 'Magic', 'Fiction']", "['Science Fiction', 'Fiction', 'China', 'Fantasy', 'Science Fiction Fantasy', 'Audiobook', 'Aliens']", "['Science', 'Nonfiction', 'Philosophy', 'Artificial Intelligence', 'Technology', 'Computer Science', 'Psychology']", "['Romance', 'Dark', 'New Adult', 'Contemporary', 'Suspense', 'Abuse', 'Adult']", "['New Adult', 'Romance', 'Contemporary Romance', 'Menage', 'Young Adult', 'Erotica', 'Erotic Romance']", "['New Adult', 'Romance', 'Contemporary', 'Erotica', 'Contemporary Romance', 'Young Adult', 'Humor']", "['BDSM', 'Erotica', 'Romance', 'Contemporary', 'Adult', 'Erotic Romance', 'Contemporary Romance']", "['Zombies', 'Horror', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Humor']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Magic', 'Fiction', 'Adventure', 'Childrens']", "['Young Adult', 'Zombies', 'Fantasy', 'Paranormal', 'Romance', 'Horror', 'Urban Fantasy']", "['Science Fiction', 'Young Adult', 'LGBT', 'Dystopia', 'Fiction', 'Fantasy', 'Banned Books']", "['Nonfiction', 'Memoir', 'Feminism', 'Biography', 'Humor', 'Audiobook', 'Essays']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Chick Lit', 'Fiction', 'Abuse']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Fiction', 'Fae', 'Young Adult Fantasy']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Adult', 'Audiobook', 'Fiction']", "['Young Adult', 'Contemporary', 'Romance', 'LGBT', 'Fiction', 'Mental Health', 'Queer']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Fiction', 'BDSM']", "['Thriller', 'Dark', 'Mystery', 'Adult', 'Mystery Thriller', 'Romance', 'Fiction']", "['Dystopia', 'Young Adult', 'Romance', 'Fantasy', 'Science Fiction', 'Fiction', 'Post Apocalyptic']", "['Fantasy', 'Young Adult', 'Fiction', 'Dystopia', 'Books About Books', 'Historical Fiction', 'Steampunk']", "['Romance', 'Erotica', 'BDSM', 'Contemporary Romance', 'Contemporary', 'Adult', 'New Adult']", "['Science', 'Nonfiction', 'Physics', 'Astronomy', 'Space', 'Audiobook', 'Essays']", "['Nonfiction', 'Medicine', 'Science', 'Health', 'Medical', 'Philosophy', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Young Adult Contemporary', 'Chick Lit']", "['Graphic Novels', 'Middle Grade', 'Memoir', 'Childrens', 'Comics', 'Nonfiction', 'Disability']", "['Urban Fantasy', 'Fantasy', 'Romance', 'Paranormal', 'Magic', 'Paranormal Romance', 'Adult']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Audiobook', 'Fantasy']", "['Audiobook', 'Science Fiction', 'Adult', 'Science Fiction Fantasy', 'Novels', 'Speculative Fiction', 'Adult Fiction']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Fairy Tales', 'Childrens', 'Adventure']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Suspense', 'Psychological Thriller', 'Crime']", "['Young Adult', 'Science Fiction', 'Dystopia', 'Fantasy', 'Fiction', 'Adventure', 'Romance']", "['Young Adult', 'Fantasy', 'Paranormal', 'Romance', 'Dystopia', 'Paranormal Romance', 'Post Apocalyptic']", "['Romance', 'Contemporary', 'Erotica', 'Contemporary Romance', 'New Adult', 'Adult', 'Novella']", "['Fantasy', 'Fiction', 'Young Adult', 'Magic', 'Adult', 'Audiobook', 'Romance']", "['Fantasy', 'Young Adult', 'Mythology', 'Paranormal', 'Romance', 'Fiction', 'Science Fiction']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Aliens', 'Fiction', 'Adventure', 'Paranormal']", "['Fantasy', 'Young Adult', 'LGBT', 'Paranormal', 'Magic', 'Fiction', 'Witches']", "['Fantasy', 'Young Adult', 'LGBT', 'Magic', 'Fiction', 'Paranormal', 'Witches']", "['Fiction', 'Fantasy', 'Science Fiction', 'Literary Fiction', 'Magical Realism', 'Contemporary', 'Audiobook']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'LGBT', 'Queer', 'Realistic Fiction']", "['Fantasy', 'Young Adult', 'Dystopia', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Magic']", "['Poetry', 'Memoir', 'Nonfiction', 'Middle Grade', 'Biography', 'Audiobook', 'Childrens']", "['Historical Fiction', 'Fiction', 'Poland', 'Historical', 'Romance', '18th Century', 'Adult']", "['Romance', 'New Adult', 'Abuse', 'Contemporary', 'College', 'Contemporary Romance', 'Dark']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Suspense', 'Fiction', 'Dark', 'Abuse']", "['Fantasy', 'Mythology', 'Young Adult']", "['Fiction', 'Historical Fiction', 'Literary Fiction', 'Crime', 'Mystery', 'Novels', 'Historical']", "['Romance', 'Classics', 'Christian', 'Historical Fiction', 'Fiction']", "['Nonfiction', 'Memoir', 'Humor', 'Audiobook', 'Biography', 'Comedy', 'Autobiography']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Romance', 'Fiction', 'Adventure', 'Young Adult Fantasy']", "['Historical Fiction', 'Middle Grade', 'Fiction', 'Young Adult', 'Historical', 'World War II', 'Childrens']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Mystery', 'Audiobook', 'Science Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Fae', 'Fiction', 'LGBT', 'Urban Fantasy']", "['Fiction', 'Contemporary', 'Adult', 'New Adult', 'Fantasy', 'Action', 'Novels']", "['Mystery', 'Crime', 'Fiction', 'Plays', 'Audiobook', 'Classics', 'Mystery Thriller']", "['Nonfiction', 'Memoir', 'Biography', 'Self Help', 'Audiobook', 'Music', 'Art']", "['Fantasy', 'Young Adult', 'Time Travel', 'Historical Fiction', 'Romance', 'Science Fiction', 'Historical']", "['Mystery', 'Thriller', 'Fiction', 'Suspense', 'Mystery Thriller', 'Paranormal', 'Crime']", "['Nonfiction', 'History', 'Humor', 'Comedy', 'Philosophy', 'Politics', 'Historical']", "['Poetry', 'Anthologies', 'Literature', 'English Literature']", "['Humor', 'Fiction', 'Comedy']", "['Nonfiction', 'Feminism', 'Politics', 'Womens', 'Social Justice', 'Gender', 'Sociology']", "['Fiction', 'Short Stories', 'Fantasy', 'Literature', 'Latin American Literature', 'Anthologies', 'Spanish Literature']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'College', 'Adult', 'Drama']", "['Nonfiction', 'Memoir', 'Audiobook', 'Biography', 'Humor', 'Biography Memoir', 'Autobiography']", "['Fiction', 'Contemporary', 'Novels', 'Literary Fiction', 'Audiobook', 'Queer', 'LGBT']", "['Nonfiction', 'Science', 'Humor', 'Audiobook', 'Physics', 'Comedy', 'Popular Science']", "['Fantasy', 'Young Adult', 'Magic', 'Young Adult Fantasy', 'Witches', 'Romance', 'High Fantasy']", "['Fantasy', 'Fiction', 'Steampunk', 'Mystery', 'Young Adult', 'Books About Books', 'Urban Fantasy']", "['Romance', 'Contemporary Romance', 'Erotica', 'Contemporary', 'BDSM', 'New Adult', 'Adult']", "['Dark', 'Thriller', 'Suspense', 'Fiction', 'Adult', 'Realistic Fiction', 'New Adult']", "['Crime', 'Thriller', 'Memoir', 'Humor', 'Biography', 'Nonfiction', 'True Crime']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Vampires', 'Shapeshifters', 'Werewolves', 'Adult']", "['Thriller', 'Fiction', 'Mystery', 'Romance', 'France', 'Crime', 'Mystery Thriller']", "['Fantasy', 'Urban Fantasy', 'Mystery', 'Fiction', 'Crime', 'Magic', 'Audiobook']", "['Middle Grade', 'Fiction', 'Humor', 'Childrens', 'Graphic Novels', 'Realistic Fiction', 'Young Adult']", "['Fantasy', 'Fiction', 'High Fantasy', 'Novella', 'Short Stories', 'Epic Fantasy', 'Science Fiction Fantasy']", "['Science Fiction', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Action', 'Crime', 'Mystery']", "['Romance', 'Dark', 'Contemporary', 'New Adult', 'Adult', 'Contemporary Romance', 'Crime']", "['Classics', 'Fiction', 'Ukrainian Literature', 'Drama', 'Plays', 'Poetry', 'Ukraine']", "['Romance', 'Young Adult', 'Contemporary', 'Contemporary Romance', 'High School', 'Love', 'Teen']", "['Historical Fiction', 'Fiction', 'Historical', 'World War II', 'Audiobook', 'War', 'Romance']", "['Nonfiction', 'History', 'Biography', 'Business', 'Technology', 'Science', 'Audiobook']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Audiobook', 'Suspense']", "['Young Adult', 'Romance', 'Thriller', 'Mystery', 'Contemporary', 'Fiction', 'Suspense']", "['Romance', 'Dark', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Erotica', 'Adult']", "['Fiction', 'Contemporary', 'Literary Fiction', 'British Literature', 'Novels', 'Audiobook', 'Religion']", "['Young Adult', 'Science Fiction', 'Fiction', 'LGBT', 'Dystopia', 'Fantasy', 'Mystery']", "['Family']", "['Romance', 'Dark', 'Contemporary', 'Abuse', 'Contemporary Romance', 'New Adult', 'Adult']", "['Romance', 'Contemporary Romance', 'New Adult', 'Music', 'Musicians', 'Fiction']", "['Historical Fiction', 'India', 'Romance', 'Fiction']", "['Theology', 'Christian', 'Christianity', 'Nonfiction', 'Religion', 'Philosophy', 'Essays']", "['Young Adult', 'Romance', 'Dystopia', 'Fantasy', 'Novella', 'Fiction', 'Short Stories']", "['Fantasy', 'Fiction', 'Young Adult', 'Magic', 'Adult', 'Audiobook', 'Adventure']", "['Fiction', 'Thriller', 'Mystery']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Chick Lit', 'Humor', 'Love', 'New Adult']", "['Vampires', 'Witches', 'Angels', 'Werewolves', 'Paranormal', 'Magic', 'Paranormal Romance']", "['Fantasy', 'Fiction', 'Middle Grade', 'Christian', 'Young Adult', 'Christian Fiction', 'Audiobook']", "['Middle Grade', 'Fiction', 'Animals', 'Childrens', 'Young Adult', 'War', 'Adventure']", "['Fiction', 'Short Stories', 'Classics', 'Philosophy', 'German Literature', 'Literature', 'Germany']", "['Romance', 'Dark', 'Abuse', 'Contemporary', 'Contemporary Romance', 'Adult', 'New Adult']", "['Poetry', 'Romance', 'Contemporary', 'Fiction', 'Young Adult', 'Adult', 'Love']", "['Poetry', 'Inspirational', 'Literature', 'Islam', 'Spirituality', 'Philosophy', 'Music']", "['Nonfiction', 'Science', 'Memoir', 'Psychology', 'Biography', 'Neuroscience', 'Health']", "['Fiction', 'Poetry', 'Childrens']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Adventure', 'Fiction', 'Mythology', 'Science Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Autobiography', 'Self Help', 'Contemporary']", "['Fiction', 'Mystery', 'Humor', 'Crime', 'Thriller', 'Mystery Thriller', 'Comedy']", "['Historical Fiction', 'Young Adult', 'Romance', 'Historical', 'Fantasy', 'Fiction', 'Mystery']", "['Fiction', 'Polygamy', 'Contemporary', 'Politics']", "['Fantasy', 'Romance', 'Young Adult', 'Dystopia', 'Fiction', 'Science Fiction', 'Fantasy Romance']", "['Fiction', 'Ukrainian Literature', 'Classics', 'Plays', 'Ukraine', 'Audiobook', 'Drama']", "['Horror', 'Paranormal', 'Suspense', 'Gothic', 'Fantasy', 'Fiction', 'Mystery']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'LGBT', 'Adventure', 'Magic']", "['Fantasy', 'Young Adult', 'Magic', 'Young Adult Fantasy', 'Fiction', 'Demons', 'High Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Young Adult Fantasy', 'LGBT', 'Magic']", "['Nonfiction', 'Self Help', 'Audiobook', 'Personal Development', 'Psychology', 'Japan', 'Productivity']", "['Fantasy', 'Dragons', 'Middle Grade', 'Fiction', 'Young Adult', 'Childrens', 'Adventure']", "['Fiction', 'Contemporary', 'Adult', 'Novels', 'New Adult', 'Love Story', 'Romance']", "['Middle Grade', 'Realistic Fiction', 'Fiction', 'Young Adult', 'Contemporary', 'Childrens', 'School']", "['Young Adult', 'Paranormal', 'Fantasy', 'Horror', 'Supernatural', 'Fiction']", "['Fantasy', 'Young Adult', 'Steampunk', 'Fiction', 'Mystery', 'Magic', 'Science Fiction']", "['Philosophy', 'Economics', 'Politics', 'Law', 'Nonfiction', 'Political Science', 'Classics']", "['Romance', 'Contemporary', 'Erotica', 'Dark', 'Contemporary Romance', 'Adult', 'New Adult']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Amazon', 'Science Fiction']", "['Historical Fiction', 'Young Adult', 'Historical', 'Romance', 'Westerns', 'Fiction', 'Adventure']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Chick Lit', 'Young Adult Contemporary', 'Mental Health']", "['Nonfiction', 'Psychology', 'Autistic Spectrum Disorder', 'Science', 'History', 'Disability', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'Sports', 'Sports Romance', 'New Adult', 'High School']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Literary Fiction', 'Magical Realism', 'Historical', 'Novels']", "['Fantasy', 'Short Stories', 'Fiction', 'Horror', 'Science Fiction', 'Audiobook', 'Anthologies']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Contemporary', 'Suspense', 'Young Adult']", "['Romance', 'New Adult', 'Young Adult', 'Contemporary', 'College', 'Fiction', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Magic', 'Fairy Tales', 'Retellings']", "['Fantasy', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens', 'Magic', 'Books About Books']", "['Nonfiction', 'History', 'Audiobook', 'Historical', 'War', 'World War I', 'American History']", "['Poetry', 'Young Adult', 'Fiction', 'Contemporary', 'Audiobook', 'Realistic Fiction', 'Teen']", "['Science Fiction', 'Fiction', 'Space Opera', 'Aliens', 'Space', 'Romance', 'Science Fiction Fantasy']", "['Young Adult', 'Dystopia', 'Fantasy', 'Science Fiction', 'Romance', 'Adventure', 'Fiction']", "['Young Adult', 'Mystery', 'Contemporary', 'Fiction', 'Thriller', 'Adventure', 'Mystery Thriller']", "['Nonfiction', 'Psychology', 'Sociology', 'Audiobook', 'Journalism', 'Adult', 'Humor']", "['Romance', 'New Adult', 'Young Adult', 'Contemporary', 'Fiction', 'College', 'Contemporary Romance']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Suspense', 'Russia', 'Spy Thriller']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Audiobook', 'Mystery', 'Contemporary']", "['History', 'Biography', 'Nonfiction', 'American History', 'Aviation', 'Audiobook', 'Science']", "['Nonfiction', 'History', 'Politics', 'Russia', 'Biography', 'Business', 'Memoir']", "['Romance', 'New Adult', 'Sports', 'Sports Romance', 'College', 'Contemporary', 'Contemporary Romance']", "['Self Help', 'Humor', 'Adult', 'Nonfiction', 'Psychology', 'Guidebook', 'New Adult']", "['Romance', 'New Adult', 'Contemporary', 'Fiction', 'College', 'Contemporary Romance', 'Young Adult']", "['Young Adult', 'LGBT', 'Contemporary', 'Fiction', 'Queer', 'Realistic Fiction', 'Mental Health']", "['Thriller', 'Fiction', 'Adventure', 'Action', 'Mystery', 'Suspense', 'Military Fiction']", "['Magical Realism', 'Fantasy', 'Fiction', 'Young Adult', 'Coming Of Age', 'New Adult', 'New Weird']", "['Photography', 'Nonfiction', 'Art', 'Memoir', 'Adult', 'Autobiography', 'Biography']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Retellings', 'Contemporary Romance', 'Chick Lit']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Magic', 'Romance']", "['Science Fiction', 'Fiction', 'LGBT', 'Queer', 'Space Opera', 'Fantasy', 'Space']", "['Nonfiction', 'Feminism', 'Essays', 'Audiobook', 'Politics', 'Womens', 'Africa']", "['Science Fiction', 'Fiction', 'Post Apocalyptic', 'Science Fiction Fantasy', 'Audiobook', 'Fantasy', 'Space']", "['Romance', 'Contemporary']", "['Fiction', 'LGBT', 'Erotica', 'Lesbian']", "['Fiction', 'Contemporary', 'LGBT', 'Literary Fiction', 'Queer', 'Adult', 'Mental Health']", "['Historical Fiction', 'Fiction', 'Westerns', 'Adventure', 'Historical', 'Audiobook', 'Survival']", "['Historical Fiction', 'Fantasy', 'Young Adult', 'Romance', 'Historical', 'Audiobook', 'Fiction']", "['Thriller', 'Crime', 'Romance', 'Mystery', 'Amazon', 'Fiction', 'Suspense']", "['Thriller', 'Romance', 'Crime', 'Amazon']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Erotica', 'Adult', 'Young Adult']", "['Young Adult', 'Contemporary', 'Romance', 'Abuse', 'Fiction', 'Young Adult Contemporary', 'Realistic Fiction']", "['Fantasy', 'Young Adult', 'Fiction', 'Dystopia', 'Magic', 'Adult', 'Young Adult Fantasy']", "['Nonfiction', 'Memoir', 'Biography', 'Africa', 'Middle Grade', 'Audiobook', 'Biography Memoir']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Adult', 'Magic', 'Audiobook']", "['History', 'Nonfiction', 'Military Fiction', 'Adult', 'Biography', 'Aviation', 'Adventure']", "['Philosophy', 'Inspirational', 'Self Help', 'Nonfiction', 'Spirituality']", "['Nonfiction', 'Memoir', 'Biography', 'LGBT', 'Autobiography', 'Queer', 'Biography Memoir']", "['Nonfiction', 'Self Help', 'Personal Development', 'Psychology', 'Audiobook', 'Productivity', 'Health']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Fiction', 'Urban Fantasy', 'Young Adult Fantasy']", "['Romance', 'Contemporary Romance', 'Contemporary', 'New Adult', 'Erotica', 'Adult', 'Erotic Romance']", "['Romance', 'Young Adult']", "['Young Adult', 'Fantasy', 'Contemporary', 'Fiction', 'LGBT', 'Paranormal', 'Mental Health']", "['BDSM', 'Erotica', 'Romance', 'Humor', 'Erotic Romance', 'Suspense', 'Short Stories']", "['Science Fiction', 'Space', 'Military Fiction']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Steampunk', 'Historical', 'Mystery', 'Magical Realism']", "['Nonfiction', 'Memoir', 'Feminism', 'Queer', 'LGBT', 'Essays', 'Biography']", "['Comics', 'Horror', 'Fiction']", "['Humor', 'Comedy', 'Nonfiction']", "['Paranormal', 'Fantasy', 'Paranormal Romance', 'Romance', 'Angels', 'Erotica', 'Fantasy Romance']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Young Adult Contemporary', 'Audiobook']", "['Nonfiction', 'Animals', 'Biography', 'Memoir', 'Classics', 'Humor', 'Autobiography']", "['Romance', 'Humor', 'Contemporary', 'Contemporary Romance', 'Chick Lit', 'Adult', 'New Adult']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Paranormal', 'Audiobook', 'Adult']", "['LGBT', 'Young Adult', 'Contemporary', 'Fiction', 'Queer', 'Transgender', 'Romance']", "['Thriller', 'Fiction', 'Crime', 'Mystery', 'German Literature', 'Audiobook', 'Mystery Thriller']", "['Science Fiction Romance', 'Science Fiction']", "['Fiction', 'Islam', 'Muslims', 'Historical Fiction']", "['Historical Fiction', 'Historical', 'World War I', 'Fiction', 'Historical Romance', 'Romance', 'War']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Young Adult Fantasy', 'Fantasy Romance', 'High Fantasy']", "['Fiction', 'Fantasy', 'Short Stories', 'Magical Realism', 'Japan', 'Japanese Literature', 'Horror']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Humor', 'Mystery', 'Audiobook']", "['Paranormal', 'Urban Fantasy', 'Fantasy', 'Vampires', 'Romance', 'Paranormal Romance', 'Erotica']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Realistic Fiction', 'Audiobook', 'Young Adult Contemporary']", "['Fiction', 'Italy', 'Historical Fiction', 'Italian Literature', 'Literary Fiction', 'Novels', 'Contemporary']", "['Science Fiction', 'Fiction', 'Horror', 'Audiobook', 'Mystery', 'Thriller', 'Fantasy']", "['Fantasy', 'Young Adult', 'Fiction', 'Paranormal', 'Historical Fiction', 'Horror', 'Time Travel']", "['Fiction', 'Historical Fiction', 'War', 'Asia', 'Historical', 'Literary Fiction', 'Novels']", "['Science Fiction', 'Fiction', 'China', 'Audiobook', 'Science Fiction Fantasy', 'Fantasy', 'Aliens']", "['Young Adult', 'Dystopia', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Audiobook', 'Magic']", "['Science Fiction', 'Fiction', 'Space Opera', 'Space', 'Audiobook', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Fantasy', 'Urban Fantasy', 'Paranormal', 'Romance', 'Young Adult', 'Magic', 'Demons']", "['Romance', 'New Adult', 'Contemporary Romance', 'Music', 'Contemporary', 'College', 'Musicians']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Magic', 'Young Adult Fantasy', 'Romance', 'Historical']", "['Science Fiction', 'Fiction', 'Dystopia', 'Thriller', 'Post Apocalyptic', 'Climate Change Fiction', 'Fantasy']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Adult']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Audiobook', 'Mental Health', 'Business']", "['Dark', 'Romance', 'Contemporary', 'Abuse', 'Adult', 'New Adult', 'Contemporary Romance']", "['Romance', 'Contemporary', 'Young Adult', 'Love', 'High School', 'Humor', 'Contemporary Romance']", "['Science Fiction', 'Fantasy', 'Romance', 'Science Fiction Romance']", "['Fantasy', 'Romance', 'Urban Fantasy', 'Young Adult']", "['Fantasy', 'Adult', 'Young Adult', 'Fiction', 'LGBT', 'High Fantasy', 'New Adult']", "['Fantasy', 'Adult', 'Fiction', 'LGBT', 'Young Adult', 'Romance', 'High Fantasy']", "['Mystery', 'Young Adult', 'Contemporary', 'Fiction', 'Retellings', 'Mystery Thriller', 'Romance']", "['Fiction', 'Romance', 'Books About Books', 'France', 'Contemporary', 'Audiobook', 'Adult']", "['Romance', 'Dark', 'Abuse', 'New Adult', 'Contemporary', 'Crime', 'Suspense']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Mental Health', 'Chick Lit', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Young Adult Fantasy', 'Fiction', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Young Adult Fantasy', 'Historical Fiction', 'Fiction']", "['Science Fiction', 'Fantasy', 'Novels', 'Dark', 'Fiction']", "['Romance', 'Contemporary', 'New Adult', 'Fiction', 'Contemporary Romance', 'Adult', 'College']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Young Adult Contemporary', 'Realistic Fiction', 'Mental Health']", "['Historical Fiction', 'Fiction', 'Canada', 'Historical', 'Africa', 'African American', 'Book Club']", "['Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Audiobook', 'Leadership', 'Mental Health']", "['Romance', 'Contemporary Romance', 'Contemporary', 'New Adult', 'Marriage', 'Young Adult', 'Humor']", "['Paranormal', 'Paranormal Romance', 'Fantasy', 'Fantasy Romance', 'Angels', 'Romance', 'Erotica']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Suspense', 'Crime', 'Psychological Thriller']", "['Horror', 'Young Adult', 'Mystery', 'Paranormal', 'Thriller', 'Fantasy', 'Fiction']", "['Science Fiction', 'Young Adult', 'Romance', 'Fantasy', 'Fiction', 'Dystopia', 'Audiobook']", "['Fantasy', 'Horror', 'Retellings', 'Fiction', 'Adult', 'Dark', 'Magic']", "['Thriller', 'Crime', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Detective']", "['Nonfiction', 'True Crime', 'Memoir', 'Biography', 'Crime', 'Audiobook', 'Biography Memoir']", "['Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Romance', 'Audiobook']", "['Fantasy', 'Fiction', 'LGBT', 'Science Fiction', 'Queer', 'Lesbian', 'Adult']", "['Young Adult', 'Contemporary', 'LGBT', 'Fiction', 'Queer', 'Realistic Fiction', 'Coming Of Age']", "['Nonfiction', 'Humor', 'Audiobook', 'Romance', 'Comedy', 'Sociology', 'Psychology']", "['True Crime', 'Nonfiction', 'Crime', 'Audiobook', 'Biography', 'Memoir', 'History']", "['Fantasy', 'Christian Fiction', 'Christian', 'Christian Fantasy', 'Adventure', 'Young Adult', 'Fiction']", "['Fiction', 'Horror', 'Thriller', 'Mystery', 'Crime', 'Audiobook', 'Mystery Thriller']", "['Fiction', 'Romance', 'Contemporary', 'Humor', 'Audiobook', 'Chick Lit', 'Adult']", "['Spirituality', 'Inspirational', 'Self Help', 'Nonfiction']", "['Psychology', 'Self Help', 'Nonfiction']", "['Fantasy', 'Fiction', 'Dystopia', 'Science Fiction Fantasy', 'Young Adult']", "['Fantasy', 'Middle Grade', 'Mystery', 'Historical Fiction', 'Fiction', 'Young Adult', 'Childrens']", "['Fiction', 'Classics', 'Romance', 'Novels', 'Christian Fiction', 'Religion', 'Inspirational']", "['Feminism', 'Nonfiction', 'Poetry', 'Contemporary', 'Adult', 'Romance', 'Mental Health']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Audiobook', 'Speculative Fiction']", "['Young Adult', 'Contemporary', 'Fiction', 'Romance', 'Mental Health', 'Realistic Fiction', 'Audiobook']", "['Middle Grade', 'Historical Fiction', 'Fiction', 'Graphic Novels', 'Fantasy', 'Childrens', 'Young Adult']", "['Fantasy', 'Young Adult', 'Magic', 'Young Adult Fantasy', 'Adventure', 'Fiction', 'Paranormal']", "['LGBT', 'Young Adult', 'Gay', 'Fiction', 'Gay Fiction', 'M M Romance', 'Queer']", "['Romance', 'New Adult', 'Contemporary', 'Novella', 'Audiobook', 'Fiction', 'Contemporary Romance']", "['LGBT', 'Contemporary', 'Young Adult', 'Sports', 'Queer', 'Fiction', 'M M Romance']", "['Fiction', 'Crime', 'Thriller', 'Mystery', 'Historical Fiction', 'Audiobook', 'Mystery Thriller']", "['Fantasy', 'Dragons', 'Middle Grade', 'Fiction', 'Childrens', 'Young Adult', 'Adventure']", "['Fiction', 'Contemporary', 'Fantasy', 'Audiobook', 'Humor', 'Adult', 'Adult Fiction']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Magic', 'Childrens']", "['Mental Health']", "['Young Adult', 'LGBT', 'Contemporary', 'Science Fiction', 'Fiction', 'Queer', 'Romance']", "['Nonfiction', 'History', 'Science', 'Philosophy', 'Anthropology', 'Audiobook', 'Psychology']", "['Nonfiction', 'Self Help', 'Essays', 'Inspirational', 'Adult', 'Philosophy', 'Memoir']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Psychological Thriller']", "['Artificial Intelligence', 'Science', 'Technology', 'Nonfiction', 'Futurism']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Aliens', 'Amazon', 'Fiction', 'Romance']", "['Fantasy', 'Young Adult', 'Dystopia', 'Romance', 'Young Adult Fantasy', 'Fiction', 'Magic']", "['Mystery', 'Fiction', 'Thriller', 'Suspense', 'Paranormal', 'Mystery Thriller', 'Crime']", "['Leadership', 'Business', 'Nonfiction', 'Self Help', 'Personal Development', 'Management', 'Military Fiction']", "['Nonfiction', 'Memoir', 'Audiobook', 'Mental Health', 'Biography', 'Humor', 'Comedy']", "['Nonfiction', 'Self Help', 'Relationships', 'Psychology', 'Marriage', 'Christian', 'Personal Development']", "['Fantasy', 'Young Adult', 'Horror', 'Mystery', 'Paranormal', 'Middle Grade', 'Fiction']", "['Novels', 'Fiction', 'Fantasy', 'Horror', 'Historical Fiction', 'Literature', 'Audiobook']", "['Paranormal', 'Shapeshifters', 'Paranormal Romance', 'Romance', 'Werewolves', 'Fantasy', 'Wolves']", "['Nonfiction', 'Science', 'History', 'Biography', 'Nature', 'Environment', 'Natural History']", "['Romance', 'Historical', 'Historical Fiction', 'Historical Romance', 'Fiction', 'Humor', 'Young Adult']", "['Romance', 'Sports Romance', 'Sports', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Adult']", "['Prayer', 'Christian', 'Christian Living', 'Theology', 'Faith', 'Nonfiction', 'Christianity']", "['Fantasy', 'Young Adult', 'Fiction', 'Paranormal', 'Historical Fiction', 'Horror', 'Audiobook']", "['Vampires', 'Romance', 'Paranormal', 'Supernatural', 'Fantasy', 'Paranormal Romance']", "['New Adult', 'Romance', 'Young Adult']", "['Science Fiction', 'Fiction', 'Young Adult', 'Contemporary', 'Audiobook', 'LGBT', 'Fantasy']", "['Science Fiction', 'Fiction', 'Mystery', 'Science Fiction Fantasy', 'Audiobook', 'LGBT', 'Fantasy']", "['Paranormal', 'Fantasy', 'Romance', 'Vampires', 'Paranormal Romance', 'Urban Fantasy', 'Mystery']", "['Video Games']", "['Paranormal', 'Fantasy', 'Vampires', 'Romance', 'Urban Fantasy', 'Paranormal Romance', 'Mystery']", "['Romance', 'Young Adult', 'Contemporary', 'Mystery', 'New Adult', 'Fiction', 'Paranormal']", "['Horror', 'Classics', 'Fiction', 'Speculative Fiction', 'Mystery', 'Gothic']", "['Dark', 'Romance', 'Abuse', 'Erotica', 'Military Fiction', 'BDSM', 'Suspense']", "['Middle Grade', 'Young Adult', 'Fiction', 'Realistic Fiction', 'Contemporary', 'Childrens', 'Death']", "['Romance', 'Young Adult', 'Contemporary', 'Mystery', 'New Adult', 'Paranormal', 'Fantasy']", "['Romance', 'New Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Young Adult', 'Audiobook']", "['Nonfiction', 'Self Help', 'Writing', 'Audiobook', 'Personal Development', 'Art', 'Psychology']", "['Romance', 'Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Short Stories', 'Novella']", "['Fantasy', 'Romance', 'M M Romance', 'LGBT', 'Magic', 'Humor', 'Dragons']", "['Mystery', 'Thriller', 'Crime', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Detective']", "['Nonfiction', 'Film', 'Media Tie In', 'Art', 'Collections', 'History', '21st Century']", "['Young Adult', 'Contemporary', 'Fiction', 'Thriller', 'Realistic Fiction', 'LGBT', 'Mental Health']", "['Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Audiobook', 'History', 'Asia']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Time Travel', 'Dystopia', 'Science Fiction Fantasy', 'Thriller']", "['Fantasy', 'Young Adult', 'Short Stories', 'Fiction', 'Novella', 'Magic', 'High Fantasy']", "['Mythology', 'Fiction', 'Fantasy', 'Indian Literature', 'Historical Fiction', 'Amish', 'India']", "['Nonfiction', 'Business', 'Finance', 'Economics', 'History', 'Audiobook', 'Technology']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Young Adult Fantasy', 'Fiction', 'New Adult']", "['Fiction', 'Detective', 'Historical Fiction', 'Russian Literature', 'Russia', 'Mystery']", "['Horror', 'Short Stories', 'Fiction', 'Weird Fiction', 'Anthologies', 'Lovecraftian', 'Fantasy']", "['Time Travel']", "['Historical Fiction', 'Young Adult', 'Fantasy', 'Historical', 'Fiction', 'Alternate History', 'Science Fiction']", "['Fiction', 'Historical Fiction', 'Classics', 'Audiobook', 'Historical', 'Adult', 'Adult Fiction']", "['Romance', 'Fiction', 'Audiobook', 'Chick Lit', 'Mystery', 'Contemporary', 'Adult']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Indonesian Literature', 'Asia', 'Novels', 'Historical']", "['Thriller', 'Horror', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Psychological Thriller']", "['Mystery', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Contemporary', 'Crime', 'Romance']", "['New Adult', 'Suspense', 'Modern', 'Thriller', 'Fiction', 'Young Adult', 'Speculative Fiction']", "['Fantasy', 'Steampunk', 'Fiction', 'Science Fiction', 'Audiobook', 'Adventure', 'Science Fiction Fantasy']", "['Short Stories', 'Fantasy', 'Fiction', 'Science Fiction', 'Magical Realism', 'Historical Fiction', 'Anthologies']", "['Paranormal', 'Paranormal Romance', 'Vampires', 'Romance', 'Fantasy', 'Urban Fantasy', 'Adult']", "['Science Fiction', 'Young Adult', 'Romance', 'Fantasy', 'Fiction', 'Audiobook', 'Space']", "['Fantasy', 'Young Adult', 'Romance', 'Angels', 'Paranormal', 'Fiction', 'Paranormal Romance']", "['Nonfiction', 'True Crime', 'Audiobook', 'Feminism', 'Crime', 'History', 'Politics']", "['Romance', 'New Adult', 'Sports Romance', 'Sports', 'Contemporary', 'College', 'Contemporary Romance']", "['History', 'Biography', 'Nonfiction', 'Race', 'American History', 'African American', 'Politics']", "['Fantasy', 'Young Adult', 'Romance', 'Magic', 'Fiction', 'Young Adult Fantasy', 'Adventure']", "['Dark', 'Romance', 'New Adult', 'High School', 'Contemporary', 'Abuse', 'Erotica']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Audiobook', 'Suspense']", "['New Adult', 'Romance', 'College', 'Contemporary', 'Contemporary Romance', 'Sports', 'Young Adult']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Childrens', 'Fairy Tales']", "['Young Adult', 'Contemporary', 'Fiction', 'Realistic Fiction', 'Audiobook', 'Race', 'Social Justice']", "['Adventure']", "['Fantasy', 'Young Adult', 'Dystopia', 'Novella', 'Short Stories', 'Romance', 'Fiction']", "['Young Adult', 'Contemporary', 'LGBT', 'Romance', 'Fiction', 'Queer', 'Mental Health']", "['Noir', 'Short Stories', 'France', 'Crime', 'Fiction', 'Mystery']", "['Thriller', 'Spanish Literature', 'European Literature', 'Mystery', 'Fiction', 'Magical Realism', 'Drama']", "['Horror', 'Vampires', 'Classics', 'Fiction', '19th Century', 'France', 'Fantasy']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Contemporary Romance', 'High School', 'Fiction']", "['Memoir', 'Nonfiction', 'Music', 'Feminism', 'Biography', 'Audiobook', 'Biography Memoir']", "['Nonfiction', 'Psychology', 'Self Help', 'Business', 'Personal Development', 'Leadership', 'Audiobook']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Mystery Thriller', 'Audiobook', 'Suspense']", "['Economics', 'Philosophy', 'Politics', 'Nonfiction', 'Business', 'History', 'Classics']", "['Historical Fiction', 'Fiction', 'LGBT', 'Queer', 'Romance', 'Historical', 'Lesbian']", "['Contemporary', 'New Adult', 'Fiction', 'Audiobook', 'Contemporary Romance', 'Young Adult', 'Adult']", "['Romance', 'Science Fiction', 'Fantasy', 'Aliens', 'Erotica', 'Adult', 'Paranormal']", "['Philosophy', 'Nonfiction', 'Science', 'Psychology', 'Artificial Intelligence', 'Unfinished', 'Self Help']", "['Nonfiction', 'History', 'Geography', 'Science', 'Economics', 'Audiobook', 'Politics']", "['Fiction', 'Pirates', 'Mystery', 'Thriller', 'Suspense']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Adult', 'Adult Fiction', 'Romance']", "['Historical Fiction', 'Fiction', 'Romance', 'Audiobook', 'Historical', 'Contemporary', 'Adult']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Contemporary', 'Audiobook', 'Adult']", "['Nonfiction', 'Memoir', 'Death', 'Science', 'Audiobook', 'Biography', 'Biography Memoir']", "['Nonfiction', 'Humor', 'Audiobook', 'Memoir', 'Biography', 'Autobiography', 'Contemporary']", "['Dark', 'Erotica', 'BDSM', 'Romance', 'Adult Fiction', 'Erotic Romance', 'Contemporary']", "['Fiction', 'Italy', 'Historical Fiction', 'Italian Literature', 'Literary Fiction', 'Contemporary', 'Novels']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Contemporary', 'Audiobook', 'Adult']", "['Romance', 'Historical Fiction', 'Young Adult', 'Christian Fiction', 'Fantasy', 'Christian', 'Fairy Tales']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Magic', 'Adult']", "['Fantasy', 'Romance', 'Young Adult', 'Spanish Literature', 'Fiction', 'Erotic Romance', 'LGBT']", "['Contemporary', 'Young Adult', 'LGBT', 'Fiction', 'Queer', 'Mental Health', 'Audiobook']", "['Fiction', 'German Literature', 'Roman', 'Art', 'Novels', 'Crime', 'Mystery']", "['Science Fiction', 'Fiction', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Queer', 'Audiobook']", "['Nonfiction', 'Memoir', 'Biography', 'Asia', 'History', 'Biography Memoir', 'Autobiography']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Classics', 'Historical Romance', 'British Literature']", "['Fantasy', 'Science Fiction', 'Fiction', 'Magical Realism', 'Magic', 'Urban Fantasy', 'Romance']", "['Memoir', 'Nonfiction']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'Chick Lit', 'Fiction']", "['Nonfiction', 'Biography', 'Feminism', 'History', 'Politics', 'Audiobook', 'Biography Memoir']", "['Politics', 'Nonfiction', 'History', 'Economics', 'Cultural', 'Audiobook', 'American']", "['Young Adult', 'Contemporary', 'Mental Health', 'Fiction', 'Young Adult Contemporary', 'Realistic Fiction', 'Romance']", "['Romance', 'Coming Of Age', 'Young Adult', 'Dystopia', 'Love', 'War', 'Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Audiobook', 'Magic']", "['Science Fiction', 'Fiction', 'China', 'Audiobook', 'Fantasy', 'Science Fiction Fantasy', 'Space']", "['Fantasy', 'Fiction', 'Short Stories', 'Audiobook', 'High Fantasy', 'Adventure', 'Polish Literature']", "['Horror', 'Fiction', 'Mystery', 'Gothic', 'Thriller', 'Contemporary', 'Literary Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Young Adult Contemporary', 'High School', 'Realistic Fiction']", "['Travel', 'Nonfiction', 'Humor', 'Memoir', 'Audiobook', 'British Literature', 'History']", "['Fiction', 'Contemporary', 'Horror', 'Literary Fiction', 'Asia', 'Mental Health', 'Adult']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Young Adult', 'Historical', 'Mythology', 'Fairy Tales']", "['Nonfiction', 'Memoir', 'Race', 'Audiobook', 'History', 'Social Justice', 'Biography']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Urban Fantasy', 'Young Adult Fantasy', 'Fiction']", "['Science Fiction', 'Fiction', 'Space Opera', 'Fantasy', 'Audiobook', 'Space', 'Science Fiction Fantasy']", "['Fantasy', 'Dinosaurs', 'Fiction', 'Science Fiction Fantasy', 'Science Fiction', 'Adult', 'Epic Fantasy']", "['Nonfiction', 'Memoir', 'LGBT', 'Humor', 'Biography', 'Audiobook', 'Autobiography']", "['Fiction', 'Adult', 'New Adult', 'Contemporary', 'Adventure', 'Young Adult', 'Novels']", "['Fantasy', 'Young Adult', 'Fiction', 'Mystery', 'LGBT', 'Audiobook', 'Novella']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Crime', 'Audiobook', 'Mystery Thriller']", "['Biography', 'Nonfiction', 'Business', 'Science', 'Technology', 'Audiobook', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Fiction', 'Audiobook', 'High Fantasy']", "['Romance', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Adult', 'Drama', 'Fiction']", "['Romance', 'Sports Romance', 'New Adult', 'Sports', 'Contemporary', 'College', 'Contemporary Romance']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Crime', 'Suspense']", "['Young Adult', 'Contemporary', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Young Adult Contemporary', 'Abuse']", "['Nonfiction', 'Business', 'Psychology', 'Self Help', 'Leadership', 'Personal Development', 'Audiobook']", "['Nonfiction', 'Self Help', 'Personal Development', 'Audiobook', 'Reference', 'Psychology', 'How To']", "['Graphic Novels', 'Comics', 'Fiction', 'Graphic Novels Comics', 'Comic Book', 'Thriller', 'Crime']", "['Classics', 'Fiction', 'Historical Fiction', 'Literature', 'Historical', 'Feminism', 'Literary Fiction']", "['Paranormal', 'Werewolves', 'Shapeshifters', 'Romance', 'Paranormal Romance', 'Fantasy', 'Young Adult']", "['Fantasy', 'Urban Fantasy', 'Dragons', 'Magic', 'Paranormal', 'Young Adult', 'Fiction']", "['Romance', 'Erotica', 'BDSM', 'Fiction', 'Contemporary', 'Adult', 'Contemporary Romance']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'High School', 'Contemporary Romance', 'Abuse']", "['Nonfiction', 'Memoir', 'Art', 'Essays', 'Biography', 'Psychology', 'New York']", "['Science Fiction', 'Fiction', 'Fantasy', 'Novella', 'Young Adult', 'Audiobook', 'Short Stories']", "['Fantasy', 'Middle Grade', 'Retellings', 'Fairy Tales', 'Romance', 'Cinderella', 'Childrens']", "['Fantasy', 'Science Fiction', 'Young Adult', 'Retellings', 'Short Stories', 'Dystopia', 'Fiction']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Suspense', 'Westerns', 'Mystery Thriller']", "['Young Adult', 'Mental Health', 'Contemporary', 'Romance', 'Mental Illness', 'Fiction', 'Realistic Fiction']", "['Romance', 'New Adult', 'Contemporary Romance', 'Contemporary', 'College', 'High School', 'Young Adult']", "['Fantasy', 'Dragons', 'Young Adult', 'Romance', 'Magic', 'Paranormal', 'Paranormal Romance']", "['Nonfiction', 'Mental Health', 'Self Help', 'Memoir', 'Psychology', 'Biography', 'Audiobook']", "['Nonfiction', 'Science', 'Memoir', 'Biography', 'Nature', 'Audiobook', 'Biography Memoir']", "['Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Adult', 'Mystery', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'Witches', 'Romance', 'Magic', 'Young Adult Fantasy', 'Fiction']", "['Nonfiction', 'Self Help', 'Productivity', 'Business', 'Psychology', 'Personal Development', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Travel', 'Young Adult Contemporary', 'Audiobook']", "['Paranormal', 'Fantasy', 'Romance', 'Erotica', 'Paranormal Romance', 'Demons', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Horror', 'Science Fiction', 'Fiction', 'Graphic Novels', 'Teen']", "['Romance', 'LGBT', 'Young Adult', 'Contemporary', 'Queer', 'Fiction', 'Novella']", "['Young Adult', 'Contemporary', 'Fiction', 'Mystery', 'Thriller', 'Feminism', 'Audiobook']", "['Philosophy', 'Christian', 'Nonfiction', 'Theology', 'Christianity', 'Classics', 'Education']", "['Science Fiction', 'Fiction', 'Thriller', 'Mystery', 'Fantasy', 'Adventure', 'Audiobook']", "['Christian', 'Fiction', 'Religion', 'Classics', 'Theology', 'Christianity', 'Fantasy']", "['Nonfiction', 'Sociology', 'Politics', 'Social Justice', 'History', 'Economics', 'Audiobook']", "['Christian Fiction', 'Christian', 'Fiction', 'Contemporary', 'Inspirational', 'Spirituality', 'Religion']", "['Fiction', 'Crime', 'Thriller', 'Mystery', 'Contemporary', 'Scotland', 'Novels']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Fiction', 'Chick Lit', 'Adult', 'Audiobook']", "['Historical Fiction', 'Fiction', 'World War II', 'Historical', 'Audiobook', 'War', 'Holocaust']", "['Historical Fiction', 'Fiction', 'Art', 'Italy', 'Historical', 'Art History', 'Audiobook']", "['Nonfiction', 'Memoir', 'Biography', 'Medicine', 'Medical', 'Audiobook', 'Autobiography']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Audiobook', 'High School']", "['Nonfiction', 'Memoir', 'True Crime', 'Biography', 'Audiobook', 'Crime', 'Biography Memoir']", "['Young Adult', 'Dystopia', 'Fiction', 'Romance', 'Short Stories', 'Young Adult Fantasy', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Fiction', 'High Fantasy', 'Audiobook']", "['Nonfiction', 'History', 'Science', 'Biography', 'Feminism', 'Historical', 'Space']", "['Manga', 'Graphic Novels', 'Comics', 'Fiction', 'Coming Of Age', 'Slice Of Life', 'Seinen']", "['Fiction', 'Drama', 'Psychological Thriller', 'Novels', 'Crime', 'Mystery', 'Suspense']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'France', 'Young Adult Fantasy', 'Magic']", "['Fiction', 'Short Stories', 'Horror', 'Thriller', 'Mystery', 'Mystery Thriller', 'Audiobook']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Star Wars', 'Humor', 'Autobiography']", "['Historical Fiction', 'Middle Grade', 'Young Adult', 'Fiction', 'Historical', 'Childrens', 'Realistic Fiction']", "['Middle Grade', 'Science Fiction', 'Fiction', 'Childrens', 'Fantasy', 'Animals', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Fae', 'Fiction', 'Young Adult Fantasy', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Fae', 'Young Adult Fantasy', 'Fiction', 'Magic']", "['Nonfiction', 'Memoir', 'Feminism', 'Audiobook', 'Biography', 'Biography Memoir', 'Mental Health']", "['Fiction', 'Young Adult', 'Magical Realism', 'Fantasy', 'New Adult', 'Adult', 'Novels']", "['Medical', 'Nonfiction', 'Memoir', 'Health', 'Medicine', 'Biography', 'Biography Memoir']", "['Nonfiction', 'Christian', 'Religion', 'Christianity', 'Theology', 'Memoir', 'Classics']", "['Fantasy', 'Young Adult', 'Magic', 'Adventure', 'Young Adult Fantasy', 'Romance', 'Audiobook']", "['Book Club', 'Drama', 'Contemporary Romance', 'Crime', 'Historical Fiction', 'Literary Fiction', 'Young Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Adult', 'High Fantasy', 'Romance', 'New Adult']", "['Historical Fiction', 'Young Adult', 'Romance', 'Historical', 'Mystery', 'Fantasy', 'Historical Romance']", "['Fiction', 'Magical Realism', 'Contemporary', 'Literary Fiction', 'Fantasy', 'Historical Fiction', 'Adult']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Fiction', 'New Adult', 'Adult', 'Chick Lit']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Dark', 'Fantasy', 'Mystery', 'Contemporary']", "['Dark', 'Erotica', 'Adult Fiction', 'Romance', 'BDSM', 'Suspense', 'Erotic Romance']", "['Dark', 'BDSM', 'Romance', 'Erotica', 'Abuse', 'Suspense', 'Contemporary']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Mythology', 'Vampires', 'Urban Fantasy']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Audiobook', 'Fiction']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Crime']", "['Business', 'Nonfiction', 'Psychology', 'Self Help', 'Communication', 'Personal Development', 'Leadership']", "['Fiction', 'Epic', 'Contemporary', 'Novels', 'Fantasy', 'Drama', 'Paranormal']", "['Novels', 'Psychology']", "['Nonfiction', 'Self Help', 'Humor', 'Personal Development', 'Audiobook', 'Psychology', 'Mental Health']", "['Nonfiction', 'History', 'Plays', 'Audiobook', 'Music', 'Historical', 'Theatre']", "['Fantasy', 'Fiction', 'Science Fiction', 'Dystopia', 'Audiobook', 'Science Fiction Fantasy', 'Adult']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense', 'Psychological Thriller']", "['Fiction', 'Contemporary', 'Audiobook', 'Chick Lit', 'Mystery', 'Adult Fiction', 'Adult']", "['Self Help', 'Memoir', 'Biography', 'Nonfiction', 'Adult', 'True Story', 'Autobiography']", "['Science Fiction Fantasy', 'Science Fiction']", "['Business', 'Entrepreneurship', 'Finance', 'Economics', 'Nonfiction', 'Money', 'Productivity']", "['Reverse Harem', 'Paranormal', 'Fantasy', 'Romance', 'Young Adult', 'New Adult', 'Magic']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'High School', 'Abuse']", "['Romance', 'New Adult', 'Contemporary Romance', 'Contemporary', 'College', 'Erotica', 'Love']", "['Fantasy', 'Horror', 'Dark Fantasy', 'Heroic Fantasy']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Religion', 'Autobiography', 'Cults']", "['Science Fiction', 'Young Adult', 'Fantasy', 'Dystopia', 'Romance', 'Fiction', 'Space']", "['Fantasy', 'Science Fiction', 'Fiction', 'Adult', 'Urban Fantasy', 'Paranormal', 'Audiobook']", "['Thriller', 'Fiction', 'Adventure', 'Short Stories', 'Action', 'Mystery Thriller', 'Suspense']", "['Young Adult', 'Fantasy', 'Romance', 'Vampires', 'Paranormal', 'Fiction', 'Paranormal Romance']", "['Horror', 'Fantasy', 'Fiction', 'Novella', 'Historical Fiction', 'Urban Fantasy', 'Lovecraftian']", "['Nonfiction', 'Business', 'Economics', 'Finance', 'History', 'Politics', 'Audiobook']", "['Politics', 'Nonfiction', 'Biography', 'Business', 'Audiobook', 'History', 'Presidents']", "['Fantasy', 'Horror', 'Fiction', 'Science Fiction', 'Adult', 'Mystery', 'Urban Fantasy']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Audiobook', 'Literary Fiction', 'Historical', 'Adult']", "['Nonfiction', 'Politics', 'Inspirational', 'Education', 'History', 'How To', 'Biography']", "['Nonfiction', 'Philosophy', 'Essays', 'History', 'Science', 'Psychology', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Africa', 'Historical', 'Literary Fiction', 'Audiobook', 'Race']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Music', 'Fiction']", "['Fiction', 'Science Fiction', 'Young Adult', 'Space', 'Novels', 'Time Travel', 'Contemporary']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Politics', 'Biography Memoir', 'Sociology']", "['Fantasy', 'Young Adult', 'Dystopia', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Audiobook']", "['Romance', 'Fiction', 'Contemporary', 'Audiobook', 'Chick Lit', 'Adult', 'Contemporary Romance']", "['Fantasy', 'Historical Fiction', 'Young Adult', 'Historical', 'Romance', 'Fiction', 'Retellings']", "['Comics', 'Graphic Novels', 'Dc Comics', 'Fiction', 'Superheroes', 'Horror', 'Science Fiction']", "['Nonfiction', 'Psychology', 'Self Help', 'Business', 'Personal Development', 'Audiobook', 'Leadership']", "['Business', 'Biography', 'Nonfiction', 'Memoir', 'Sports', 'Audiobook', 'Autobiography']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'Military Fiction', 'Fiction']", "['Animals', 'Picture Books']", "['Romance', 'Sports Romance', 'New Adult', 'Sports', 'Contemporary', 'College', 'Hockey']", "['Fiction', 'Mystery', 'Legal Thriller', 'Thriller', 'Crime', 'Mystery Thriller', 'Audiobook']", "['New Adult', 'Crime', 'Contemporary', 'Adult', 'Fiction', 'Mystery', 'Thriller']", "['Spirituality', 'Inspirational', 'Self Help', 'Psychology', 'Philosophy', 'Nonfiction']", "['Fantasy', 'Fiction', 'Science Fiction', 'Young Adult', 'Spirituality', 'Drama', 'Paranormal']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Mystery Thriller', 'Adventure', 'Southern']", "['Fiction', 'Contemporary', 'New Adult', 'Audiobook', 'Contemporary Romance', 'Adult', 'Abuse']", "['Science', 'Nonfiction', 'History', 'Biology', 'Medicine', 'Genetics', 'Health']", "['Cookbooks', 'Cooking', 'Culinary', 'New Adult', 'Adult']", "['Philosophy', 'Science', 'Psychology', 'Nonfiction', 'Self Help', 'Sociology', 'Society']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'School', 'Contemporary', 'Novels', 'Literature']", "['Fiction', 'Contemporary', 'Audiobook', 'Humor', 'Adult', 'Adult Fiction', 'Literary Fiction']", "['Middle Grade', 'Realistic Fiction', 'Fiction', 'Childrens', 'Animals', 'Family', 'Dogs']", "['Humor', 'Indian Literature', 'Literary Fiction', 'Fiction', 'Comedy', 'India', 'Contemporary']", "['Classics', 'Fiction', 'Gothic', '18th Century', 'Literature', 'Mystery', 'British Literature']", "['Paranormal', 'Paranormal Romance', 'Romance', 'Fantasy', 'Mythology', 'Vampires', 'Gods']", "['Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Audiobook', 'Adult', 'Adult Fiction']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Dystopia', 'High Fantasy']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Australia', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Magic', 'High Fantasy', 'Fiction']", "['Science Fiction', 'Fiction', 'Thriller', 'Mystery', 'Audiobook', 'Mystery Thriller', 'Adult']", "['Fantasy', 'Fiction', 'Horror', 'Science Fiction', 'Adventure', 'Audiobook', 'Humor']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Dragons', 'Fiction', 'Magic', 'Animals']", "['Fiction', 'Philosophy', 'Romance', 'Psychology', 'Relationships', 'Love', 'Self Help']", "['Young Adult', 'High School', 'Romance', 'Abuse']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Mystery', 'Magic']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'Adventure', 'LGBT']", "['Poetry', 'Feminism', 'Classics', 'Finnish Literature', 'Swedish Literature', 'Fiction', 'Novels']", "['Fantasy', 'Mythology', 'Young Adult', 'Middle Grade', 'Fiction', 'LGBT', 'Adventure']", "['Drama', 'Contemporary', 'Novels', 'Fiction']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Psychological Thriller']", "['Fiction', 'Contemporary', 'German Literature', 'Literary Fiction', 'Roman', 'Romance', 'Germany']", "['Historical Fiction', 'Turkish Literature', 'Fiction', 'Turkish', 'Romance', 'Roman', 'Literature']", "['Middle Grade', 'Fantasy', 'Fiction', 'Childrens', 'Magic', 'Audiobook', 'Mystery']", "['Fiction', 'Young Adult', 'Childrens', 'Magic', 'Audiobook', 'Witches', 'Dragons']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'Adult Fiction', 'Adult', 'Audiobook']", "['Historical Fiction', 'Young Adult', 'Historical', 'Fiction', 'Time Travel', 'Fantasy', 'Contemporary']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Mental Health', 'Young Adult Contemporary', 'Realistic Fiction']", "['Mystery', 'Historical Fiction', 'Historical', 'Fiction', 'Romance', 'Mystery Thriller', 'Historical Mystery']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Adult']", "['Science Fiction', 'Fiction', 'Cyberpunk', 'Dystopia', 'LGBT', 'Science Fiction Fantasy', 'Audiobook']", "['Young Adult', 'Contemporary', 'LGBT', 'Fiction', 'Queer', 'Lesbian', 'Mental Health']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Literary Fiction', 'Contemporary', 'Novels', 'Historical']", "['Nonfiction', 'Science', 'Nature', 'Environment', 'Audiobook', 'Biology', 'Ecology']", "['Nonfiction', 'Self Help', 'Psychology', 'Audiobook', 'Personal Development', 'Philosophy', 'Business']", "['Fantasy', 'Young Adult', 'Romance', 'New Adult', 'Fae', 'Fiction', 'Magic']", "['Fantasy', 'Young Adult', 'Young Adult Fantasy', 'Fiction', 'Romance', 'Magic', 'Audiobook']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'Audiobook', 'Africa', 'Race']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Superheroes', 'Audiobook']", "['Biography', 'History', 'Nonfiction', 'Politics', 'American History', 'Audiobook', 'Biography Memoir']", "['Historical Fiction', 'Fiction', 'Civil War', 'American Civil War', 'Historical', 'War', 'Australia']", "['Nonfiction', 'Science', 'Psychology', 'Business', 'Technology', 'Economics', 'Sociology']", "['Historical Fiction', 'Fiction', 'Classics', 'Italy', 'Novels', 'Literature', 'The United States Of America']", "['Fantasy', 'Young Adult', 'Romance', 'Dystopia', 'Young Adult Fantasy', 'Fiction', 'Magic']", "['Historical Fiction', 'Fiction', 'American History', 'War', 'Classics', 'World War II', 'American']", "['Historical Fiction', 'Fiction', 'Classics', 'War']", "['Fiction', 'Novels']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Humor', 'Adult', 'Audiobook', 'New Adult']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'High School', 'Contemporary Romance', 'Fiction']", "['Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Audiobook']", "['Horror', 'Thriller', 'Fiction', 'Audiobook', 'Mystery Thriller', 'Adult', 'Contemporary']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Realistic Fiction', 'Young Adult Contemporary']", "['History', 'Nonfiction', 'Ancient History', 'Historical', 'Italy', 'Audiobook', 'Classics']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Crime']", "['Romance', 'LGBT', 'Young Adult', 'Contemporary', 'Queer', 'Fiction', 'Audiobook']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Paranormal', 'Short Stories', 'Romance', 'Young Adult Fantasy']", "['Fantasy', 'Young Adult', 'Dystopia', 'Science Fiction', 'Fiction', 'Audiobook', 'Romance']", "['Young Adult', 'Teen', 'Drama', 'Dark', 'Mental Illness', 'Contemporary']", "['Nonfiction', 'Psychology', 'Memoir', 'Biography', 'Education', 'Abuse', 'True Story']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Psychological Thriller']", "['Fantasy', 'Romance', 'Young Adult', 'Magic', 'Fantasy Romance', 'New Adult', 'Paranormal']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Audiobook', 'Mental Health', 'Coming Of Age']", "['Fantasy', 'Fiction', 'Young Adult', 'Plays', 'Magic', 'Adventure', 'Middle Grade']", "['Romance', 'Dark', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Suspense', 'Adult']", "['Science Fiction', 'Military Science Fiction', 'Adventure', 'Action']", "['Fantasy', 'Young Adult', 'Romance', 'Urban Fantasy', 'Science Fiction', 'Paranormal', 'New Adult']", "['Cookbooks', 'Cooking', 'Nonfiction', 'Reference']", "['Mystery', 'Crime', 'Fiction', 'Thriller', 'Scotland', 'Audiobook', 'Mystery Thriller']", "['Science Fiction', 'Fantasy', 'Fiction', 'Dystopia', 'Audiobook', 'Adult', 'Young Adult']", "['Science Fiction', 'Fantasy', 'Fiction', 'Dystopia', 'Audiobook', 'Space Opera', 'Adult']", "['Fantasy', 'Paranormal', 'LGBT', 'M M Romance', 'Queer', 'Shapeshifters', 'Werewolves']", "['Science Fiction', 'Young Adult', 'Romance', 'Fantasy', 'Fiction', 'Audiobook', 'Dystopia']", "['Young Adult', 'Mental Health', 'Fiction', 'Contemporary', 'Romance', 'Mental Illness', 'Realistic Fiction']", "['Historical Fiction', 'Young Adult', 'Romance', 'LGBT', 'Historical', 'Fiction', 'Queer']", "['Nonfiction', 'Memoir', 'Feminism', 'Essays', 'Humor', 'Audiobook', 'Biography']", "['Leadership', 'Business', 'Nonfiction', 'Management', 'Self Help', 'Personal Development', 'Psychology']", "['Short Stories', 'Fiction', 'Novels', 'Poetry', 'Literature']", "['Fantasy', 'Fiction', 'Young Adult', 'Plays', 'Magic', 'Adventure', 'Historical Fiction']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Dystopia', 'Romance', 'Fiction', 'Audiobook']", "['Poetry', 'Contemporary', 'Fiction']", "['Nonfiction', 'Memoir', 'Biography', 'True Crime', 'Autobiography', 'Biography Memoir', 'Audiobook']", "['Fantasy', 'Young Adult', 'Young Adult Fantasy', 'Paranormal', 'Magic', 'Fiction', 'Demons']", "['Fantasy', 'Young Adult']", "['Horror', 'Fiction', 'Thriller', 'Cults', 'Audiobook', 'Mystery', 'Adult']", "['Thriller', 'Fiction', 'Audiobook', 'Mystery', 'Mystery Thriller', 'Contemporary', 'Crime']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Psychological Thriller']", "['Classics', 'Ukrainian Literature', 'Drama']", "['Science Fiction', 'Fiction', 'Space Opera', 'Audiobook', 'Queer', 'LGBT', 'Space']", "['Fantasy', 'Comics']", "['Nonfiction', 'History', 'True Crime', 'Crime', 'Audiobook', 'Mystery', 'Historical']", "['History', 'Audiobook', 'Literature', 'Egypt', 'Historical']", "['Fantasy', 'Dragons', 'Middle Grade', 'Fiction', 'Adventure', 'Childrens', 'Young Adult']", "['Fantasy', 'Young Adult', 'Dragons', 'Magic', 'Time Travel', 'Adventure', 'Young Adult Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy']", "['Fantasy', 'Fiction', 'Adventure', 'High Fantasy', 'Adult', 'Epic Fantasy', 'Audiobook']", "['Mystery', 'Young Adult', 'Mystery Thriller', 'Contemporary', 'Thriller', 'Fiction', 'Crime']", "['Politics', 'Nonfiction', 'History', 'Military Fiction', 'Terrorism', 'Military History', 'War']", "['Young Adult', 'Paranormal', 'Thriller', 'Mystery', 'Suspense', 'Crime']", "['Science Fiction', 'Fiction', 'Time Travel', 'Fantasy', 'Comedy', 'Unfinished', 'Science Fiction Fantasy']", "['Historical Fiction', 'Romance', 'Fiction', 'Historical', 'War', 'World War II', 'Historical Romance']", "['Time Travel', 'Science Fiction', 'Fantasy', 'Fiction', 'Historical Fiction', 'Historical', 'Adventure']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'Fiction', 'High School']", "['Fantasy', 'Young Adult', 'Superheroes', 'Fiction', 'Mythology', 'Retellings', 'Young Adult Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Asia', 'War', 'World War II', 'Asian Literature']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Humor', 'Autobiography', 'Africa']", "['Young Adult', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Mystery', 'Mental Health', 'Teen']", "['Nonfiction', 'Memoir', 'Audiobook', 'Biography', 'Humor', 'Autobiography', 'Biography Memoir']", "['Horror', 'Fiction', 'Science Fiction', 'Fantasy', 'Thriller', 'Dystopia', 'Post Apocalyptic']", "['Horror', 'Fiction', 'Fantasy', 'Lovecraftian', 'Weird Fiction', 'Thriller', 'Audiobook']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Crime', 'Legal Thriller', 'Audiobook']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Fantasy', 'Literary Fiction', 'Historical', 'Magical Realism']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Drama', 'Suspense', 'Horror']", "['Christian', 'Theology', 'Nonfiction', 'Christianity', 'Religion', 'Classics', 'Philosophy']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Adult']", "['Christian', 'Nonfiction', 'Theology', 'Religion', 'Philosophy', 'Christianity', 'Faith']", "['Fantasy', 'Fiction', 'Young Adult', 'Magic', 'Adult', 'Romance', 'LGBT']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Disability', 'Drama', 'Adult']", "['Fiction', 'Africa', 'Contemporary', 'Race', 'Epic', 'Historical Fiction', 'Drama']", "['Thriller', 'Horror', 'Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense']", "['Mystery', 'Thriller', 'Romantic Suspense', 'Fiction', 'Romance', 'Suspense', 'Crime']", "['Fiction', 'Contemporary', 'Mystery', 'Literary Fiction', 'Thriller', 'Audiobook', 'Novels']", "['Christian', 'Nonfiction', 'Theology', 'Christianity', 'Essays', 'Religion', 'Philosophy']", "['Fiction', 'Fantasy', 'Short Stories', 'Science Fiction', 'Christian', 'Classics', 'Christian Fiction']", "['Essays', 'Nonfiction', 'Christian', 'Short Stories', 'Writing', 'Classics', 'Christianity']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Young Adult Contemporary', 'Contemporary Romance', 'Realistic Fiction']", "['Nonfiction', 'Self Help', 'Psychology', 'Audiobook', 'Philosophy', 'Personal Development', 'Denmark']", "['Science Fiction', 'Young Adult', 'Fantasy', 'Romance', 'Fiction', 'Audiobook', 'Space']", "['Poetry', 'Feminism', 'Nonfiction', 'Contemporary', 'Adult', 'Mental Health', 'Romance']", "['Fiction', 'Historical Fiction', 'Historical', 'Literary Fiction', 'Contemporary', 'Asia', 'Asian Literature']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Psychological Thriller', 'Suspense', 'Crime']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Romance', 'Fiction', 'Dystopia', 'Audiobook']", "['Science Fiction', 'Fiction', 'Audiobook', 'Fantasy', 'Adult', 'Aliens', 'Science Fiction Fantasy']", "['Fantasy', 'Science Fiction', 'Dystopia', 'Fiction', 'Science Fiction Fantasy', 'Heroic Fantasy', 'Dark Fantasy']", "['Romantic Suspense', 'Mystery', 'Suspense', 'Thriller', 'Romance', 'Fiction', 'Crime']", "['Business', 'Self Help', 'Nonfiction', 'Finance', 'Personal Development', 'Money', 'Psychology']", "['Thriller', 'Fiction', 'Military Fiction', 'Espionage', 'Mystery Thriller', 'Adventure', 'Action']", "['Dark', 'Romance', 'Contemporary Romance', 'Contemporary', 'Erotica', 'Abuse', 'Suspense']", "['Young Adult', 'Dystopia', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Audiobook', 'Science Fiction']", "['Nonfiction', 'Science', 'Animals', 'Nature', 'Biology', 'Psychology', 'Audiobook']", "['Fantasy', 'Young Adult', 'Young Adult Fantasy', 'Romance', 'LGBT', 'Fiction', 'Mystery']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Literary Fiction', 'Novels', 'American', 'Literature']", "['Romance', 'Young Adult', 'Contemporary', 'Young Adult Contemporary', 'Audiobook', 'Fiction', 'Realistic Fiction']", "['Nonfiction', 'Psychology', 'Self Help', 'Philosophy', 'Personal Development', 'Audiobook', 'Unfinished']", "['Historical Fiction', 'Fiction', 'World War II', 'Historical', 'Holocaust', 'War', 'Audiobook']", "['Nonfiction', 'Memoir', 'Humor', 'Audiobook', 'Biography', 'Comedy', 'Essays']", "['Fantasy', 'Young Adult', 'LGBT', 'Queer', 'Fiction', 'Superheroes', 'Science Fiction']", "['Fiction', 'Fantasy', 'Historical Fiction', 'Contemporary', 'Audiobook', 'Magical Realism', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'LGBT', 'Romance', 'Urban Fantasy', 'Paranormal', 'Fiction']", "['Horror', 'Short Stories', 'Classics', 'Fiction', 'Gothic', 'Mystery', 'Thriller']", "['Romance', 'Young Adult', 'Contemporary', 'Young Adult Contemporary', 'Fiction', 'Young Adult Romance', 'Contemporary Romance']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Time Travel', 'Magic', 'Young Adult Fantasy', 'Historical']", "['Classics', 'Fiction', 'British Literature', 'Historical Fiction', 'Novels', '20th Century', 'Literature']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Contemporary', 'LGBT', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Romance', 'LGBT', 'High Fantasy']", "['Romance', 'Young Adult', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Fiction', 'Chick Lit']", "['Fantasy', 'Young Adult', 'Childrens', 'Middle Grade', 'Adventure', 'Science Fiction Fantasy', 'Fiction']", "['Politics', 'Nonfiction', 'History', 'Historical', 'Audiobook']", "['Short Stories', 'Fiction', 'Literature', 'Novels', 'Anthologies', 'Collections']", "['Short Stories', 'Fiction', 'Literature', 'Novels', 'Anthologies']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'Race', 'Literary Fiction', 'African American']", "['Fantasy', 'Fiction', 'Young Adult', 'Magic', 'High Fantasy', 'Audiobook', 'Epic Fantasy']", "['Politics', 'Nonfiction', '21st Century', 'Humor', 'Biography', 'History', 'Audiobook']", "['Nonfiction', 'Gardening', 'Art', 'Nature', 'Science', 'Poetry', 'Classics']", "['Young Adult', 'Contemporary', 'Romance', 'LGBT', 'Fiction', 'Audiobook', 'Queer']", "['Nonfiction', 'Biography', 'Audiobook', 'Memoir', 'Nature', 'Biography Memoir', 'True Crime']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Dragons', 'Adventure', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'Retellings', 'Fiction', 'Audiobook', 'Young Adult Contemporary']", "['Nonfiction', 'Memoir', 'Psychology', 'Biography', 'History', 'Self Help', 'Holocaust']", "['Science Fiction', 'Fiction', 'Novels', 'Space Opera', 'Science Fiction Fantasy', 'Space', 'Adventure']", "['Novels', 'Fiction', 'Egypt', 'Literature', 'Drama', 'Historical Fiction', 'Egyptian Literature']", "['Fantasy', 'Young Adult', 'Young Adult Fantasy', 'Romance', 'Fiction', 'Audiobook', 'Magic']", "['Chick Lit', 'Fiction', 'Romance', 'Contemporary', 'Audiobook', 'Adult', 'Humor']", "['Romance', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Dark', 'Adult', 'High School']", "['Fantasy', 'Fiction', 'Humor', 'High Fantasy', 'Adult', 'Adventure', 'Epic Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Fiction', 'Magic', 'Audiobook']", "['Mystery', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Contemporary', 'Fiction', 'Audiobook']", "['Horror', 'Short Stories', 'Detective', 'Classics', 'Mystery', 'Fiction', 'Occult Detective']", "['Fantasy', 'Romance', 'Young Adult', 'New Adult', 'Fiction', 'Fantasy Romance', 'Audiobook']", "['Mystery', 'Romantic', 'Thriller', 'Drama', '21st Century', 'Adventure', 'Romance']", "['Nonfiction', 'History', 'Science', 'Philosophy', 'Audiobook', 'Anthropology', 'Sociology']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Holocaust', 'World War II', 'War']", "['Graphic Novels', 'Middle Grade', 'Memoir', 'Comics', 'Childrens', 'Realistic Fiction', 'Nonfiction']", "['Science', 'Nonfiction', 'Psychology', 'Biology', 'Neuroscience', 'Philosophy', 'Anthropology']", "['Graphic Novels', 'Fantasy', 'Middle Grade', 'Comics', 'LGBT', 'Queer', 'Young Adult']", "['Young Adult', 'LGBT', 'Contemporary', 'Fantasy', 'Fiction', 'Queer', 'Magical Realism']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Romance', 'Fiction', 'Magic', 'Adventure']", "['Dark', 'Erotica', 'Romance', 'New York', 'Contemporary', 'Adult', 'Crime']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'World War II', 'War', 'British Literature']", "['Fantasy', 'Science Fiction', 'Young Adult', 'Cyberpunk', 'Adventure', 'Fiction', 'Amazon']", "['Contemporary', 'Young Adult', 'LGBT', 'Fiction', 'Queer', 'Romance', 'Lesbian']", "['Historical Fiction', 'Fiction', 'Historical', 'India', 'Pakistan', 'Medicine', 'Medical']", "['Nonfiction', 'History', 'Science', 'Audiobook', 'Biography', 'Historical', 'Feminism']", "['Nonfiction', 'Self Help', 'Personal Development', 'Audiobook', 'Leadership', 'Business', 'Psychology']", "['Fiction', 'Contemporary', 'Audiobook', 'Mental Health', 'Adult', 'Romance', 'Adult Fiction']", "['Young Adult', 'Romance', 'New Adult', 'Fiction', 'Fae', 'Magic', 'Young Adult Fantasy']", "['Fiction', 'Historical Fiction', 'Spain', 'Spanish Literature', 'Novels', 'Drama', 'Contemporary']", "['Memoir', 'Nonfiction', 'Audiobook', 'Self Help', 'Biography', 'Biography Memoir', 'Spirituality']", "['Horror', 'Dark', 'Romance', 'Abuse', 'Erotica', 'Novella', 'Contemporary']", "['Fantasy', 'Young Adult', 'Fiction', 'Mystery', 'Adventure', 'Novels', 'Love Story']", "['Contemporary', 'Young Adult', 'Romance', 'Mental Health', 'Fiction', 'Young Adult Contemporary', 'Realistic Fiction']", "['Fantasy', 'Young Adult', 'LGBT', 'Queer', 'Fiction', 'Romance', 'Young Adult Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'World War II', 'War', 'Adult']", "['Fantasy', 'Young Adult', 'Dystopia', 'Paranormal', 'Urban Fantasy', 'Fiction', 'Young Adult Fantasy']", "['Young Adult', 'Fiction', 'Contemporary', 'Audiobook', 'Realistic Fiction', 'Race', 'Social Justice']", "['Science Fiction', 'Fantasy', 'Fiction', 'Time Travel', 'Historical Fiction', 'Audiobook', 'Magic']", "['Nonfiction', 'True Crime', 'Memoir', 'Crime', 'Audiobook', 'Mystery', 'Biography']", "['Science Fiction', 'Fiction', 'Audiobook', 'Space Opera', 'Fantasy', 'Humor', 'Space']", "['Thriller', 'Mystery', 'Fiction', 'Suspense', 'Horror', 'Mystery Thriller', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Audiobook', 'Historical', 'Book Club', 'Adult', 'Adult Fiction']", "['Fiction', 'Contemporary', 'Romance', 'Literary Fiction', 'LGBT', 'Audiobook', 'Ireland']", "['Science', 'Nonfiction', 'Audiobook', 'Physics', 'Space', 'Astronomy', 'History']", "['Nonfiction', 'Science', 'War', 'History', 'Military Fiction', 'Humor', 'Audiobook']", "['Horror', 'Fiction', 'Short Stories', 'Classics', 'Fantasy', 'Weird Fiction', 'Gothic']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Adult', 'Audiobook', 'Drama']", "['Young Adult', 'Fantasy', 'Adventure', 'New Adult', 'Fiction', 'Adult', 'Science Fiction Fantasy']", "['Historical Fiction', 'Fiction', 'World War II', 'Historical', 'War', 'Italy', 'Audiobook']", "['Picture Books', 'Childrens', 'Fiction', 'Family', 'Classics', 'Animals', 'School']", "['Steampunk', 'Paranormal', 'Fantasy', 'Historical Fiction', 'Science Fiction', 'Young Adult', 'Supernatural']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Fiction', 'Magic', 'High Fantasy']", "['Mystery', 'Young Adult', 'Thriller', 'Fiction', 'Contemporary', 'Mystery Thriller', 'Romance']", "['Fiction', 'Mystery', 'Thriller', 'Crime', 'Audiobook', 'Mystery Thriller', 'Suspense']", "['Fiction', 'Historical Fiction', 'LGBT', 'Contemporary', 'Audiobook', 'Queer', 'Historical']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Young Adult', 'Adult', 'Historical', 'Magic']", "['Nonfiction', 'History', 'World War II', 'Holocaust', 'Historical', 'Biography', 'War']", "['Thriller', 'Fiction', 'Short Stories', 'Adventure', 'Action', 'Mystery Thriller', 'Mystery']", "['Fiction', 'Historical Fiction', 'Music', 'Audiobook', 'Magical Realism', 'Fantasy', 'Adult']", "['Science Fiction', 'Fiction', 'Novella', 'Adult', 'Fantasy', 'Science Fiction Fantasy', 'Space']", "['Fantasy', 'Young Adult', 'Romance', 'LGBT', 'Fiction', 'Queer', 'Magic']", "['Thriller', 'Horror', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Adult']", "['Science Fiction', 'Fiction', 'Space Opera', 'LGBT', 'Queer', 'Audiobook', 'Space']", "['Middle Grade', 'Realistic Fiction', 'Young Adult', 'Fiction', 'Childrens', 'Contemporary', 'School']", "['Romance', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Fiction', 'Adult', 'Disability']", "['Fantasy', 'Science Fiction', 'Dystopia', 'Fiction']", "['Fantasy', 'Horror', 'Retellings', 'Fiction', 'Young Adult', 'Fairy Tales', 'Pirates']", "['Thriller', 'Action', 'Superheroes', 'Fiction', 'Crime', 'Mystery']", "['Romantic Suspense', 'Mystery', 'Romance', 'Thriller', 'Suspense', 'Fiction', 'Mystery Thriller']", "['Fiction', 'Fantasy', 'Romance', 'Contemporary', 'Magical Realism', 'Literary Fiction', 'Adult']", "['Mystery', 'Romantic Suspense', 'Thriller', 'Suspense', 'Crime', 'Fiction', 'Romance']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Mystery Thriller', 'Audiobook', 'Crime']", "['Fiction', 'Magical Realism', 'Contemporary', 'Literary Fiction', 'Audiobook', 'African American', 'Race']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Adventure', 'Magic', 'Fairy Tales']", "['Fiction', 'Thriller', 'Mystery', 'Romance', 'Audiobook', 'Suspense', 'Adult']", "['Nonfiction', 'True Crime', 'Audiobook', 'Memoir', 'Crime', 'Biography', 'Abuse']", "['Thriller', 'Fiction', 'Science Fiction', 'Adventure', 'Action', 'Mystery', 'Suspense']", "['Romance', 'Mystery', 'Fiction', 'Love Story', 'Historical Fiction', 'Young Adult', 'New Adult']", "['Self Help', 'Nonfiction', 'Psychology', 'Essays', 'Audiobook', 'Philosophy', 'Personal Development']", "['Horror', 'Fiction', 'Crime', 'Thriller', 'Adult', 'Literary Fiction', 'Bizarro Fiction']", "['Nonfiction', 'Feminism', 'Short Stories', 'Childrens', 'Biography', 'History', 'Middle Grade']", "['Science Fiction', 'Fiction', 'Historical Fiction', 'Alternate History', 'Historical', 'Space', 'Adult']", "['Graphic Novels', 'LGBT', 'Nonfiction', 'Comics', 'Queer', 'Memoir', 'Lesbian']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Fiction', 'Historical', 'Realistic Fiction', 'War']", "['Fiction', 'Drama', 'Novels', 'Contemporary', 'Book Club']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Suspense', 'Crime', 'Audiobook']", "['Romance', 'Dark', 'Thriller', 'Contemporary', 'Mystery', 'Crime', 'Adult']", "['Mystery', 'Thriller', 'Fiction', 'Suspense', 'Romance', 'Romantic Suspense', 'Mystery Thriller']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Crime', 'Suspense']", "['Young Adult', 'Contemporary', 'Feminism', 'Fiction', 'Realistic Fiction', 'Romance', 'Young Adult Contemporary']", "['Art', 'Biography', 'Memoir']", "['Historical Fiction', 'Fiction', 'LGBT', 'Ireland', 'Historical', 'Literary Fiction', 'Audiobook']", "['Science Fiction', 'Fantasy', 'Fiction', 'Dystopia', 'Audiobook', 'Young Adult', 'Adult']", "['Horror', 'Comics', 'Graphic Novels', 'Pulp']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'New Adult', 'Audiobook', 'Mental Health']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Adult', 'Sports', 'Fiction']", "['Young Adult', 'Romance', 'Contemporary', 'Christmas', 'Fiction', 'Short Stories', 'Holiday']", "['Fiction', 'Classics', 'Humor', 'Science Fiction', 'Literature', 'Novels', 'American']", "['Poetry', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Realistic Fiction', 'Romance']", "['Fiction', 'Classics', 'Short Stories', 'German Literature', 'Literature', 'Novels', 'Audiobook']", "['Fantasy', 'Romance', 'LGBT', 'China', 'Queer', 'Boys Love', 'Fiction']", "['Romance', 'Dark', 'Thriller', 'Contemporary', 'Mystery', 'Adult', 'Crime']", "['Short Stories', 'Fiction', 'Horror', 'Fantasy', 'Feminism', 'LGBT', 'Queer']", "['Fiction', 'Contemporary', 'Japan', 'Japanese Literature', 'Literary Fiction', 'Asian Literature', 'Asia']", "['Fiction', 'Thriller', 'Mystery', 'Crime', 'Action', 'Suspense', 'Mystery Thriller']", "['Young Adult', 'Romance', 'LGBT', 'Fiction', 'Contemporary', 'Queer', 'Audiobook']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Crime', 'Suspense', 'Adult']", "['Science Fiction', 'Fiction', 'Audiobook', 'Space Opera', 'Space', 'Humor', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Dragons', 'Adventure', 'Magic']", "['Fiction', 'Contemporary', 'Audiobook', 'Sports', 'Adult', 'Literary Fiction', 'Adult Fiction']", "['Nonfiction', 'Psychology', 'Self Help', 'Mental Health', 'Health', 'Parenting', 'Education']", "['Nonfiction', 'Humor', 'War', 'True Story', 'Military Fiction', 'History', 'Adult']", "['Fiction', 'Mystery', 'Contemporary', 'Chick Lit', 'Thriller', 'Audiobook', 'Mystery Thriller']", "['Fantasy', 'Young Adult', 'Werewolves', 'Vampires', 'Romance', 'Fiction', 'Paranormal']", "['War', 'Drama', 'Adventure', 'Mystery', 'Military Fiction', 'Mystery Thriller', 'Fiction']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'British Literature', 'Fantasy', 'Religion']", "['Fantasy', 'Fiction', 'Classics', 'Young Adult', 'Science Fiction', 'Childrens', 'Middle Grade']", "['Nonfiction', 'Feminism', 'Essays', 'Audiobook', 'Womens', 'Parenting', 'Africa']", "['Fiction', 'Contemporary', 'Audiobook', 'Literary Fiction', 'Romance', 'Adult', 'Adult Fiction']", "['Young Adult', 'Romance', 'Fae', 'New Adult', 'Fiction', 'Magic', 'Young Adult Fantasy']", "['Picture Books', 'Sports', 'Childrens', 'Hockey', 'Canada', 'Realistic Fiction', 'Fiction']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Magical Realism', 'Historical', 'Fairy Tales', 'Adult']", "['Nonfiction', 'Race', 'Feminism', 'Politics', 'Anti Racist', 'Social Justice', 'History']", "['Fantasy', 'Fiction', 'Contemporary', 'Paranormal', 'Novels', 'Urban Fantasy']", "['Fantasy', 'Young Adult', 'Romance', 'Pirates', 'Young Adult Fantasy', 'Adventure', 'Fiction']", "['Horror', 'Nonfiction', 'History', 'Books About Books', 'Art', 'Pop Culture', 'Humor']", "['Historical Fiction', 'Mystery', 'Young Adult', 'Romance', 'Historical', 'Fantasy', 'Horror']", "['Romance', 'New Adult', 'Erotic Romance', 'Contemporary', 'Young Adult', 'Love', 'Spanish Literature']", "['Historical Fiction', 'Middle Grade', 'Fiction', 'Historical', 'Young Adult', 'World War II', 'Audiobook']", "['Horror', 'Thriller', 'Fiction', 'Suspense', 'Supernatural', 'Audiobook', 'Mystery']", "['Fantasy', 'Young Adult', 'Magic', 'Romance', 'Young Adult Fantasy', 'High Fantasy', 'Paranormal']", "['Nonfiction', 'Politics', 'History', 'Essays', 'Race', 'Social Justice', 'Audiobook']", "['Nonfiction', 'History', 'Philosophy', 'Essays', 'Politics', 'Audiobook', 'Political Science']", "['Business', 'Nonfiction', 'Self Help', 'Inspirational', 'Personal Development', 'How To', 'Book Club']", "['Chick Lit', 'Romance', 'Contemporary', 'Humor', 'Contemporary Romance', 'Fiction', 'Audiobook']", "['Fantasy', 'Young Adult', 'Middle Grade', 'Romance', 'Contemporary', 'Fiction', 'LGBT']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Psychological Thriller']", "['Historical Fiction', 'Fiction', 'Historical', 'Japan', 'Asia', 'Literary Fiction', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'Russia', 'Audiobook', 'Book Club', 'Literary Fiction']", "['Fantasy', 'Young Adult', 'Short Stories', 'Fiction', 'Retellings', 'Young Adult Fantasy', 'Fairy Tales']", "['Novels', 'Fiction', 'Fantasy', 'Horror', 'Politics', 'Literature', 'Science Fiction']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Audiobook', 'Mystery Thriller', 'Suspense']", "['Nonfiction', 'Politics', 'Memoir', 'Biography', 'Audiobook', 'History', 'Feminism']", "['Fantasy', 'Young Adult', 'Fiction', 'Audiobook', 'Adventure', 'Childrens', 'Science Fiction Fantasy']", "['Adventure', 'Novels', 'Fiction', 'Young Adult', 'Action', 'Teen', 'Fantasy']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Adult']", "['Romance', 'Young Adult', 'Young Adult Fantasy', 'Fiction', 'Fantasy Romance', 'High Fantasy', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Magic', 'Adventure', 'Romance']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Magic', 'Romance', 'Adventure']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Childrens', 'Audiobook', 'Magic']", "['Fiction', 'Contemporary', 'Audiobook', 'Adult', 'Literary Fiction', 'Adult Fiction', 'Book Club']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Fairy Tales', 'Mystery', 'Audiobook']", "['Fantasy', 'Fiction', 'Dystopia', 'Romance', 'Paranormal', 'Urban Fantasy', 'Post Apocalyptic']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Audiobook', 'Feminism', 'Literary Fiction', 'Adult']", "['Romance', 'New Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Audiobook', 'Young Adult']", "['Young Adult', 'Contemporary', 'LGBT', 'Queer', 'Fiction', 'Mental Health', 'Romance']", "['Fantasy', 'Young Adult', 'Adventure', 'Religion', 'Supernatural', 'Fiction', 'New Adult']", "['Contemporary', 'Novels', 'Drama']", "['Science Fiction', 'Fiction', 'Queer', 'LGBT', 'Fantasy', 'Dystopia', 'Adult']", "['Fiction', 'Young Adult', 'Adventure', 'Novels', 'New Adult', 'Adult', 'Fantasy']", "['Science Fiction', 'Fiction', 'Fantasy', 'Novella', 'Young Adult', 'Audiobook', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'LGBT', 'Romance', 'Lesbian', 'Queer', 'Fiction']", "['Nonfiction', 'True Story', 'Memoir', 'Self Help', 'Adventure', 'Humor', 'Biography']", "['Horror', 'Fantasy', 'Fiction', 'Thriller', 'Audiobook', 'Mystery', 'Science Fiction']", "['Nonfiction', 'Science', 'Health', 'Psychology', 'Self Help', 'Neuroscience', 'Personal Development']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Young Adult Fantasy', 'Pirates', 'Fiction']", "['Graphic Novels', 'Young Adult', 'LGBT', 'Romance', 'Comics', 'Historical Fiction', 'Queer']", "['Historical Fiction', 'Fiction', 'New Adult', 'Historical', 'Romance', 'Adult', 'Young Adult']", "['Business', 'Nonfiction', 'Self Help', 'Finance', 'Leadership', 'Personal Development', 'Philosophy']", "['Young Adult', 'Adventure', 'Fantasy', 'Mystery', 'Adult', 'Fiction', 'New Adult']", "['Fiction', 'Epic', 'Drama', 'Novels', 'Contemporary']", "['Biography', 'Nonfiction', 'History', 'Art', 'Science', 'Biography Memoir', 'Audiobook']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Novella', 'Adult']", "['History', 'Nonfiction', 'Politics', 'Journalism', 'War', 'Latin American History', '20th Century']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Magic', 'Audiobook', 'Romance']", "['Historical Fiction', 'Young Adult', 'Middle Grade', 'Historical', 'World War II', 'Fiction', 'Holocaust']", "['Young Adult', 'Mystery', 'Contemporary', 'Audiobook', 'Thriller', 'Mystery Thriller', 'Fiction']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Novels', 'Suspense']", "['Mystery', 'Romantic Suspense', 'Thriller', 'Suspense', 'Fiction', 'Romance', 'Crime']", "['Nonfiction', 'Science', 'Psychology', 'Economics', 'History', 'Self Help', 'Politics']", "['Graphic Novels', 'Fantasy', 'Middle Grade', 'Comics', 'LGBT', 'Queer', 'Dragons']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Romance', 'Historical', 'Adult', 'Adult Fiction']", "['Nonfiction', 'Psychology', 'Self Help', 'Mental Health', 'Science', 'Health', 'Personal Development']", "['Science Fiction', 'Fiction', 'Audiobook', 'Space', 'Science Fiction Fantasy', 'Fantasy', 'Adult']", "['History', 'Nonfiction', 'War', 'Military History', 'Military Fiction', 'American History', 'Asia']", "['Fiction', 'Novels', 'Contemporary', 'Adult', 'Adventure', 'Young Adult', 'New Adult']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Communication', 'Audiobook', 'Mental Health']", "['Dark', 'Romance', 'Abuse', 'New Adult', 'Contemporary', 'Horror', 'Adult']", "['Fantasy', 'Dystopia', 'Romance', 'Young Adult', 'Science Fiction', 'Fiction', 'Young Adult Fantasy']", "['Fantasy', 'Childrens', 'Humor', 'Fiction', 'Young Adult']", "['Science Fiction', 'Mystery', 'Fiction', 'Audiobook', 'Crime', 'Thriller', 'Science Fiction Fantasy']", "['Nonfiction', 'True Crime', 'Audiobook', 'Crime', 'Mystery', 'Memoir', 'History']", "['Nonfiction', 'Feminism', 'Essays', 'Audiobook', 'Memoir', 'Social Justice', 'Anthologies']", "['Young Adult', 'Mystery', 'Contemporary', 'Fiction', 'Audiobook', 'Thriller', 'Mystery Thriller']", "['Nonfiction', 'Science', 'History', 'Dinosaurs', 'Nature', 'Audiobook', 'Animals']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Adult', 'Historical', 'High Fantasy', 'Audiobook']", "['Nonfiction', 'Audiobook', 'Classics', 'Historical', 'Retellings', 'Short Stories', 'Greece']", "['Fiction', 'Thriller', 'Mystery', 'Audiobook', 'Mystery Thriller', 'Politics', 'Suspense']", "['Nonfiction', 'Race', 'Audiobook', 'Social Justice', 'Anti Racist', 'Politics', 'Sociology']", "['Nonfiction', 'True Crime', 'Memoir', 'Biography', 'Biography Memoir', 'Autobiography', 'Crime']", "['Nonfiction', 'Politics', 'Memoir', 'Biography', 'History', 'Audiobook', 'Leadership']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Biography Memoir', 'Autobiography', 'Book Club']", "['Short Stories', 'Fiction', 'Literary Fiction', 'American', 'Audiobook', 'Literature', 'Contemporary']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Essays', 'Biography Memoir', 'Short Stories']", "['Fiction', 'Science Fiction']", "['Science', 'Nonfiction', 'Biography', 'Physics', 'Memoir', 'Autobiography', 'Humor']", "['Manga', 'Comics', 'Science Fiction', 'Graphic Novels', 'Cyberpunk', 'Fiction', 'Fantasy']", "['Historical Fiction', 'LGBT', 'Romance', 'Young Adult', 'Queer', 'Lesbian', 'Fiction']", "['Fiction', 'Africa', 'Contemporary', 'Audiobook', 'Literary Fiction', 'New York', 'Adult']", "['Humor', 'Young Adult', 'Contemporary', 'Novels', 'New Adult', 'Cultural', 'Adult']", "['Fiction', 'Young Adult', 'Fantasy', 'Adventure', 'Adult', 'Science Fiction Fantasy', 'New Adult']", "['Fiction', 'Thriller', 'Audiobook', 'Military Fiction', 'Action', 'Mystery', 'Mystery Thriller']", "['Memoir', 'Nonfiction', 'Womens', 'Mental Health', 'Biography', 'Humor', 'Biography Memoir']", "['Fantasy', 'Young Adult', 'Paranormal', 'Witches', 'Romance', 'Fiction', 'Young Adult Fantasy']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Crime']", "['Middle Grade', 'Poetry', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Young Adult', 'Family']", "['Horror', 'Thriller', 'Fiction', 'Mystery Thriller', 'Mystery', 'Audiobook', 'Suspense']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Dystopia', 'Romance', 'Fiction', 'Audiobook']", "['Romance', 'Contemporary', 'Fiction', 'Young Adult', 'Love Story', 'New Adult', 'Adult']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance']", "['Young Adult', 'Fiction', 'Contemporary', 'Mental Health', 'Romance', 'Audiobook', 'Realistic Fiction']", "['Fiction', 'Young Adult', 'Contemporary', 'Novels', 'New Adult', 'Middle Grade', 'Adventure']", "['Nonfiction', 'Memoir', 'Medicine', 'Biography', 'Medical', 'Audiobook', 'Humor']", "['Science Fiction', 'Fiction', 'Novella', 'Audiobook', 'Adult', 'Space', 'Science Fiction Fantasy']", "['Nonfiction', 'Self Help', 'Audiobook', 'Personal Development', 'Memoir', 'Christian', 'Adult']", "['Nonfiction', 'Adoption', 'How To', 'Education', 'History', 'Book Club']", "['Feminism', 'Nonfiction', 'Poetry', 'Adult', 'Contemporary', 'Romance', 'Mental Health']", "['Fantasy', 'Young Adult', 'Romance', 'Dystopia', 'Fiction', 'Amazon', 'Science Fiction']", "['Nonfiction', 'Psychology', 'Biography', 'Science', 'Economics', 'Business', 'History']", "['Fiction', 'Adventure', 'Historical Fiction', 'New Adult', 'Young Adult', 'Historical', 'Adult']", "['Romance', 'Science Fiction', 'Space Opera', 'Fiction', 'Fantasy', 'Adult', 'Space']", "['Fantasy', 'Romance', 'Young Adult', 'Young Adult Fantasy', 'Fantasy Romance', 'Fiction', 'Magic']", "['Romance', 'Mystery', 'Romantic', 'Fiction', 'Thriller', 'Adventure', '21st Century']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Mental Health', 'Biography Memoir', 'Psychology']", "['Young Adult', 'Paranormal', 'Contemporary', 'Adult', 'Horror', 'Fiction', 'Supernatural']", "['Classics', 'Gothic', 'Horror', 'Short Stories']", "['Romance', 'Young Adult', 'Young Adult Fantasy', 'Fiction', 'Fantasy Romance', 'High Fantasy', 'Adventure']", "['Fantasy', 'Young Adult', 'Romance', 'Paranormal', 'Unfinished', 'Fiction', 'New Adult']", "['Thriller', 'Mystery', 'Fiction', 'New Adult', 'Young Adult', 'Contemporary', 'Adult']", "['Science Fiction', 'Fiction', 'Fantasy', 'Adult', 'Aliens', 'Science Fiction Fantasy', 'Space']", "['Fiction', 'Scotland', 'Thriller', 'Novels', 'Crime', 'Contemporary', 'Mystery']", "['Contemporary', 'Mystery', 'Fiction', 'Thriller', 'Drama', 'Novels', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Classics', 'Christian Fiction', 'Christian', 'Romance', 'Historical']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Adult']", "['Thriller', 'Mystery', 'Fiction', 'Audiobook', 'Mystery Thriller', 'Crime', 'Suspense']", "['Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Realistic Fiction', 'Music', 'Young Adult Contemporary']", "['Business', 'Nonfiction', 'Psychology', 'Self Help', 'Personal Development', 'Leadership', 'Finance']", "['Fantasy', 'Fiction', 'Mythology', 'Historical Fiction', 'Greek Mythology', 'Retellings', 'Audiobook']", "['Fantasy', 'Fiction', 'Dinosaurs', 'Animal Fiction', 'Science Fiction']", "['Fantasy', 'Middle Grade', 'Dragons', 'Adventure', 'Young Adult', 'Fiction', 'Childrens']", "['Fiction', 'Science Fiction', 'Horror', 'Fantasy']", "['Humor', 'Thriller', 'Crime', 'Mystery', 'Magical Realism', 'Paranormal', 'Supernatural']", "['Fiction', 'Ireland', 'Historical Fiction', 'Literary Fiction', 'Irish Literature', 'Audiobook', 'Contemporary']", "['Young Adult', 'Contemporary', 'Realistic Fiction', 'Humor', 'Fiction', 'LGBT', 'Romance']", "['Nonfiction', 'Education', 'Inspirational', 'Book Club', 'How To']", "['Thriller', 'Fiction', 'Audiobook', 'Horror', 'Mystery Thriller', 'Mystery', 'Contemporary']", "['Romance', 'Young Adult', 'Contemporary', 'Audiobook', 'Young Adult Contemporary', 'Fiction', 'Young Adult Romance']", "['Middle Grade', 'Realistic Fiction', 'Fiction', 'Childrens', 'Contemporary', 'Historical Fiction', 'Family']", "['Historical Fiction', 'Fiction', 'Italy', 'Art', 'Historical', 'Adult Fiction', 'Novels']", "['Romance', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Adult', 'Audiobook', 'Chick Lit']", "['Nonfiction', 'Business', 'Self Help', 'Philosophy', 'Pirates', 'Audiobook', 'Personal Development']", "['Fantasy', 'Middle Grade', 'Romance', 'Young Adult', 'Fiction', 'Adventure', 'Magic']", "['Nonfiction', 'Business', 'Self Help', 'Leadership', 'Feminism', 'Personal Development', 'Psychology']", "['Thriller', 'Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'Legal Thriller']", "['Fantasy', 'Middle Grade', 'Mythology', 'Fiction', 'Young Adult', 'Adventure', 'Childrens']", "['Science Fiction', 'Fiction', 'Novella', 'Adult', 'Space', 'Science Fiction Fantasy', 'Fantasy']", "['Psychology', 'Gaming', 'Nonfiction', 'Self Help', 'Sports', 'Leadership', 'Games']", "['Fiction', 'Contemporary', 'Thriller', 'Novels', 'Humor', 'Literature', 'American']", "['Fantasy', 'Middle Grade', 'Fiction', 'Audiobook', 'Childrens', 'Young Adult', 'Magic']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Fiction', 'Audiobook']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Romance', 'High Fantasy', 'Magic']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Young Adult Fantasy', 'LGBT', 'High Fantasy']", "['Fantasy', 'Middle Grade', 'Mythology', 'Fiction', 'Young Adult', 'Adventure', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Magic', 'Fiction', 'Audiobook']", "['Fiction', 'LGBT', 'Contemporary', 'Queer', 'Audiobook', 'Gay', 'Young Adult']", "['Mystery', 'Fiction', 'Thriller', 'Fantasy', 'Mystery Thriller', 'Audiobook', 'Crime']", "['Romance', 'Young Adult', 'LGBT', 'Contemporary', 'Queer', 'Fiction', 'Audiobook']", "['Politics', 'Nonfiction', 'History', 'Government', 'Audiobook', 'Political Science', 'Contemporary']", "['Fiction', 'Science Fiction', 'Dystopia', 'Contemporary', 'Horror', 'Humor', 'Dark']", "['Contemporary', 'Contemporary Romance', 'Fiction', 'New Adult', 'Adult', 'Audiobook', 'Chick Lit']", "['Business', 'Leadership', 'Management', 'Nonfiction', 'Cultural', 'Entrepreneurship', 'Historical Romance']", "['Romance', 'Historical Fiction', 'Fantasy', 'Historical', 'Young Adult', 'German Literature', 'Fiction']", "['Short Stories', 'Fiction', 'Classics', 'Horror', 'Literary Fiction', 'Modern Classics', '20th Century']", "['Romance', '21st Century', 'Contemporary Romance', 'Fiction', 'Suspense', 'Modern', 'Romantic']", "['Romance', 'Contemporary', 'Fiction', 'Chick Lit', 'Audiobook', 'Contemporary Romance', 'Adult']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Relationships', 'Mental Health', 'Communication']", "['Horror', 'Fiction', 'Fantasy', 'Mystery', 'Coming Of Age', 'Historical Fiction', 'Magical Realism']", "['Fantasy', 'Middle Grade', 'Fiction', 'Young Adult', 'Historical Fiction', 'Childrens', 'Adventure']", "['Reverse Harem', 'Fantasy', 'Paranormal', 'Romance', 'Paranormal Romance', 'Demons', 'New Adult']", "['Novels', 'Contemporary', 'Adult', 'Drama', 'Fiction', 'Young Adult', 'Mystery']", "['Nonfiction', 'Politics', 'History', 'Biography', 'Audiobook', 'American History', 'The United States Of America']", "['Nonfiction', 'Science', 'Psychology', 'Health', 'Self Help', 'Philosophy', 'Audiobook']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Young Adult', 'Historical', 'Mythology', 'Romance']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Audiobook', 'Adult', 'Suspense']", "['Science Fiction', 'Fantasy', 'Young Adult', 'Fiction', 'Audiobook', 'Space', 'Adventure']", "['Nonfiction', 'Science', 'Psychology', 'Philosophy', 'Self Help', 'Politics', 'Teaching']", "['Historical Fiction', 'Fiction', 'Historical', 'Asia', 'Cultural', 'Asian Literature', 'Contemporary']", "['Fantasy', 'Young Adult', 'Mythology', 'Young Adult Fantasy', 'Romance', 'Magic', 'Fiction']", "['Philosophy', 'Politics', 'Nonfiction', 'History', 'Sociology', 'Science', 'Society']", "['Horror', 'Fiction', 'Science Fiction', 'Thriller', 'Fantasy', 'Aliens', 'Monsters']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Adult', 'Novels', 'Adult Fiction']", "['Contemporary', 'Romance', 'Young Adult', 'Fiction', 'Adult', 'New Adult', 'Love Story']", "['Fiction', 'Mystery', 'Detective']", "['Politics', 'Nonfiction', 'History']", "['Fiction', 'Historical Fiction', 'Mystery', 'Romance', 'Audiobook', 'Contemporary', 'Adult']", "['Fiction', 'Short Stories', 'Polish Literature', 'Poland', 'Travel', 'Contemporary', 'Literary Fiction']", "['Fantasy', 'Fiction', 'Retellings', 'Young Adult', 'Fairy Tales', 'Romance', 'Magic']", "['Fantasy', 'Young Adult', 'Adventure', 'New Adult', 'Fiction', 'Adult', 'Novels']", "['Fiction', 'Science Fiction', 'Dystopia', 'Japan', 'Fantasy', 'Japanese Literature', 'Magical Realism']", "['Fantasy', 'Young Adult', 'Mythology', 'Marvel', 'LGBT', 'Fiction', 'Historical Fiction']", "['Fantasy', 'Fiction', 'Adult', 'LGBT', 'Science Fiction', 'High Fantasy', 'Queer']", "['Young Adult', 'Fantasy', 'Fiction', 'Teen', 'Love Story', 'Mystery', 'New Adult']", "['Historical Fiction', 'Mystery', 'Young Adult', 'Romance', 'Historical', 'Fantasy', 'Thriller']", "['Nonfiction', 'History', 'Espionage', 'Biography', 'Russia', 'Politics', 'Audiobook']", "['Philosophy', 'Self Help', 'Nonfiction', 'Psychology']", "['Fiction', 'Contemporary', 'Australia', 'Crime', 'Book Club', 'Historical Fiction', 'Coming Of Age']", "['Fantasy', 'Horror', 'Gothic', 'Fiction', 'Mystery', 'Adult', 'Thriller']", "['Nonfiction', 'Psychology', 'Memoir', 'Self Help', 'Mental Health', 'Audiobook', 'Biography']", "['Psychology', 'Self Help', 'Nonfiction', 'Relationships', 'Mental Health', 'Personal Development', 'Abuse']", "['Sports Romance', 'Contemporary', 'Sports', 'Contemporary Romance', 'New Adult', 'Adult', 'Fiction']", "['Contemporary', 'Epic', 'Drama', 'Fiction']", "['Fiction', 'War', 'Military Fiction']", "['Historical Fiction', 'Young Adult', 'LGBT', 'Historical', 'Fantasy', 'Fiction', 'Queer']", "['Fantasy', 'Fan Fiction', 'LGBT', 'Romance', 'Queer', 'Fiction', 'Young Adult']", "['Fantasy', 'Mythology', 'Fiction', 'Audiobook', 'Short Stories', 'Historical Fiction', 'Classics']", "['Fantasy', 'Historical Fiction', 'Audiobook', 'Historical', 'Fiction', 'Mythology']", "['Thriller', 'Fiction', 'Crime', 'Mystery', 'France', 'Suspense', 'Roman']", "['Novels', 'Fiction', 'Egypt', 'Drama', 'Thriller', 'Historical', 'Egyptian Literature']", "['Historical Fiction', 'Mythology', 'Fiction', 'Greek Mythology', 'Fantasy', 'Historical', 'Retellings']", "['Nonfiction', 'Business', 'True Crime', 'Audiobook', 'Science', 'Crime', 'Biography']", "['Novels', 'Inspirational', 'Contemporary', 'Adult', 'True Story', 'Self Help']", "['Science Fiction', 'Fantasy', 'Fiction', 'Science Fiction Fantasy', 'Space Opera']", "['Horror', 'Young Adult', 'Fantasy', 'LGBT', 'Mystery', 'Fiction', 'Thriller']", "['Contemporary', 'Young Adult', 'Love Story', 'Fiction', 'Romance', 'New Adult', 'Adult']", "['Nonfiction', 'Death', 'Science', 'History', 'Travel', 'Audiobook', 'Anthropology']", "['Romance', 'Fiction', 'Audiobook', 'Chick Lit', 'Contemporary', 'Adult', 'Adult Fiction']", "['Romance', 'Fiction', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Young Adult', 'Love Story']", "['Young Adult', 'Contemporary', 'New Adult', 'Fiction', 'Love Story', 'Adult', 'Romance']", "['Romance', 'Christmas', 'Fiction', 'Contemporary', 'Chick Lit', 'Audiobook', 'Holiday']", "['Fiction', 'Thriller', 'Mystery', 'France', 'Contemporary', 'Mystery Thriller', 'Crime']", "['Fiction', 'Young Adult', 'New Adult', 'Romance', 'Adult', 'Fantasy', 'Novels']", "['Fiction', 'Horror', 'Fantasy', 'Audiobook', 'Short Stories', 'Mystery', 'Novella']", "['Fiction', 'Contemporary', 'Japan', 'Japanese Literature', 'Literary Fiction', 'Audiobook', 'Adult']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'World War II', 'Holocaust', 'Romance']", "['Fiction', 'Classics', 'Historical Fiction', 'Literature', 'British Literature', 'Novels', '20th Century']", "['Fiction', 'Young Adult', 'Contemporary', 'Adult', 'Novels', 'New Adult', 'Teen']", "['Historical Fiction', 'Fiction', 'Mystery', 'Historical', 'Romance', 'Audiobook', 'Fantasy']", "['Fantasy', 'Young Adult', 'Adventure', 'Fiction', 'Adult', 'Supernatural', 'Novels']", "['Young Adult', 'Contemporary', 'Romance', 'Fiction', 'Audiobook', 'Realistic Fiction', 'Young Adult Contemporary']", "['Thriller', 'Crime', 'Action', 'Police', 'Fiction', 'Mystery']", "['Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Romance', 'Realistic Fiction', 'Young Adult Contemporary']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Autobiography', 'Politics', 'Biography Memoir']", "['Fiction', 'Thriller', 'Mystery', 'Audiobook', 'Contemporary', 'Crime', 'Mystery Thriller']", "['Nonfiction', 'History', 'Philosophy', 'Science', 'Politics', 'Audiobook', 'Psychology']", "['Novels', 'Fiction', 'Contemporary', 'Adventure', 'Adult', 'Fantasy', 'Drama']", "['Nonfiction', 'Contemporary', 'Adult', 'Biography', 'True Story', 'New Adult', 'Medical']", "['Romance', 'Contemporary', 'Fiction', 'Contemporary Romance', 'New Adult', 'Audiobook', 'Adult']", "['Fiction', 'Contemporary', 'Audiobook', 'Adult', 'Adult Fiction', 'Realistic Fiction', 'Drama']", "['Romance', 'Dark', 'Contemporary', 'Contemporary Romance', 'Adult', 'New Adult', 'Fiction']", "['Young Adult', 'Contemporary', 'Fiction', 'Mental Health', 'Audiobook', 'Realistic Fiction', 'LGBT']", "['Fiction', 'Classics', 'Fantasy', 'Adventure', 'Historical Fiction', 'Literature', 'Travel']", "['Nonfiction', 'Psychology', 'Self Help', 'Business', 'Personal Development', 'Audiobook', 'Communication']", "['Mystery', 'Thriller', 'Romantic Suspense', 'Suspense', 'Romance', 'Fiction', 'Crime']", "['Historical Fiction', 'Fiction', 'Romance', 'Audiobook', 'Historical', 'Christian Fiction', 'Christian']", "['Fiction', 'Audiobook', 'Contemporary', 'Mystery', 'Thriller', 'Chick Lit', 'Adult']", "['Middle Grade', 'Realistic Fiction', 'Fiction', 'Young Adult', 'Audiobook', 'Family', 'Adventure']", "['Business', 'Nonfiction', 'Management', 'Leadership', 'Productivity', 'Entrepreneurship', 'Self Help']", "['Humor', 'Fiction', 'Picture Books', 'Childrens', 'Comedy', 'Audiobook', 'Parenting']", "['Fantasy', 'Science Fiction', 'Fiction', 'LGBT', 'Queer', 'Horror', 'Lesbian']", "['Star Wars', 'Science Fiction', 'Fiction', 'Fantasy', 'Space Opera', 'Novels', 'Adventure']", "['Nonfiction', 'History', 'Books About Books', 'Audiobook', 'True Crime', 'Adult', 'Historical']", "['Romance', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Adult', 'Fiction', 'Audiobook']", "['Fantasy', 'Young Adult', 'Retellings', 'Horror', 'Mystery', 'Romance', 'Fiction']", "['Nonfiction', 'Memoir', 'Abuse', 'True Crime', 'Biography', 'Thriller']", "['Thriller', 'Mystery Thriller', 'Mystery', 'Fiction', 'Audiobook', 'Suspense', 'Adult']", "['Fantasy', 'Young Adult', 'Magic', 'Dragons', 'Romance', 'Adventure', 'Young Adult Fantasy']", "['Romance', 'Young Adult', 'Graphic Novels', 'Contemporary', 'Fiction', 'Manga', 'Slice Of Life']", "['Historical Fiction', 'Fiction', 'Fantasy', 'Magical Realism', 'Historical', 'Mystery', 'Audiobook']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Crime', 'Australia', 'Audiobook']", "['Fantasy', 'Young Adult', 'Historical Fiction', 'Historical', 'Young Adult Fantasy', 'Fiction', 'LGBT']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Mystery Thriller', 'Action', 'Amazon']", "['Mystery', 'Young Adult', 'Mystery Thriller', 'Audiobook', 'Contemporary', 'Fiction', 'Thriller']", "['Fantasy', 'Romance', 'Fantasy Romance', 'High Fantasy', 'Fiction', 'Angels', 'Epic Fantasy']", "['Fiction', 'LGBT', 'Contemporary', 'Queer', 'Audiobook', 'Romance', 'Literary Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Realistic Fiction', 'Young Adult Romance']", "['Fantasy', 'Fiction', 'Audiobook', 'High Fantasy', 'Dragons', 'Adult', 'Epic Fantasy']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Romance', 'LGBT', 'Historical', 'Magical Realism']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Adult', 'Audiobook', 'Magic', 'Mythology']", "['Mystery', 'Thriller', 'Fiction', 'Crime', 'Mystery Thriller', 'Suspense', 'Amazon']", "['Fantasy', 'Young Adult', 'Fiction', 'Young Adult Fantasy', 'Feminism', 'High Fantasy', 'Audiobook']", "['Young Adult', 'Witches', 'Young Adult Fantasy', 'Magic', 'Fiction', 'Fantasy Romance', 'Paranormal']", "['Fantasy', 'Fiction', 'Science Fiction', 'Contemporary', 'Superheroes', 'Speculative Fiction']", "['Fantasy', 'Fiction', 'Young Adult', 'Science Fiction', 'Adventure', 'New Adult', 'Novels']", "['Historical Fiction', 'Fiction', 'Childrens', 'Young Adult', 'Middle Grade', 'Classics', 'School']", "['Fantasy', 'Young Adult', 'Fiction', 'Urban Fantasy', 'Magic', 'Mystery', 'Adventure']", "['Young Adult', 'Fiction', 'New Adult', 'Adult', 'Contemporary', 'Romance', 'Mystery']", "['Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Productivity', 'Audiobook', 'Business']", "['Fantasy', 'Romance', 'Fae', 'Fantasy Romance', 'Fiction', 'Urban Fantasy', 'Adult']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Young Adult Contemporary', 'Young Adult Romance']", "['Nonfiction', 'History', 'True Crime', 'Ireland', 'Politics', 'Audiobook', 'Crime']", "['Fiction', 'Fantasy', 'Magical Realism', 'Spanish Literature', 'Adventure', 'Contemporary', 'Adult']", "['Fiction', 'Nature', 'Literary Fiction', 'Environment', 'Contemporary', 'Historical Fiction', 'Novels']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Contemporary', 'War', 'Inspirational']", "['Fiction', 'Thriller', 'Mystery', 'Espionage', 'Mystery Thriller', 'Audiobook', 'Suspense']", "['Fantasy', 'Middle Grade', 'Romance', 'Fiction', 'Young Adult', 'Adventure', 'Magic']", "['Fiction', 'Thriller', 'Mystery', 'Drama', 'Dark', 'Young Adult', 'Crime']", "['Fantasy', 'Fiction', 'LGBT', 'Queer', 'Lesbian', 'Dragons', 'Adult']", "['Young Adult', 'Fiction', 'Fantasy', 'Adventure', 'New Adult', 'Middle Grade', 'Novels']", "['Nonfiction', 'Self Help', 'Feminism', 'Personal Development', 'Business', 'Psychology', 'Audiobook']", "['Fantasy', 'Young Adult', 'Mystery', 'Young Adult Fantasy', 'Romance', 'Fiction', 'Science Fiction']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Adult']", "['Historical Fiction', 'Time Travel', 'Fiction', 'Historical', 'Fantasy', 'Historical Romance', 'Ireland']", "['Fiction', 'LGBT', 'Contemporary', 'Audiobook', 'Book Club', 'Adult', 'Family']", "['Fiction', 'Classics', 'Novels', 'Literature', 'American', 'Humor', 'Contemporary']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Suspense', 'Crime', 'Amazon']", "['Romance', 'Graphic Novels', 'LGBT', 'Young Adult', 'Queer', 'Contemporary', 'Comics']", "['Contemporary', 'Drama', 'Fiction', 'Book Club', 'Novels', 'Adult', 'New Adult']", "['Fiction', 'Contemporary', 'Mystery', 'Romance', 'Fantasy', 'Magical Realism', 'Audiobook']", "['Contemporary', 'Adult', 'Poetry', 'Fiction', 'New Adult', 'Drama', 'Novels']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Contemporary', 'Music', 'Historical', 'Adult']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Adult']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Legal Thriller', 'Suspense']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Adventure', 'Coming Of Age', 'Historical Fantasy']", "['Nonfiction', 'Classics', 'Biography', 'Memoir', 'Humor', 'Childrens', 'Biography Memoir']", "['Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Contemporary']", "['Nonfiction', 'Self Help', 'Productivity', 'Psychology', 'Personal Development', 'Technology', 'Audiobook']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Suspense', 'Adult']", "['History', 'Nonfiction', 'Biography', 'Asia', 'Historical', 'World History', 'Audiobook']", "['Nonfiction', 'Religion', 'Theology', 'Christian', 'Spirituality', 'Christianity', 'Faith']", "['Nonfiction', 'Food', 'Memoir', 'Gardening', 'Health', 'Environment', 'Nature']", "['Historical Fiction', 'Young Adult', 'Mystery', 'Historical', 'Fiction', 'World War II', 'War']", "['Historical Fiction', 'Mystery', 'Young Adult', 'Historical', 'Romance', 'Fantasy', 'Horror']", "['Romance', 'Dark', 'Fiction', 'Audiobook', 'Contemporary', 'Erotica', 'Adult']", "['Young Adult', 'Contemporary', 'Mental Health', 'Fiction', 'Realistic Fiction', 'Coming Of Age', 'Young Adult Contemporary']", "['Nonfiction', 'Feminism', 'Audiobook', 'Memoir', 'Womens', 'Biography', 'Self Help']", "['History', 'Nonfiction', 'War', 'World War I', 'Military Fiction', 'Military History', 'Politics']", "['Historical Romance', 'Fairy Tales']", "['Christian', 'Nonfiction', 'Religion', 'Theology', 'Christianity', 'Classics', 'Philosophy']", "['Romance', 'Fiction', 'Contemporary', 'Adult', 'Young Adult', 'New Adult', 'Contemporary Romance']", "['LGBT', 'Young Adult', 'Fiction', 'Queer', 'Contemporary', 'Lesbian', 'Romance']", "['Science Fiction', 'Fiction', 'Fantasy', 'Novella', 'LGBT', 'Queer', 'Audiobook']", "['Graphic Novels', 'LGBT', 'Young Adult', 'Comics', 'Romance', 'Queer', 'Contemporary']", "['Fiction', 'Mystery', 'Food', 'Crime', 'Thriller', 'Cooking', 'Mystery Thriller']", "['Nonfiction', 'History', 'Adventure', 'Travel', 'Science', 'Audiobook', 'Archaeology']", "['Nonfiction', 'Politics', 'Economics', 'Philosophy', 'History', 'Sociology', 'Society']", "['Fiction', 'Science Fiction', 'Contemporary', 'Thriller', 'Novels', 'Mystery', 'Drama']", "['Fantasy', 'Young Adult', 'Dystopia', 'Romance', 'Fiction', 'Science Fiction', 'Magic']", "['Thriller', 'Horror', 'Fiction', 'Mystery Thriller', 'Mystery', 'Audiobook', 'Suspense']", "['Fiction', 'Plays', 'Contemporary', 'Drama', 'Historical Fiction', 'Romance', 'Suspense']", "['Historical Fiction', 'Fiction', 'Audiobook', 'Historical', 'Books About Books', 'Adult', 'Adult Fiction']", "['Mystery', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Fiction', 'Crime', 'Contemporary']", "['Nonfiction', 'Psychology', 'History', 'Sociology', 'War', 'Philosophy', 'Audiobook']", "['Horror', 'Science Fiction', 'Fiction', 'Vampires', 'Post Apocalyptic', 'Fantasy', 'Dystopia']", "['Fiction', 'Philosophy', 'Spirituality']", "['Historical Fiction', 'Middle Grade', 'Young Adult', 'Historical', 'Fiction', 'Audiobook', 'War']", "['Romance', 'Sports Romance', 'Sports', 'Contemporary', 'High School', 'Young Adult', 'Contemporary Romance']", "['Fiction', 'Mythology', 'Fantasy', 'Indian Literature', 'Historical Fiction', 'India', 'Amish']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Contemporary', 'Crime', 'Murder Mystery']", "['Fiction', 'Contemporary', 'Japan', 'Animals', 'Cats', 'Japanese Literature', 'Literary Fiction']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Classics', 'Speculative Fiction', 'Novels']", "['Fantasy', 'Young Adult', 'Fiction', 'Romance', 'Young Adult Fantasy', 'France', 'Magic']", "['Nonfiction', 'True Crime', 'Memoir', 'Amish', 'Religion', 'Audiobook', 'Biography']", "['Thriller', 'Fiction', 'Mystery', 'Action', 'Suspense', 'Crime', 'Mystery Thriller']", "['Nonfiction', 'Politics', 'History', 'Biography', 'Audiobook', 'Presidents', 'Journalism']", "['Young Adult', 'Science Fiction', 'Fantasy', 'Dystopia', 'Fiction', 'Romance', 'Audiobook']", "['Poetry', 'LGBT', 'Young Adult', 'Contemporary', 'Queer', 'Fiction', 'Audiobook']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Science Fiction Fantasy', 'Adult', 'Magic']", "['Fiction', 'Contemporary', 'Audiobook', 'Adult', 'Adult Fiction', 'Book Club', 'Race']", "['Romance', 'New Adult', 'Contemporary', 'Young Adult', 'Contemporary Romance', 'High School', 'Fiction']", "['Fiction', 'Japan', 'Japanese Literature', 'Contemporary', 'Magical Realism', 'Novels', 'Literature']", "['Fiction', 'Romance', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Ireland', 'Adult']", "['Fiction', 'Feminism', 'Contemporary', 'LGBT', 'Literary Fiction', 'Short Stories', 'Queer']", "['Manga', 'LGBT', 'Graphic Novels', 'Queer', 'Comics', 'Young Adult', 'Contemporary']", "['Nonfiction', 'Feminism', 'Science', 'Audiobook', 'Politics', 'Womens', 'Sociology']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Adult', 'High Fantasy', 'Audiobook', 'Historical']", "['Christmas', 'Romance', 'Chick Lit', 'Contemporary', 'Holiday', 'Audiobook', 'Humor']", "['Romance', 'LGBT', 'Contemporary', 'Fiction', 'Queer', 'Young Adult', 'New Adult']", "['Self Help', 'Nonfiction', 'Health', 'Psychology', 'Personal Development', 'Mental Health', 'Spirituality']", "['Short Stories', 'Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Audiobook']", "['Horror', 'Fiction', 'Mystery', 'Thriller', 'Fantasy', 'Audiobook', 'Monsters']", "['Fiction', 'Contemporary', 'Novels', 'Fantasy', 'Young Adult', 'Adventure', 'Middle Grade']", "['Romance', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Dark', 'Adult', 'Fiction']", "['LGBT', 'Young Adult', 'Romance', 'Contemporary', 'Queer', 'Fiction', 'Mental Health']", "['Nonfiction', 'Epic']", "['Fantasy', 'Young Adult', 'Fiction', 'Childrens', 'Adventure', 'Science Fiction', 'Audiobook']", "['Historical Fiction', 'Fantasy', 'Fiction', 'Historical', 'Greek Mythology', 'Retellings', 'Book Club']", "['Self Help', 'Nonfiction', 'Biography', 'Personal Development', 'Psychology', 'Audiobook', 'Memoir']", "['Thriller', 'Fiction', 'Mystery', 'Suspense', 'Mystery Thriller', 'Contemporary', 'Adult']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Erotica', 'Amazon', 'Motorcycle']", "['Romance', 'LGBT', 'Young Adult', 'Contemporary', 'Lesbian', 'Queer', 'Fiction']", "['Middle Grade', 'Fantasy', 'Witches', 'Adventure', 'Childrens', 'Fiction', 'Magic']", "['Fiction', 'Historical Fiction', 'Spain', 'Spanish Literature', 'Novels', 'Historical', 'Classics']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Horror', 'Audiobook', 'Adult']", "['Romance', 'Fiction', 'Chick Lit', 'Contemporary', 'Audiobook', 'Adult', 'Adult Fiction']", "['Fiction', 'Poetry', 'LGBT', 'Contemporary', 'Queer', 'Literary Fiction', 'Adult']", "['Finance', 'Nonfiction', 'Psychology', 'Business', 'Self Help', 'Money', 'Personal Finance']", "['Fantasy', 'Fiction', 'Adult', 'High Fantasy', 'Epic Fantasy', 'Magic', 'Science Fiction Fantasy']", "['Fantasy', 'LGBT', 'Lesbian', 'Young Adult', 'Romance', 'Queer', 'Science Fiction']", "['Thriller', 'Romance', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Contemporary']", "['Historical Fiction', 'Historical', 'World War II', 'Fiction', 'Romance', 'War', 'Military Fiction']", "['Science Fiction', 'Fiction', 'Thriller', 'Time Travel', 'Audiobook', 'Mystery', 'Mystery Thriller']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Horror', 'Suspense']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Fiction', 'Romance', 'Magic', 'Fairy Tales']", "['LGBT', 'Young Adult', 'Contemporary', 'Queer', 'Fiction', 'Romance', 'Audiobook']", "['Dystopia', 'Young Adult', 'Fantasy', 'Science Fiction', 'Romance', 'Fiction', 'Audiobook']", "['Romance', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Audiobook', 'Adult', 'Chick Lit']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Iran', 'Contemporary', 'Literary Fiction']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Detective', 'Crime', 'Audiobook']", "['Gaming', 'Business', 'Sports', 'Nonfiction', 'Games', 'Video Games']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Historical', 'Race', 'Literary Fiction', 'African American']", "['Mystery', 'Fiction', 'Crime', 'Audiobook', 'Thriller', 'Mystery Thriller', 'Detective']", "['Graphic Novels', 'LGBT', 'Young Adult', 'Queer', 'Comics', 'Fantasy', 'Fiction']", "['Drama', 'Fantasy', 'Romance', 'New Adult', 'Fiction', 'Contemporary', 'Book Club']", "['Contemporary', 'Fiction', 'New Adult', 'Drama', 'Novels', 'Adult', 'Crime']", "['Horror', 'Gothic', 'Fiction', 'Weird Fiction', 'German Literature', 'Literature', 'Novels']", "['Horror', 'Young Adult', 'LGBT', 'Mystery', 'Fiction', 'Science Fiction', 'Queer']", "['Historical Romance', 'Historical', 'Medieval', 'Historical Fiction', 'Romance', 'Medieval Romance', 'Fiction']", "['History', 'Nonfiction', 'Feminism', 'Politics', 'American History', 'Womens', 'Historical']", "['Contemporary', 'Nonfiction', 'Adult', 'Politics', 'Modern', 'New Adult', 'Education']", "['Young Adult', 'Mystery', 'Thriller', 'LGBT', 'Contemporary', 'Fiction', 'Mystery Thriller']", "['Short Stories', 'Fiction', 'American']", "['Fiction', 'Novels', 'Contemporary', 'Drama', 'Action', 'Adult', 'Book Club']", "['Fantasy', 'Romance', 'LGBT', 'China', 'Fiction', 'Boys Love', 'Historical']", "['Romance', 'Young Adult', 'Contemporary', 'New Adult', 'Chick Lit', 'Contemporary Romance', 'College']", "['Science Fiction', 'Young Adult', 'Fantasy', 'Fiction', 'Audiobook', 'Space', 'Adventure']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Audiobook', 'Superheroes']", "['Post Apocalyptic', 'Dystopia', 'Literary Fiction', 'Fiction', 'Science Fiction']", "['Horror', 'Fiction', 'Contemporary', 'Thriller', 'Fantasy', 'Magical Realism', 'Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Retellings', 'Magic', 'Fiction']", "['Graphic Novels', 'LGBT', 'Memoir', 'Nonfiction', 'Queer', 'Comics', 'Banned Books']", "['Fiction', 'Novels', 'Contemporary', 'Drama', 'Adult', 'Book Club', 'Action']", "['Novels', 'Contemporary', 'Book Club', 'Fiction', 'Drama']", "['Fiction', 'Fantasy', 'Novels', 'Adult', 'Magic', 'Adventure', 'Young Adult']", "['Fiction', 'Dystopia', 'Science Fiction', 'Feminism', 'Audiobook', 'Classics', 'Adult']", "['Fiction', 'Canada']", "['Nonfiction', 'Self Help', 'Inspirational']", "['Historical Fiction', 'Young Adult', 'Fiction', 'Historical', 'Romance', 'Audiobook', 'Spain']", "['Mystery', 'Westerns', 'Historical Fiction']", "['Short Stories', 'Fiction', 'Contemporary', 'Feminism', 'Cultural', 'Asia', 'Literary Fiction']", "['Young Adult', 'Dystopia', 'Fantasy', 'Fiction', 'Science Fiction', 'Horror', 'Audiobook']", "['Fantasy', 'Mystery', 'Fiction', 'Horror', 'Paranormal', 'Adult', 'Urban Fantasy']", "['Fiction', 'Young Adult', 'Fantasy']", "['Science Fiction', 'Fiction', 'LGBT', 'Fantasy', 'Queer', 'Adult', 'Lesbian']", "['Self Help', 'Nonfiction', 'Psychology', 'Philosophy', 'Personal Development', 'Audiobook', 'Mental Health']", "['Graphic Novels', 'Romance', 'LGBT', 'Young Adult', 'Contemporary', 'Queer', 'Comics']", "['Contemporary', 'Drama', 'Novels']", "['Nonfiction', 'Memoir', 'LGBT', 'Queer', 'Horror', 'Feminism', 'Biography']", "['Historical Fiction', 'Middle Grade', 'Historical', 'Young Adult', 'Fiction', 'Audiobook', 'Adventure']", "['Gothic', 'Horror', '18th Century', 'Classics']", "['Science Fiction', 'Romance', 'Fiction', 'Fantasy', 'LGBT', 'Queer', 'Time Travel']", "['Graphic Novels', 'Romance', 'LGBT', 'Young Adult', 'Queer', 'Contemporary', 'Comics']", "['Science Fiction', 'Fiction', 'Artificial Intelligence', 'Philosophy', 'Young Adult', 'Spirituality', 'Dystopia']", "['Nonfiction', 'Contemporary', 'True Story', 'Adult', 'Abuse', 'Drama', 'Book Club']", "['Fantasy', 'Dystopia', 'Romance', 'Young Adult', 'Novella', 'Fiction', 'Science Fiction']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Young Adult', 'Magical Realism', 'Audiobook', 'Historical']", "['Contemporary', 'Erotica', 'Novels', 'Drama', 'Book Club']", "['Thriller', 'Fiction', 'International', 'Cultural', 'Mystery', 'Mystery Thriller', 'The World']", "['Fantasy', 'Fiction', 'Magical Realism', 'Romance', 'Adult', 'LGBT', 'Audiobook']", "['Nonfiction', 'Science', 'Health', 'Audiobook', 'Biology', 'Medicine', 'Medical']", "['Fantasy', 'Romance', 'Reverse Harem', 'Mystery', 'Paranormal', 'Magic', 'Urban Fantasy']", "['Novels', 'Fiction', 'Drama', 'Contemporary', 'Book Club']", "['Fiction', 'Horror', 'Humor', 'Novels', 'Contemporary', 'Drama', 'Mystery']", "['Fiction', 'Drama', 'Book Club']", "['Fiction', 'Contemporary', 'Historical Fiction', 'Literary Fiction', 'Novels', 'Audiobook', 'Turkish']", "['Nonfiction', 'Race', 'Social Justice', 'Anti Racist', 'Politics', 'Sociology', 'History']", "['Fiction', 'Graphic Novels', 'Poetry', 'Childrens', 'Philosophy', 'Self Help', 'Art']", "['Science Fiction', 'Fiction', 'Space Opera', 'Novels', 'Space', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Chick Lit', 'Fantasy']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Fantasy', 'Audiobook', 'Mystery']", "['Fiction', 'Novels', 'Historical Fiction', 'Historical', 'Young Adult', 'New Adult', 'Adult']", "['Fantasy', 'Manga', 'Light Novel', 'Science Fiction', 'Manhwa', 'Dystopia', 'Fiction']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Psychological Thriller', 'Suspense']", "['Young Adult', 'Fantasy', 'Dystopia', 'Science Fiction', 'Fiction', 'Audiobook', 'Romance']", "['Middle Grade', 'Realistic Fiction', 'Fiction', 'Young Adult', 'Contemporary', 'Feminism', 'Childrens']", "['Short Stories', 'Fiction', 'Literature', 'Novels']", "['Nonfiction', 'History', 'Audiobook', 'Biography', 'True Crime', 'Business', 'Science']", "['Romance', 'Contemporary', 'Fiction', 'Adult', 'Contemporary Romance', 'Audiobook', 'Chick Lit']", "['Romance', 'Young Adult', 'Contemporary', 'Christmas', 'Holiday', 'Fiction', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Historical', 'Literary Fiction', 'Audiobook', 'Adult', 'British Literature']", "['Fantasy', 'Young Adult', 'LGBT', 'Romance', 'Retellings', 'Queer', 'Lesbian']", "['Fiction', 'Contemporary', 'Audiobook', 'Adult', 'Literary Fiction', 'Race', 'Adult Fiction']", "['Historical Fiction', 'Fiction', 'Audiobook', 'Romance', 'Historical', 'Adult', 'Book Club']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Magical Realism', 'Historical', 'Audiobook', 'Race']", "['Mental Health', 'Young Adult', 'Romance', 'Contemporary', 'Fiction', 'Poetry', 'Mental Illness']", "['Fantasy', 'Young Adult', 'Romance', 'Pirates', 'Young Adult Fantasy', 'Fiction', 'Adventure']", "['Fantasy', 'Middle Grade', 'Magic', 'Fiction', 'Young Adult', 'Childrens', 'Adventure']", "['Fantasy', 'Young Adult', 'LGBT', 'Romance', 'Queer', 'Fiction', 'Magic']", "['Nonfiction', 'Memoir', 'Biography', 'Audiobook', 'Inspirational', 'Adult', 'Biography Memoir']", "['Horror', 'Thriller', 'Fiction', 'Science Fiction', 'Mystery', 'Mystery Thriller', 'Adult']", "['Fantasy', 'Romance', 'Historical Fiction', 'Young Adult', 'Retellings', 'Historical', 'Fiction']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Audiobook']", "['Historical Fiction', 'Romance', 'Young Adult', 'Historical', 'Fiction', 'Mythology', 'Fantasy']", "['Fiction', 'Thriller', 'Mystery', 'Military Fiction', 'Suspense', 'Mystery Thriller', 'Adventure']", "['Nonfiction', 'Memoir', 'True Crime', 'Biography', 'Audiobook', 'Biography Memoir', 'Autobiography']", "['Nonfiction', 'Philosophy', 'How To', 'Book Club', 'Science']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Mental Health', 'Audiobook', 'Adult', 'Novels']", "['Nonfiction', 'Psychology', 'Autistic Spectrum Disorder', 'Mental Health', 'Adhd', 'Self Help', 'Science']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Literary Fiction', 'Contemporary', 'Historical', 'Adult']", "['Fantasy', 'Fiction', 'Young Adult', 'Martial Arts', 'Adventure', 'Audiobook', 'China']", "['Fiction', 'Fantasy', 'Magical Realism', 'Contemporary', 'Time Travel', 'Japan', 'Japanese Literature']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Race', 'Novels', 'Humor']", "['Business', 'Leadership', 'Nonfiction', 'Psychology', 'Self Help', 'Management', 'Productivity']", "['Romance', 'Historical Romance', 'Historical', 'Historical Fiction', 'Medieval', 'Fiction', 'Scotland']", "['Science Fiction', 'Fiction', 'Fantasy', 'Classics', 'Science Fiction Fantasy', 'Audiobook', 'Space Opera']", "['History', 'Military Fiction', 'Nonfiction', 'War', 'Biography', 'Military History', 'Memoir']", "['Business', 'Biography', 'Nonfiction', 'Leadership', 'Memoir', 'Audiobook', 'Management']", "['Fiction', 'Contemporary', 'Mystery Thriller', 'Mystery', 'Novels']", "['Romance', 'Fiction', 'Contemporary', 'Young Adult', 'Audiobook', 'Contemporary Romance', 'New Adult']", "['Mystery', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Fiction', 'Contemporary', 'Audiobook']", "['Science Fiction', 'Fiction', 'Fantasy', 'Science Fiction Fantasy', 'Classics', 'Audiobook', 'Novels']", "['Fantasy', 'Romance', 'Fiction', 'Urban Fantasy', 'Fantasy Romance', 'Adult', 'New Adult']", "['Fiction', 'Novels', 'Science Fiction', 'Young Adult', 'Space Opera', 'Space', 'Teen']", "['Romance', 'Thriller', 'Dark', 'Mystery', 'Mystery Thriller', 'Contemporary', 'Adult']", "['Historical Fiction', 'Fiction', 'Historical', 'World War II', 'Romance', 'Audiobook', 'France']", "['Fiction', 'Contemporary', 'Literary Fiction', 'Audiobook', 'Adult', 'Thriller', 'Dark']", "['Philosophy']", "['Nonfiction', 'Christian']", "['Drama', 'Book Club']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Contemporary Romance', 'Young Adult Romance']", "['Fiction', 'Audiobook', 'Contemporary', 'Historical Fiction', 'Book Club', 'Thriller', 'Adult']", "['Fiction', 'Time Travel', 'Audiobook', 'Science Fiction', 'Contemporary', 'Fantasy', 'Magical Realism']", "['Fantasy', 'Fiction', 'LGBT', 'Romance', 'Queer', 'Young Adult', 'Adult']", "['LGBT', 'India']", "['True Crime', 'Nonfiction', 'Crime', 'Audiobook', 'Thriller', 'Mystery', 'Horror']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Adult', 'Mythology']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Romance', 'Adventure', 'Childrens', 'Science Fiction Fantasy']", "['Romance', 'Contemporary', 'Young Adult', 'Fiction', 'Realistic Fiction', 'Audiobook', 'Young Adult Contemporary']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'New Adult', 'Fiction', 'Marriage']", "['Horror', 'Fiction', 'Thriller', 'Fantasy', 'Audiobook', 'Supernatural', 'Cults']", "['Mystery', 'Horror', 'Thriller', 'Fiction', 'Mystery Thriller', 'Paranormal', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Young Adult Romance', 'Contemporary Romance', 'Audiobook']", "['Fantasy', 'Romance', 'Young Adult', 'Vampires', 'Paranormal', 'Audiobook', 'Fiction']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Audiobook', 'Thriller', 'Contemporary']", "['Horror', 'Fiction', 'Short Stories', 'Thriller', 'Mystery', 'Audiobook', 'Fantasy']", "['New Adult', 'Romance', 'Contemporary', 'Chick Lit', 'New Adult Romance', 'Contemporary Romance', 'Young Adult']", "['Fiction', 'Feminism', 'Contemporary', 'Literary Fiction', 'Asia', 'Adult', 'Asian Literature']", "['Nonfiction', 'Memoir', 'Audiobook', 'Romance', 'Self Help', 'Contemporary', 'Biography']", "['Romance', 'Dark', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Mental Health', 'College']", "['Nonfiction', 'Biography', 'Politics', 'Memoir', 'History', 'Technology', 'Audiobook']", "['Historical Fiction', 'Historical', '17th Century', 'Fiction', 'British Literature', 'Medieval', 'Stuart']", "['Contemporary', 'Drama', 'Fiction', 'Novels', 'Thriller', 'Mystery Thriller', 'Horror']", "['Historical Fiction', 'Fiction', 'Literary Fiction', 'Historical', 'Coming Of Age', 'Contemporary', 'Audiobook']", "['Thriller', 'Spy Thriller', 'Fiction', 'Terrorism', 'War', 'Espionage', 'Mystery']", "['Science Fiction', 'Fiction', 'Young Adult', 'Space Opera', 'Novels', 'Speculative Fiction', 'Adventure']", "['Fantasy', 'Mythology', 'Middle Grade', 'Young Adult', 'Fiction', 'Greek Mythology', 'Adventure']", "['Fantasy', 'Historical Fiction', 'Fiction', 'LGBT', 'Queer', 'Historical', 'Lesbian']", "['Science Fiction', 'Fiction', 'Fantasy', 'Audiobook', 'Adult', 'Space Opera', 'Space']", "['Romance', 'Spanish Literature', 'Contemporary', 'Chick Lit', 'New Adult', 'Fiction', 'Love']", "['Fantasy', 'Romance', 'Young Adult', 'Fae', 'Fiction', 'Fantasy Romance', 'Magic']", "['Fantasy', 'Fiction', 'Epic Fantasy', 'High Fantasy', 'Audiobook', 'Adult', 'Epic']", "['Horror', 'Young Adult', 'Thriller', 'Fiction', 'Audiobook', 'Mystery', 'Halloween']", "['Nonfiction', 'Literary Criticism', 'Literature', 'Philosophy', 'Writing', 'Books About Books', 'Christian']", "['Romance', 'Contemporary', 'Reverse Harem', 'Dark', 'New Adult', 'Contemporary Romance', 'Fiction']", "['Mystery', 'Thriller', 'Short Stories', 'Suspense']", "['Fantasy', 'Dragons', 'Middle Grade', 'Fiction', 'Childrens', 'Adventure', 'Young Adult']", "['Horror', 'Fiction', 'Dystopia', 'Science Fiction', 'Thriller', 'Adult', 'Audiobook']", "['Thriller', 'Fiction', 'Mystery', 'Science Fiction', 'Mystery Thriller', 'Suspense', 'Psychological Thriller']", "['Spanish Literature', 'New Adult', 'Contemporary', 'Young Adult', 'Love', 'Romance', 'Drama']", "['Fiction', 'Contemporary', 'Audiobook', 'Mystery', 'Humor', 'Adult', 'Literary Fiction']", "['Fantasy', 'Epic Fantasy', 'Fiction', 'High Fantasy', 'Dragons', 'Adult', 'Magic']", "['Fiction', 'LGBT', 'Thriller', 'Queer', 'Contemporary', 'Historical Fiction', 'Adult']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'Fantasy', 'Medieval', 'British Literature']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Young Adult Romance', 'Audiobook']", "['Romance', 'LGBT', 'Contemporary', 'Fiction', 'Lesbian', 'Queer', 'Adult']", "['Thriller', 'Fiction']", "['Romance', 'Contemporary', 'Young Adult', 'Fiction', 'Contemporary Romance', 'Young Adult Romance', 'Young Adult Contemporary']", "['Young Adult', 'Thriller', 'LGBT', 'Contemporary', 'Mystery', 'Lesbian', 'Queer']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Witches', 'Historical', 'Magic', 'Adult']", "['Historical Fiction', 'Historical', 'Fiction', 'Romance', 'Historical Romance', 'Italy', 'Adult']", "['Historical Fiction', 'Mystery', 'Fiction', 'Historical', 'Romance', 'Historical Mystery', 'Audiobook']", "['War', 'History', 'Nonfiction', 'Epic', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Historical', 'War', 'Audiobook', 'Literary Fiction', 'Asian Literature']", "['Romance', 'Love', 'Young Adult', 'Contemporary', 'Spanish Literature', 'New Adult', 'Drama']", "['Politics', 'Nonfiction', 'Psychology', 'Philosophy', 'Journalism', 'Political Science', 'Sociology']", "['Nonfiction', 'Book Club', 'Inspirational', 'Education', 'Memoir', 'How To']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Magic', 'New Adult', 'Adult', 'High Fantasy']", "['Thriller', 'Audiobook', 'Fiction', 'Mystery', 'Mystery Thriller', 'Suspense', 'Adult']", "['True Crime', 'Nonfiction', 'Memoir', 'Audiobook', 'Crime', 'Biography', 'Autobiography']", "['Fiction', 'Drama', 'Epic', 'Contemporary']", "['Romance', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Adult', 'LGBT', 'Chick Lit']", "['Historical Fiction', 'Fiction', 'LGBT', 'Queer', 'Romance', 'Historical', 'Gay']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Fiction', 'Fantasy Romance', 'Retellings']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'Fiction', 'Chick Lit', 'Audiobook']", "['Romance', 'Contemporary', 'Love Story', 'Fiction', 'Adult', 'Novels', 'Erotica']", "['Romance', 'Fiction', 'Contemporary', 'Audiobook', 'Chick Lit', 'Adult', 'Magical Realism']", "['Nonfiction', 'Memoir', 'Audiobook', 'Feminism', 'Biography', 'True Crime', 'Biography Memoir']", "['Fantasy', 'Fiction', 'Mystery', 'Magical Realism', 'Mythology', 'Adult', 'Literary Fiction']", "['Fiction', 'Contemporary', 'Africa', 'Audiobook', 'Feminism', 'Literary Fiction', 'Nigeria']", "['Fiction', 'Thriller', 'Crime', 'Contemporary', 'Mystery', 'Audiobook', 'Mystery Thriller']", "['LGBT', 'Contemporary', 'Queer', 'Fiction', 'Audiobook', 'M M Romance', 'Adult']", "['Biography', 'Politics', 'Nonfiction', 'History', 'Audiobook', 'Feminism', 'Biography Memoir']", "['Fiction', 'Horror', 'Japan', 'Contemporary', 'Japanese Literature', 'Magical Realism', 'Fantasy']", "['Fiction', 'Mystery', 'Thriller', 'Mystery Thriller', 'Crime', 'Audiobook', 'Contemporary']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Adult', 'Audiobook', 'Contemporary']", "['Politics', 'Nonfiction', 'Memoir', 'Biography', 'Autobiography', 'Audiobook', 'Biography Memoir']", "['Fantasy', 'Fiction', 'Mystery', 'Adult', 'LGBT', 'Magic', 'Young Adult']", "['Fantasy', 'Lesbian', 'LGBT', 'Queer', 'Romance', 'Fiction', 'Adult']", "['Mystery', 'Young Adult', 'Romance', 'Fiction', 'Mystery Thriller', 'Contemporary', 'Thriller']", "['Fantasy', 'Young Adult', 'Fiction', 'Magic', 'Horror', 'Young Adult Fantasy', 'Urban Fantasy']", "['Fantasy', 'Fiction', 'Mythology', 'Adult', 'LGBT', 'Africa', 'Science Fiction Fantasy']", "['Fantasy', 'Fiction', 'Romance', 'Historical Fiction', 'Adult', 'Historical', 'Magical Realism']", "['Fiction', 'Japan', 'Contemporary', 'Feminism', 'Japanese Literature', 'Literary Fiction', 'Asian Literature']", "['Nonfiction', 'Horror', 'History', 'Travel', 'Memoir', 'Biography', 'Ghosts']", "['Novels', 'Drama', 'Contemporary']", "['Horror', 'Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Audiobook', 'Adult']", "['Drama', 'Contemporary']", "['Young Adult', 'Romance', 'Young Adult Fantasy', 'Magic', 'Fiction', 'Fantasy Romance', 'Audiobook']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Mental Health', 'Realistic Fiction', 'Young Adult Romance']", "['Thriller', 'Mystery Thriller', 'Mystery', 'Fiction', 'LGBT', 'Lesbian', 'Adult']", "['Horror', 'Fantasy', 'Fiction', 'Thriller', 'Mystery', 'Adult', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Urban Fantasy', 'Retellings']", "['Fantasy', 'Fiction', 'LGBT', 'Adult', 'Science Fiction', 'Queer', 'Audiobook']", "['Romance', 'Contemporary', 'Fiction', 'New Adult', 'Young Adult', 'Contemporary Romance', 'Audiobook']", "['Thriller', 'Mystery', 'Crime', 'Fiction', 'Novels', 'Young Adult', 'Adventure']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense', 'Paranormal']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Young Adult Romance', 'Contemporary Romance']", "['Psychology', 'Nonfiction', 'Self Help', 'Relationships', 'Personal Development', 'Science', 'Communication']", "['Romance', 'LGBT', 'Lesbian', 'Queer', 'Contemporary', 'Fiction', 'Adult']", "['Fantasy', 'Young Adult', 'LGBT', 'Lesbian', 'Romance', 'Queer', 'Retellings']", "['Fiction', 'Adventure', 'Mystery Thriller', 'Mystery', 'Young Adult', 'Thriller', 'Novels']", "['Mystery', 'Young Adult', 'Thriller', 'Mystery Thriller', 'Crime', 'Fiction', 'Audiobook']", "['Middle Grade', 'Mystery', 'Adventure', 'Fiction', 'Childrens', 'Audiobook', 'Espionage']", "['Romance', 'Fiction', 'Drama', 'Novels', 'Contemporary', 'Young Adult Romance', 'Contemporary Romance']", "['Fiction', 'Jewish', 'Contemporary', 'Literary Fiction', 'Young Adult', 'Coming Of Age', 'Religion']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Fiction', 'Romance', 'Adventure', 'Magic']", "['Romance', 'Dark', 'Contemporary', 'New Adult', 'Contemporary Romance', 'Adult', 'Crime']", "['Fantasy', 'Young Adult', 'Dystopia', 'Fiction', 'Adventure', 'Science Fiction', 'Post Apocalyptic']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Audiobook', 'Literary Fiction', 'Historical', 'Race']", "['Fantasy', 'Romance', 'Young Adult', 'Paranormal', 'Urban Fantasy', 'Angels', 'Audiobook']", "['Mystery', 'Historical Fiction', 'Fiction', 'Mystery Thriller', 'Thriller', 'Historical', 'Fantasy']", "['Historical Fiction', 'World War II', 'War', 'Fiction', 'Military Fiction', 'Realistic Fiction', 'Novels']", "['Young Adult', 'Dystopia', 'Fiction', 'Fantasy', 'Science Fiction', 'Audiobook', 'Romance']", "['Historical Fiction', 'Fiction', 'Audiobook', 'Historical', 'Romance', 'Adult', 'Contemporary']", "['LGBT', 'Young Adult', 'Contemporary', 'Romance', 'Queer', 'Fiction', 'Transgender']", "['Drama', 'Contemporary', 'Novels', 'Fantasy']", "['Romance', 'Thriller', 'Paranormal', 'Fiction', 'Mystery', 'Audiobook', 'Fantasy']", "['Thriller', 'Fiction', 'Contemporary', 'Drama', 'Suspense', 'Mystery', 'Novels']", "['Fantasy', 'Fan Fiction', 'Romance', 'Dark', 'Fiction', 'Magic', 'Fantasy Romance']", "['Nonfiction', 'LGBT', 'Queer', 'Sexuality', 'Audiobook', 'Feminism', 'Psychology']", "['Mystery', 'Fiction', 'Crime', 'Thriller', 'Adventure', 'Novels', 'Mystery Thriller']", "['Fantasy', 'Fiction', 'Historical Fiction', 'Adult', 'Audiobook', 'Mythology', 'Romance']", "['Horror', 'Fiction', 'Thriller', 'Audiobook', 'Fantasy', 'Adult', 'Mystery']", "['Fantasy', 'Young Adult', 'LGBT', 'Queer', 'Fiction', 'Magic', 'Vampires']", "['Fiction', 'Contemporary', 'Young Adult', 'Literary Fiction', 'Mental Health', 'Asian Literature', 'Coming Of Age']", "['Nonfiction', 'History', 'Audiobook', 'Race', 'Social Justice', 'Anti Racist', 'Politics']", "['Mystery', 'Thriller', 'Mystery Thriller', 'Fiction', 'Audiobook', 'Crime', 'Suspense']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Audiobook', 'Adult', 'Humor', 'Erotica']", "['Fiction', 'Spanish Literature', 'Spain', 'Novels', 'Cultural']", "['Fantasy', 'LGBT', 'Young Adult', 'Queer', 'Fiction', 'Paranormal', 'Contemporary']", "['Romance', 'Love', 'Romantic', 'Erotica', 'Romantic Suspense', 'Contemporary', 'Suspense']", "['Young Adult', 'Mystery', 'Fiction', 'Thriller', 'Audiobook', 'Contemporary', 'Mystery Thriller']", "['Mystery', 'Young Adult', 'Romance', 'Fiction', 'Fantasy', 'Contemporary', 'Mystery Thriller']", "['Horror', 'Fiction', 'Science Fiction', 'Thriller', 'Audiobook', 'Fantasy', 'Adult']", "['Fantasy', 'Science Fiction', 'Young Adult', 'LGBT', 'Queer', 'Fiction', 'Romance']", "['Romance', 'Young Adult', 'Erotic Romance', 'Love', 'New Adult', 'Spanish Literature', 'Music']", "['Historical Fiction', 'Young Adult', 'Historical', 'Romance', 'Fiction', 'Contemporary', 'World War II']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Contemporary', 'Adult']", "['Young Adult', 'Poetry', 'Contemporary', 'Fiction', 'Audiobook', 'LGBT', 'Realistic Fiction']", "['Romance', 'LGBT', 'Young Adult', 'Lesbian', 'Queer', 'Contemporary', 'Fiction']", "['Fiction', 'Fantasy', 'Contemporary', 'Audiobook', 'Magical Realism', 'Science Fiction', 'Adult']", "['Mystery', 'Cozy Mystery', 'Romance', 'Fiction', 'Contemporary', 'Mystery Thriller', 'Epic']", "['Philosophy', 'Nonfiction', 'Self Help', 'Inspirational', 'Spirituality', 'Anthologies']", "['Historical Fiction', 'Middle Grade', 'Young Adult', 'Fiction', 'Historical', 'War', 'Realistic Fiction']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Crime', 'Suspense']", "['Historical Fiction', 'Fiction', 'World War II', 'Historical', 'Audiobook', 'Romance', 'War']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Young Adult Romance', 'Young Adult Contemporary']", "['Fantasy Romance', 'Young Adult', 'New Adult', 'Witches', 'Paranormal', 'Magic', 'Fiction']", "['Parenting', 'Childrens']", "['Young Adult', 'Fiction', 'Contemporary', 'Audiobook', 'Realistic Fiction', 'Historical Fiction', 'Coming Of Age']", "['Romance', 'Fantasy Romance', 'Vampires', 'New Adult', 'Fiction', 'Paranormal', 'Young Adult']", "['Nonfiction', 'Audiobook', 'Memoir', 'Biography', 'Autobiography', 'Biography Memoir', 'Self Help']", "['Mystery', 'Fiction']", "['Nonfiction', 'History', 'Psychology', 'Philosophy', 'Science', 'Politics', 'Sociology']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Alternate History', 'Race', 'Historical', 'Science Fiction']", "['Contemporary', 'Mystery']", "['Romance', 'Sports Romance', 'Sports', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Fiction']", "['Romance', 'LGBT', 'Lesbian', 'Young Adult', 'Contemporary', 'Queer', 'Fiction']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Fantasy', 'Magical Realism', 'Audiobook']", "['Middle Grade', 'Humor', 'Childrens', 'Fiction', 'Fantasy', 'Graphic Novels', 'Adventure']", "['Thriller', 'Mystery', 'Fiction', 'Audiobook', 'Mystery Thriller', 'Suspense', 'Adult']", "['Romance', 'Historical Fiction', 'Fiction', 'Audiobook', 'Contemporary', 'Contemporary Romance', 'Historical']", "['Historical Fiction', 'Fiction', 'Audiobook', 'Historical', 'Adult', 'Adult Fiction', 'Book Club']", "['Fantasy', 'Romance', 'Fiction', 'Fantasy Romance', 'Fae', 'New Adult', 'Audiobook']", "['Fiction', 'Novels', 'Thriller', 'Drama', 'Literature', 'Egyptian Literature', 'Egypt']", "['Horror', 'Fiction', 'Historical Fiction', 'Gothic', 'Mystery', 'Fantasy', 'Thriller']", "['Fantasy', 'Young Adult', 'Science Fiction', 'Dystopia', 'Fiction', 'Young Adult Fantasy', 'Audiobook']", "['Science Fiction', 'Fiction', 'Novella', 'Mystery', 'Audiobook', 'Adult', 'Space']", "['Fantasy', 'Fiction', 'LGBT', 'Romance', 'Audiobook', 'Queer', 'Adult']", "['Nonfiction', 'Psychology', 'Self Help', 'Audiobook', 'Mental Health', 'Personal Development', 'Health']", "['Nonfiction', 'Biography', 'Memoir', 'History', 'Audiobook', 'Holocaust', 'Autobiography']", "['Fantasy', 'Middle Grade', 'Fiction', 'Mystery', 'Magic', 'Audiobook', 'Young Adult']", "['Romance', 'Love', 'Contemporary', 'Erotic Romance', 'Young Adult', 'New Adult', 'Fiction']", "['Nonfiction', 'Psychology', 'Self Help', 'Science', 'Management', 'Medicine', 'Business']", "['Fantasy', 'Romance', 'Young Adult', 'Vampires', 'Fiction', 'Paranormal', 'Audiobook']", "['Historical Fiction', 'Fiction', 'Mystery', 'Fantasy', 'Historical', 'Audiobook', 'Adult']", "['Romance', 'Fiction', 'Mystery', 'Contemporary', 'Audiobook', 'Adult', 'Humor']", "['Graphic Novels', 'Romance', 'LGBT', 'Young Adult', 'Queer', 'Contemporary', 'Fiction']", "['Drama', 'Novels', 'Epic', 'Contemporary']", "['Fantasy', 'Mythology', 'Young Adult', 'Greek Mythology', 'Fiction', 'Retellings', 'Young Adult Fantasy']", "['Fiction', 'Romance', 'Contemporary', 'Literary Fiction', 'Race', 'Adult', 'Novella']", "['Nonfiction', 'Inspirational', 'How To', 'Book Club', 'Education', 'Self Help', 'Finance']", "['Fantasy', 'Young Adult', 'Romance', 'Fae', 'Young Adult Fantasy', 'Fiction', 'Short Stories']", "['Science Fiction', 'Historical', 'Science Fiction Fantasy', 'Unfinished', 'Young Adult']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Fiction', 'Suspense', 'Crime']", "['Young Adult', 'Fantasy', 'Contemporary', 'Fiction', 'Disability', 'Werewolves', 'Paranormal']", "['Fantasy', 'Young Adult', 'Romance', 'Retellings', 'Fiction', 'Mythology', 'Young Adult Fantasy']", "['Fiction', 'Thriller', 'Espionage', 'Spy Thriller', 'Mystery', 'Mystery Thriller']", "['Reverse Harem', 'Romance', 'Dark', 'Contemporary', 'Fantasy', 'Adult', 'BDSM']", "['Fantasy', 'Fae', 'Romance', 'Young Adult', 'Fantasy Romance', 'Magic', 'Young Adult Fantasy']", "['Self Help', 'Nonfiction', 'Psychology', 'Personal Development', 'Mental Health', 'Audiobook', 'Poetry']", "['Fantasy', 'Young Adult', 'Dystopia', 'Fiction', 'Adventure']", "['Historical Fiction', 'Fantasy', 'Fiction', 'Historical', 'British Literature', 'War', 'Medieval']", "['Historical Fiction', 'Fiction', 'Audiobook', 'Historical', 'World War II', 'Mystery', 'War']", "['Nonfiction', 'Science', 'Nature', 'Environment', 'Biography', 'Audiobook', 'Memoir']", "['Mystery', 'Thriller', 'Psychological Thriller', 'Mystery Thriller', 'Murder Mystery', 'Suspense', 'Crime']", "['Fantasy', 'Romance', 'Fantasy Romance', 'New Adult', 'Fiction', 'Audiobook', 'Adult']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Magic', 'Fiction', 'Fantasy Romance']", "['Fiction', 'Science Fiction', 'Audiobook', 'Literary Fiction', 'Dystopia', 'Fantasy', 'Contemporary']", "['Novels', 'Fiction', 'Drama', 'Adventure', 'Science Fiction', 'Mystery', 'Crime']", "['Contemporary', 'Contemporary Romance', 'Fiction', 'Adult', 'Chick Lit', 'Audiobook', 'New Adult']", "['Romance', 'Fiction', 'Contemporary', 'Literary Fiction', 'Adult', 'Mental Health', 'Contemporary Romance']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Romance', 'Audiobook', 'New Adult']", "['Fantasy', 'Romance', 'Fantasy Romance', 'New Adult', 'Vampires', 'Fiction', 'Paranormal']", "['Fantasy', 'Science Fiction', 'Young Adult', 'Fiction', 'Novels', 'Contemporary', 'Romance']", "['Fantasy', 'Contemporary', 'Fiction', 'Science Fiction Fantasy', 'Young Adult Fantasy', 'Epic', 'Drama']", "['Romance', 'Reverse Harem', 'Fiction', 'Contemporary', 'Crime', 'Suspense', 'Contemporary Romance']", "['Nonfiction', 'Politics', 'Memoir', 'Biography', 'Audiobook', 'History', 'Biography Memoir']", "['Mystery', 'Fiction', 'Crime', 'Mystery Thriller', 'Adventure', 'Thriller', 'Space Opera']", "['Science Fiction', 'Fiction', 'Audiobook', 'Fantasy', 'Space', 'Adult', 'Thriller']", "['Fiction', 'Historical Fiction', 'Thriller', 'Contemporary', 'Drama', 'Science Fiction', 'Mystery Thriller']", "['Relationships', 'Psychology', 'Self Help', 'Nonfiction', 'Romance', 'Personal Development']", "['Fantasy', 'Horror', 'Young Adult', 'Mystery', 'Thriller', 'Fiction', 'Paranormal']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Audiobook', 'Contemporary Romance', 'Music']", "['Horror', 'Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Adult']", "['Nonfiction', 'Business', 'Self Help', 'Finance', 'Audiobook', 'Money', 'Personal Development']", "['Fantasy', 'Fiction', 'Magical Realism', 'Japan', 'Japanese Literature', 'Young Adult', 'Contemporary']", "['Romance', 'Love', 'Young Adult', 'Drama', 'Spanish Literature', 'Contemporary', 'Romantic']", "['Fantasy', 'Mythology', 'Retellings', 'Adult', 'Fiction', 'Greek Mythology', 'Audiobook']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Fiction', 'Suspense', 'Adult']", "['Fiction', 'Horror', 'Novels', 'Dark']", "['Ukrainian Literature', 'Classics', 'Fiction', 'Plays', 'Drama', 'Humor', 'Ukraine']", "['True Crime', 'Asia', 'Nonfiction', 'Crime', 'Travel', 'Memoir', 'Biography']", "['Nonfiction', 'Self Help', 'Productivity', 'Philosophy', 'Psychology', 'Personal Development', 'Audiobook']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Audiobook', 'Crime', 'Paranormal']", "['Nonfiction', 'True Crime', 'Biography', 'Thriller', 'True Story', 'Abuse', 'Memoir']", "['Memoir', 'Nonfiction', 'Audiobook', 'Biography', 'Food', 'Biography Memoir', 'Adult']", "['Crime', 'Fiction', 'Detective', 'Mystery', 'Contemporary', 'Epic']", "['Biography', 'Politics', 'Nonfiction', 'History', 'Biography Memoir', 'Leadership', 'Audiobook']", "['Memoir', 'Nonfiction', 'Essays', 'LGBT', 'Queer', 'Audiobook', 'Cults']", "['Fiction', 'Thriller', 'Spy Thriller', 'Mystery Thriller', 'Military Fiction', 'Adult', 'Politics']", "['LGBT', 'Queer', 'Contemporary', 'Fiction', 'Lesbian', 'Audiobook', 'Adult']", "['Fiction', 'Mystery', 'Contemporary', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Literary Fiction']", "['Fiction', 'Thriller', 'Mystery', 'Mystery Thriller', 'Crime', 'Audiobook', 'LGBT']", "['Memoir', 'Nonfiction', 'Audiobook', 'Biography', 'Biography Memoir', 'Race', 'Autobiography']", "['Business', 'Self Help', 'Nonfiction', 'Philosophy', 'Finance', 'Personal Development', 'Psychology']", "['Mystery', 'Fiction', 'Thriller', 'Audiobook', 'Mystery Thriller', 'Suspense', 'Contemporary']", "['Romance', 'Fiction', 'Contemporary', 'Contemporary Romance', 'Audiobook', 'Adult', 'Chick Lit']", "['Fiction', 'Christian', 'Christian Fiction', 'Spirituality', 'Novels', 'Japanese Literature', 'Christianity']", "['Reverse Harem', 'Fantasy', 'Fae', 'Paranormal', 'Romance', 'Magic', 'Urban Fantasy']", "['Mystery', 'Thriller', 'Romantic Suspense', 'Suspense', 'Fiction', 'Crime', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Romance', 'Italy', 'Mystery', 'World War II', 'Historical']", "['Horror', 'Novella', 'Lovecraftian', 'Fiction', 'LGBT', 'Queer', 'Fantasy']", "['Nonfiction', 'Essays', 'Audiobook', 'Memoir', 'History', 'Science', 'Adult']", "['Reverse Harem', 'Romance', 'Dark', 'Thriller']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Crime', 'Contemporary']", "['Science Fiction', 'LGBT', 'Young Adult', 'Queer', 'Fantasy', 'Fiction', 'Mystery']", "['History', 'Nonfiction', 'World War II', 'Military History', 'War', 'Military Fiction', 'Historical']", "['Fantasy', 'Romance', 'Mythology', 'Retellings', 'Greek Mythology', 'Fantasy Romance', 'Fiction']", "['Historical Fiction', 'World War II', 'Fiction', 'War', 'Historical', 'Military Fiction', 'Thriller']", "['Short Stories', 'Asia', 'Travel', 'Nonfiction']", "['Mystery', 'Fiction', 'Adventure', 'Space', 'Science Fiction Fantasy', 'Mystery Thriller', 'Young Adult']", "['Mystery', 'Horror', 'Young Adult', 'Middle Grade', 'Fiction', 'Paranormal', 'Adventure']", "['Nonfiction', 'Biography', 'Memoir', 'Politics', 'Audiobook', 'History', 'Autobiography']", "['Fiction', 'Historical Fiction', 'Contemporary', 'Romance', 'Audiobook', 'Adult', 'Historical']", "['Romance', 'Fiction', 'Contemporary', 'Chick Lit', 'Audiobook', 'Contemporary Romance', 'Adult']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'College', 'Fiction', 'Adult']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'College', 'Fiction']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'College', 'Adult', 'Fiction']", "['Romance', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Mental Health', 'Fiction']", "['Historical Fiction', 'Fiction', 'Epic', 'Contemporary', 'Novels', 'Drama']", "['Fiction', 'Thriller', 'Military Fiction', 'Action', 'Mystery', 'Mystery Thriller', 'Adventure']", "['History', 'Memoir', 'Nonfiction', 'Biography', 'Politics', 'Feminism', 'Sociology']", "['Fiction', 'Dystopia', 'Politics']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Magical Realism', 'Fantasy', 'Audiobook']", "['Fantasy', 'Vampires', 'Paranormal', 'Contemporary', 'Drama', 'Urban Fantasy', 'Fiction']", "['Thriller', 'Mystery', 'Fiction', 'Horror', 'Science Fiction', 'Suspense', 'Audiobook']", "['Suspense', 'Drama', 'Detective', 'Thriller', 'Mystery Thriller', 'Adventure', 'Fiction']", "['Fantasy', 'Historical Fiction', 'Historical Fantasy']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Fiction', 'Audiobook', 'Adult', 'Chick Lit']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Audiobook', 'Young Adult Romance']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Adult', 'Audiobook', 'Mystery Thriller']", "['Childrens', 'Picture Books', 'Dragons']", "['Contemporary', 'Novels', 'Drama', 'Fantasy', 'Fiction']", "['Horror', 'Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Adult', 'Audiobook']", "['Contemporary', 'Novels', 'Fiction', 'Romance', 'Drama', 'Christian', 'Chick Lit']", "['Fiction', 'Contemporary', 'Epic', 'Drama', 'Novels']", "['Fantasy', 'Young Adult', 'LGBT', 'Queer', 'Mythology', 'Fiction', 'Young Adult Fantasy']", "['Fiction', 'Coming Of Age', 'German Literature', 'Roman', 'Contemporary', 'Young Adult', 'Novels']", "['History', 'Nonfiction', 'World War II', 'War', 'Audiobook', 'Historical', 'Biography']", "['Mystery', 'Novels', 'Fiction', 'Contemporary', 'Epic']", "['Historical Fiction', 'Historical', 'Fiction', 'Medieval']", "['Fiction', 'Drama', 'Contemporary', 'Novels', 'Mystery', 'Cozy Mystery', 'Romance']", "['Reverse Harem', 'Romance']", "['Fantasy', 'Romance', 'Young Adult', 'Fantasy Romance', 'Fiction', 'Young Adult Fantasy', 'Magic']", "['Horror', 'Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Suspense']", "['Childrens', 'Christmas', 'Picture Books']", "['Novels', 'Fiction', 'Contemporary', 'Drama', 'Mystery']", "['Reverse Harem', 'Paranormal', 'Fantasy', 'Suspense', 'Romance']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Audiobook', 'Historical Romance', 'Adult']", "['Horror', 'Fantasy', 'Historical Fiction', 'Fiction', 'Witches', 'Historical', 'Paranormal']", "['Psychology', 'Self Help', 'Nonfiction', 'Communication', 'Business', 'Personal Development', 'Philosophy']", "['Fantasy', 'High Fantasy', 'Mythology', 'Fiction']", "['Islam', 'History', 'Nonfiction', 'Biography', 'Religion', 'Inspirational', 'Philosophy']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Audiobook', 'Suspense', 'Adult']", "['Fiction', 'Contemporary', 'Novels', 'Drama', 'Romance', 'Epic', 'Family']", "['Memoir', 'China', 'Nonfiction', 'History']", "['Historical Fiction', 'Fiction', 'Animals', 'Historical', 'Adventure', 'Book Club', 'Coming Of Age']", "['Time Travel', 'Fiction', 'Science Fiction', 'Contemporary', 'Novels', 'Drama', 'Fantasy']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Fae', 'Retellings', 'Adult', 'New Adult']", "['Fiction', 'Novels', 'Politics', 'Drama', 'Egypt']", "['Fantasy', 'Fiction', 'Paranormal', 'Witches', 'Audiobook', 'Contemporary', 'Adult']", "['Fantasy', 'Science Fiction Fantasy', 'Science Fiction', 'Post Apocalyptic', 'Adventure', 'Thriller', 'Adult']", "['Nonfiction', 'Science', 'History', 'Economics', 'Politics', 'Business', 'Technology']", "['Science Fiction', 'Thriller', 'Dystopia', 'Novels', 'Drama']", "['Fiction', 'Contemporary', 'Romance', 'Literary Fiction', 'Audiobook', 'Adult', 'Ireland']", "['Young Adult', 'Mental Health', 'Fiction', 'Contemporary', 'Realistic Fiction', 'Audiobook', 'Romance']", "['Fantasy', 'Paranormal']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Audiobook', 'New Adult', 'Adult', 'Fiction']", "['Fantasy', 'Horror', 'Vampires', 'LGBT', 'Historical Fiction', 'Gothic', 'Adult']", "['History', 'Nonfiction', 'Audiobook', 'War', 'World War II', 'Military Fiction', 'Historical']", "['Romance', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Audiobook', 'Adult', 'Fiction']", "['Contemporary', 'Fiction', 'Contemporary Romance', 'Adult', 'Audiobook', 'Chick Lit', 'New Adult']", "['Romance', 'Science Fiction', 'Fantasy', 'Fiction', 'Space Opera', 'Adult', 'Aliens']", "['Fiction', 'Historical Fiction', 'Fantasy', 'Science Fiction', 'Literary Fiction', 'Audiobook', 'Historical']", "['Mystery', 'Fiction', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Adult', 'Books About Books']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Art', 'Audiobook', 'Contemporary']", "['Middle Grade', 'Science Fiction', 'Young Adult', 'Fantasy', 'Fiction', 'Dystopia', 'Audiobook']", "['Fiction', 'Thriller', 'Horror', 'Mystery', 'Crime', 'Mystery Thriller', 'Audiobook']", "['Biography', 'Nonfiction', 'Politics', 'History', 'Germany', 'Biography Memoir', 'Womens']", "['Science Fiction', 'Thriller', 'Novels', 'Drama', 'Contemporary', 'Mystery', 'Fiction']", "['Fiction', 'Science Fiction', 'France', 'Thriller', 'Mystery', 'Contemporary', 'Audiobook']", "['Fantasy', 'Fan Fiction', 'LGBT', 'Romance', 'Queer', 'Fiction', 'Gay']", "['Fantasy', 'Young Adult', 'Fiction', 'Mythology', 'Young Adult Fantasy', 'Romance', 'Magic']", "['Fantasy', 'Young Adult', 'Romance', 'Mythology', 'Fiction', 'Retellings', 'Young Adult Fantasy']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Crime', 'Suspense', 'Adult']", "['Crime', 'Fiction', 'Novels', 'Mystery Thriller', 'Young Adult', 'Drama', 'Thriller']", "['Inspirational', 'How To', 'Nonfiction', 'Book Club', 'Education']", "['Fantasy', 'Middle Grade', 'Young Adult', 'Science Fiction', 'Fiction', 'Adventure', 'Retellings']", "['Fantasy', 'Historical Fiction', 'Romance', 'Young Adult', 'Historical', 'Mystery', 'Fiction']", "['Contemporary', 'Book Club', 'Inspirational', 'Novels', 'Education', 'Drama', 'How To']", "['Fiction', 'Crime', 'Drama', 'Mystery', 'Contemporary']", "['Drama', 'Contemporary', 'Novels', 'Fiction', 'Mystery']", "['Self Help', 'Nonfiction', 'Psychology', 'Mental Health', 'Personal Development', 'Health', 'Business']", "['Graphic Novels', 'Fantasy', 'Romance', 'Mythology', 'Comics', 'Retellings', 'Fiction']", "['Fantasy', 'Romance', 'Fantasy Romance', 'New Adult', 'Fiction', 'Adult', 'Paranormal']", "['Drama', 'Fiction', 'Novels', 'Contemporary', 'Epic']", "['Paranormal', 'Reverse Harem']", "['Horror', 'Fiction', 'Queer', 'LGBT', 'Gothic', 'Contemporary', 'Adult']", "['Romance', 'High School', 'Contemporary', 'Dark', 'New Adult', 'Fiction', 'Contemporary Romance']", "['Historical Fiction', 'Fiction', 'Young Adult', 'Romance', 'Contemporary', 'Historical', 'Fantasy']", "['Contemporary', 'Epic', 'Erotica']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'Fiction', 'New Adult', 'Audiobook']", "['Science Fiction', 'Short Stories', 'Fiction', 'Adult', 'Science Fiction Fantasy', 'Novella', 'Space']", "['Historical Fiction', 'Fiction', 'Contemporary', 'Drama', 'Novels', 'Historical', 'Epic']", "['Mystery', 'Thriller', 'Mystery Thriller', 'Fiction', 'Suspense', 'Audiobook', 'Crime']", "['Nonfiction', 'Audiobook', 'Music', 'Memoir', 'Biography', 'Autobiography', 'Biography Memoir']", "['Contemporary', 'Contemporary Romance', 'Fiction', 'Adult', 'Romance', 'Audiobook', 'New Adult']", "['Novels', 'Science Fiction', 'Adventure', 'Fiction', 'Speculative Fiction', 'Science Fiction Fantasy', 'Teen']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Audiobook', 'Suspense', 'Crime']", "['Fiction', 'Contemporary', 'Romance', 'Literary Fiction', 'Adult', 'Mental Health', 'Audiobook']", "['Health', 'Self Help', 'Nonfiction', 'Psychology', 'Spirituality', 'Science', 'Mental Health']", "['Fiction', 'Thriller', 'Historical Fiction', 'Mystery', 'Audiobook', 'War', 'Mystery Thriller']", "['Fiction', 'Thriller', 'Mystery', 'Mystery Thriller', 'Contemporary', 'Crime', 'Audiobook']", "['Romance', 'Mythology', 'Young Adult', 'Fiction', 'Retellings', 'Audiobook', 'Young Adult Fantasy']", "['Romance', 'Fantasy Romance', 'Vampires', 'Fiction', 'New Adult', 'Paranormal', 'Adult']", "['Drama', 'Contemporary', 'Fiction', 'Novels']", "['Christian', 'Nonfiction', 'Spirituality', 'Faith', 'Christian Living', 'Religion', 'Prayer']", "['Science Fiction', 'Fiction', 'Dystopia', 'Short Stories', 'Fantasy', 'Audiobook', 'Speculative Fiction']", "['How To', 'Book Club', 'Education', 'Nonfiction', 'Inspirational']", "['Horror', 'Fantasy', 'Queer', 'LGBT', 'Young Adult', 'Dystopia', 'Fiction']", "['Fiction', 'Thriller', 'Espionage', 'Mystery', 'Spy Thriller', 'Mystery Thriller', 'Suspense']", "['Self Help', 'Nonfiction', 'Spirituality', 'Relationships', 'Psychology', 'Personal Development', 'Mental Health']", "['Fantasy', 'Historical Fiction', 'Fiction', 'Historical', 'Adult', 'Audiobook', 'Historical Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'Southern', 'Romance', 'Adult']", "['Romance', 'Fiction', 'Contemporary', 'Audiobook', 'Contemporary Romance', 'Adult', 'Chick Lit']", "['Thriller', 'Mystery']", "['Romance', 'Graphic Novels', 'LGBT', 'Young Adult', 'Contemporary', 'Queer', 'Comics']", "['Fantasy', 'Young Adult', 'Horror', 'Fiction', 'Paranormal', 'Gothic', 'Mystery']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Romance', 'Feminism', 'Historical', 'Adult']", "['Romance', 'Dark', 'New Adult', 'Contemporary', 'Contemporary Romance', 'Adult', 'Suspense']", "['Romance', 'Sports Romance', 'Sports', 'Contemporary', 'Contemporary Romance', 'Audiobook', 'Fiction']", "['Business', 'Leadership', 'Nonfiction']", "['Nonfiction', 'Self Help', 'Business', 'Inspirational', 'Leadership', 'Productivity', 'How To']", "['Romance', 'Dark', 'New Adult', 'Contemporary', 'Contemporary Romance', 'College', 'Adult']", "['Drama', 'Fiction', 'Contemporary', 'Novels']", "['Thriller', 'Psychological Thriller', 'Suspense', 'Mystery']", "['Romance', 'LGBT', 'Young Adult', 'France', 'Contemporary', 'Fiction', 'Roman']", "['Novels', 'Contemporary', 'Drama']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Audiobook', 'Fiction', 'Adult', 'Chick Lit']", "['Horror', 'Fantasy', 'Fiction', 'Thriller', 'Mystery', 'Paranormal', 'Adult']", "['Romance', 'LGBT', 'Young Adult', 'Queer', 'Dystopia', 'Science Fiction', 'Fiction']", "['Fiction', 'Contemporary', 'Contemporary Romance', 'Audiobook', 'Adult', 'New Adult', 'Chick Lit']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Fiction', 'Adult', 'New Adult', 'Audiobook']", "['Science Fiction', 'Thriller', 'Fiction', 'Mystery', 'Dystopia', 'Speculative Fiction', 'Audiobook']", "['Mystery', 'Short Stories', 'Fiction', 'Anthologies', 'Thriller', 'Horror', 'Crime']", "['Mystery', 'Thriller', 'Mystery Thriller', 'Fiction', 'Horror', 'Paranormal', 'Audiobook']", "['Ukrainian Literature', 'Classics', 'Fiction', 'Short Stories', 'Ukraine', 'Nature']", "['Fantasy', 'Fiction', 'High Fantasy', 'Mystery', 'Adult', 'Science Fiction', 'Epic Fantasy']", "['Nonfiction', 'Memoir', 'Self Help', 'Audiobook', 'Christian', 'Faith', 'Essays']", "['Romance', 'LGBT', 'Lesbian', 'Queer', 'Young Adult', 'Contemporary', 'Fiction']", "['Historical Fiction', 'Romance', 'Fiction', 'Christian Fiction', 'Romantic', 'Drama', 'Love Story']", "['Fiction', 'Science Fiction', 'Time Travel', 'Fantasy', 'Historical Fiction', 'Audiobook', 'Literary Fiction']", "['Nonfiction', 'Self Help', 'Psychology', 'Personal Development', 'Audiobook', 'Science', 'Business']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Young Adult', 'Witches', 'New Adult', 'Paranormal']", "['History', 'Nonfiction', 'Politics', 'How To', 'Book Club', 'Germany', 'Biography']", "['Fantasy', 'Romance', 'Fiction', 'Fantasy Romance', 'Adult', 'Paranormal', 'Audiobook']", "['Fantasy', 'Dystopia', 'Romance', 'Young Adult', 'Fiction', 'Novella', 'Science Fiction']", "['Romance', 'Fantasy', 'Dark', 'Retellings', 'Contemporary', 'Audiobook', 'Fiction']", "['Mystery', 'Fiction', 'Mental Health', 'Epic', 'Drama']", "['Nonfiction', 'Self Help', 'Memoir', 'Mental Health', 'Psychology', 'Biography']", "['Historical Fiction', 'Fiction', 'Historical', 'Westerns', 'Magical Realism', 'Literary Fiction', 'Audiobook']", "['Nonfiction', 'Memoir', 'Audiobook', 'Biography', 'Autobiography', 'Biography Memoir', 'Adult']", "['Fantasy', 'Science Fiction', 'Science Fiction Fantasy', 'Post Apocalyptic', 'Adventure', 'Adult', 'Dark']", "['Fantasy', 'Romance', 'LGBT', 'Queer', 'Boys Love', 'Fiction', 'Historical']", "['Fantasy', 'Romance', 'LGBT', 'Queer', 'Fiction', 'Boys Love', 'China']", "['Fantasy', 'Romance', 'LGBT', 'Boys Love', 'Queer', 'Fiction', 'Historical']", "['Romance', 'Fiction', 'Contemporary', 'Audiobook', 'Contemporary Romance', 'Chick Lit', 'Adult']", "['Horror', 'Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Paranormal', 'Audiobook']", "['Fantasy', 'Young Adult', 'Romance', 'Young Adult Fantasy', 'Fantasy Romance', 'Witches', 'Magic']", "['Nonfiction', 'Christian', 'Self Help', 'Faith', 'Christian Living', 'Audiobook', 'Relationships']", "['Romance', 'LGBT', 'Young Adult', 'Contemporary', 'Queer', 'Lesbian', 'Fiction']", "['Dark', 'Thriller', 'Fantasy', 'Horror', 'Adult', 'Mystery', 'Contemporary']", "['Fiction', 'Contemporary', 'Romance', 'Audiobook', 'Literary Fiction', 'Adult', 'Historical Fiction']", "['Fantasy', 'Romance', 'LGBT', 'Boys Love', 'Queer', 'Fiction', 'China']", "['LGBT', 'Young Adult', 'Romance', 'Queer', 'Lesbian', 'Contemporary', 'Fiction']", "['Horror', 'Fiction', 'Gothic', 'Thriller', 'Fantasy', 'Paranormal', 'Supernatural']", "['Historical Fiction', 'Drama', 'Novels', 'Contemporary', 'Fiction', 'France', 'Romance']", "['Self Help', 'Nonfiction', 'Psychology', 'Inspirational', 'Education', 'How To', 'Personal Development']", "['Fiction', 'India', 'Philosophy']", "['Fantasy', 'Romance']", "['Sports Romance', 'Sports', 'College', 'Contemporary', 'Contemporary Romance', 'New Adult', 'Football']", "['Historical Fiction', 'Novels', 'Fiction', 'Historical', 'American History', 'Russian History', '19th Century']", "['Self Help', 'Nonfiction', 'Psychology', 'Relationships', 'Inspirational', 'Personal Development', 'Productivity']", "['Mystery', 'Africa', 'Fiction', 'Thriller', 'Mystery Thriller', 'Audiobook', 'Adult Fiction']", "['Science Fiction', 'Space Opera', 'Fiction', 'Space', 'Science Fiction Fantasy', 'Adventure', 'Novels']", "['Horror', 'Thriller', 'Science Fiction', 'Fiction', 'Mystery', 'Suspense', 'Fantasy']", "['Nonfiction', 'History', 'Sports', 'World War II', 'Military Fiction', 'War', 'Football']", "['Fiction', 'Thriller', 'Espionage', 'Action', 'Adult', 'Mystery']", "['Nonfiction', 'Self Help', 'Finance', 'Audiobook', 'Personal Development', 'Money', 'Psychology']", "['Nonfiction', 'Inspirational', 'How To', 'Book Club', 'Education']", "['Nonfiction', 'Education', 'Inspirational', 'How To', 'Book Club']", "['Romance', 'Dark', 'Thriller', 'Adult', 'Horror', 'Contemporary', 'Fiction']", "['Fiction', 'Time Travel', 'Audiobook', 'Science Fiction', 'Fantasy', 'Contemporary', 'Magical Realism']", "['Adventure', 'Fiction', 'Thriller', 'Mystery Thriller', 'Action', 'Crime', 'Novels']", "['Fantasy', 'Science Fiction Fantasy', 'Audiobook', 'Magic', 'Fiction', 'Young Adult']", "['Fantasy', 'Romance', 'Young Adult', 'Mystery', 'Gothic', 'Paranormal', 'Fiction']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Novels', 'Mystery Thriller', 'Adventure']", "['Fiction', 'Mystery', 'Mystery Thriller', 'Contemporary', 'Thriller', 'Novels', 'Epic']", "['Horror', 'Fiction', 'Thriller', 'Mystery', 'Audiobook', 'Adult', 'Mystery Thriller']", "['Fantasy', 'Young Adult', 'Fantasy Romance', 'Young Adult Fantasy', 'Fiction', 'Magic', 'Audiobook']", "['Thriller', 'Fiction', 'Mystery Thriller', 'Suspense', 'Audiobook', 'Mystery', 'Contemporary']", "['Suspense', 'Thriller', 'Mystery', 'Action', 'Young Adult', 'Detective', 'Fiction']", "['Fiction', 'Contemporary', 'Audiobook', 'Literary Fiction', 'Thriller', 'Adult', 'Mystery']", "['Nonfiction', 'Memoir', 'Audiobook', 'Biography', 'Autobiography', 'Mental Health', 'Adult']", "['Thriller', 'Mystery', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense']", "['Horror', 'Fiction', 'Thriller', 'Audiobook', 'Paranormal', 'Mystery', 'Adult']", "['Historical Fiction', 'Fiction', 'War', 'Historical']", "['Horror', 'Thriller', 'Science Fiction', 'Survival']", "['Contemporary', 'Contemporary Romance', 'Fiction', 'Adult', 'Romance', 'Audiobook', 'Chick Lit']", "['Productivity', 'Nonfiction', 'Self Help', 'Personal Development', 'Business', 'Psychology', 'Technology']", "['Romance', 'Historical Fiction', 'Historical Romance', 'Fiction', 'Historical', 'Regency', 'Audiobook']", "['Historical Fiction', 'Historical', 'Fiction', 'Fantasy', 'Medieval', 'Anglo Saxon']", "['Fiction', 'Contemporary', 'Mystery', 'Novels', 'Drama', 'Mystery Thriller', 'Epic']", "['Romance', 'LGBT', 'Young Adult', 'Fiction', 'Queer', 'Contemporary', 'Fantasy']", "['Science Fiction', 'Cyberpunk']", "['Fiction', 'Mystery', 'Romance', 'Historical Fiction', 'Mystery Thriller', 'Audiobook', 'Contemporary']", "['Politics', 'Nonfiction', 'Biography']", "['Fantasy', 'Romance', 'LGBT', 'Boys Love', 'Fiction', 'Queer', 'China']", "['Self Help', 'Psychology', 'Nonfiction', 'Personal Development', 'Productivity', 'Philosophy', 'Education']", "['Inspirational', 'Nonfiction', 'Business', 'How To', 'Finance', 'Education']", "['Mystery', 'Romance', 'Fiction', 'Crime', 'Thriller', 'Suspense', 'Futuristic']", "['Memoir', 'Nonfiction', 'Feminism', 'Finance', 'Biography', 'Audiobook', 'Biography Memoir']", "['Nonfiction', 'Drama']", "['Thriller', 'Fiction', 'Mystery Thriller', 'Mystery', 'Spy Thriller', 'Espionage', 'Action']", "['Science Fiction', 'Fiction', 'Thriller', 'Audiobook', 'Mystery', 'Mystery Thriller', 'Dystopia']", "['Young Adult', 'Action', 'Novels', 'Teen', 'Adventure', 'Fiction', 'Paranormal']", "['History', 'Nonfiction', 'World War II', 'War', 'Historical', 'Biography', 'Military Fiction']", "['Nonfiction', 'Business', 'Writing', 'Communication', 'Self Help', 'Leadership', 'Personal Development']", "['Historical Fiction', 'Fiction', 'Historical', 'Audiobook', 'World War II', 'War', 'Literary Fiction']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Audiobook', 'Time Travel', 'Crime']", "['Thriller', 'Mystery', 'Fiction', 'Audiobook', 'Science Fiction', 'Mystery Thriller', 'Suspense']", "['Nonfiction', 'Politics', 'Feminism', 'History', 'Law', 'Womens', 'Social Justice']", "['Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Adventure', 'Magic', 'Novels', 'Epic Fantasy']", "['Romance', 'Dark', 'Thriller', 'Contemporary', 'Mystery', 'Suspense', 'Contemporary Romance']", "['Mystery', 'Science Fiction', 'Fiction', 'Mystery Thriller', 'Space', 'Adult', 'Science Fiction Fantasy']", "['Fantasy', 'Romance', 'LGBT', 'Boys Love', 'Queer', 'Historical', 'Fiction']", "['Fantasy', 'Romance', 'LGBT', 'Boys Love', 'Fiction', 'Historical', 'Queer']", "['Thriller', 'Fiction', 'Mystery', 'Crime', 'Action', 'Audiobook', 'Suspense']", "['Historical Fiction', 'Fiction', 'Historical', 'Romance', 'Literary Fiction', 'Adventure', 'Novels']", "['Contemporary', 'Contemporary Romance', 'Fiction', 'Adult', 'Romance', 'Chick Lit', 'Audiobook']", "['Fantasy', 'Romance', 'Young Adult', 'Contemporary', 'Magical Realism', 'Fiction', 'Asian Literature']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Fiction', 'Adult', 'Audiobook', 'Chick Lit']", "['Horror', 'Novella', 'Fiction', 'Thriller', 'Paranormal', 'Adult', 'Fantasy']", "['Mystery', 'Thriller', 'Audiobook', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense']", "['Science Fiction', 'Thriller', 'Action', 'Fiction', 'Mystery', 'Adventure', 'Fantasy']", "['Fantasy', 'Fiction', 'Horror', 'Audiobook', 'Thriller', 'Adventure', 'Adult']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Literary Fiction', 'Contemporary', 'Coming Of Age', 'Book Club']", "['Romance', 'Young Adult', 'Contemporary', 'Audiobook', 'Young Adult Romance', 'Fiction', 'Contemporary Romance']", "['Romance', 'Contemporary', 'Contemporary Romance', 'Adult', 'New Adult', 'Fiction', 'Dark']", "['Nonfiction', 'Memoir', 'Biography', 'Abuse', 'Biography Memoir']", "['Fiction', 'Mystery', 'Thriller', 'Legal Thriller', 'Crime', 'Mystery Thriller', 'Contemporary']", "['Fiction', 'Thriller', 'Audiobook', 'Spy Thriller', 'Espionage', 'Mystery', 'Suspense']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Young Adult Fantasy', 'Science Fiction', 'Science Fiction Fantasy']", "['Fantasy', 'Young Adult', 'Urban Fantasy', 'Fiction', 'Young Adult Fantasy']", "['Young Adult Romance', 'Love Story', 'Drama', 'Realistic Fiction', 'Fiction', 'Love', 'Romance']", "['Contemporary', 'High School', 'Contemporary Romance', 'New Adult', 'Young Adult', 'Fiction', 'Romance']", "['Fantasy', 'Romance', 'Young Adult', 'Fantasy Romance', 'Fiction', 'Magic', 'Young Adult Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Italy', 'Audiobook', 'Literary Fiction', 'Adult']", "['Historical Fiction', 'Fiction', 'Historical', 'Mystery', 'Audiobook', 'Crime', 'Literary Fiction']", "['Romance', 'Fiction', 'Contemporary', 'Audiobook', 'Adult', 'Contemporary Romance', 'Chick Lit']", "['Nonfiction', 'Memoir', 'Audiobook', 'Biography', 'Politics', 'Biography Memoir', 'History']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Contemporary', 'Sports', 'Romance', 'Adult']", "['Epic', 'Contemporary', 'Fiction', 'Novels']", "['Fantasy', 'Fiction', 'Romance', 'Adventure', 'Young Adult', 'High Fantasy', 'Audiobook']", "['Fantasy', 'Romance', 'Fiction', 'Adult', 'High Fantasy', 'Science Fiction', 'Audiobook']", "['Horror', 'Fiction', 'Audiobook', 'Queer', 'LGBT', 'Adult', 'Fantasy']", "['Science Fiction', 'Horror', 'Fiction']", "['Historical Fiction', 'Fiction', 'Ukraine', 'Historical', 'War', 'Romance', 'Russia']", "['Fantasy', 'Romance', 'LGBT', 'Boys Love', 'Queer', 'China', 'Light Novel']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Suspense', 'Audiobook', 'Crime']", "['Business', 'Artificial Intelligence', 'Nonfiction', 'Economics', 'Technology', 'Science', 'Finance']", "['History', 'War', 'Nonfiction', 'Epic', 'Drama', 'World History', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Italy', 'Historical', 'Epic', 'Contemporary', 'Romance']", "['Fiction', 'Drama', 'Contemporary', 'Epic']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Audiobook', 'New Adult']", "['Christian', 'Prayer', 'Nonfiction', 'Faith', 'Religion', 'Christianity', 'Theology']", "['Romance', 'Vampires', 'Fantasy Romance', 'Paranormal', 'Fiction', 'Adult', 'Fantasy']", "['Nonfiction', 'Finance', 'Self Help', 'Feminism', 'Money', 'Audiobook', 'Personal Finance']", "['Romance', 'Young Adult', 'Contemporary', 'Fiction', 'Contemporary Romance', 'Young Adult Romance', 'Asian Literature']", "['Fantasy', 'Fiction', 'LGBT', 'Queer', 'Adult', 'Lesbian', 'Dragons']", "['Romance', 'Young Adult', 'Fiction', 'Historical Fiction', 'Fantasy Romance', 'Audiobook', 'Young Adult Fantasy']", "['Horror', 'Halloween', 'Fiction', 'Thriller', 'Paranormal', 'Historical Fiction', 'Adult']", "['Science Fiction', 'Romance', 'Aliens', 'Science Fiction Romance', 'Space Opera', 'Fiction', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Asia', 'War', 'Audiobook', 'Literary Fiction']", "['Mystery', 'Fiction', 'Thriller', 'Crime', 'Mystery Thriller', 'Noir', 'Suspense']", "['Historical Fiction', 'Fiction', 'World War II', 'Historical', 'Holocaust', 'War', 'China']", "['Fiction', 'Thriller', 'Contemporary', 'Mystery', 'Drama', 'Epic', 'Amazon']", "['Fiction', 'Contemporary', 'Epic', 'Drama', 'Novels', 'Thriller']", "['Health', 'Nonfiction', 'Food', 'Vegan', 'Nutrition', 'Audiobook']", "['Thriller', 'Mystery', 'Audiobook', 'Mystery Thriller', 'Fiction', 'Suspense', 'Psychological Thriller']", "['Thriller', 'Fiction', 'Espionage', 'Action', 'Audiobook', 'Suspense', 'Spy Thriller']", "['Science Fiction', 'Romance', 'Fantasy', 'Fiction', 'Chick Lit', 'Romantic', 'Young Adult Romance']", "['History', 'Nonfiction', 'Biography', 'Politics', 'World War II', 'Historical', 'War']", "['Fantasy', 'Fiction', 'Science Fiction', 'Contemporary', 'Novels', 'Drama', 'Romance']", "['Fantasy', 'Romance', 'Fiction', 'LGBT', 'Cozy Mystery', 'Queer', 'Audiobook']", "['Contemporary', 'Contemporary Romance', 'Adult', 'Fiction', 'Fantasy', 'Romance', 'New Adult']", "['Nonfiction', 'Self Help', 'Communication', 'Psychology', 'Personal Development', 'Politics', 'Social']", "['Nonfiction', 'Politics', 'Memoir', 'Biography', 'History', 'Audiobook', 'Autobiography']", "['Self Help', 'Nonfiction', 'Business', 'Personal Development', 'Love Story', 'Romantic', 'Romance']", "['Science Fiction', 'Fiction', 'Fantasy', 'Religion', 'Dystopia', 'Science Fiction Fantasy', 'Christian Fiction']", "['Mystery', 'Thriller', 'Young Adult', 'Mystery Thriller', 'Fiction', 'Audiobook', 'Contemporary']", "['Historical Fiction', 'Fiction', 'Romance', 'Historical', 'Drama', 'Young Adult Romance', 'Realistic Fiction']", "['Time Travel', 'Science Fiction', 'Fiction', 'Fantasy', 'Historical Fiction', 'Contemporary', 'Historical']", "['Nonfiction', 'Memoir', 'Biography', 'Biography Memoir', 'Sports', 'Audiobook', 'Religion']", "['Nonfiction', 'Memoir', 'Audiobook', 'Self Help', 'Biography', 'Biography Memoir', 'Politics']", "['Memoir', 'Nonfiction', 'Audiobook', 'Christian', 'Biography', 'Faith', 'Biography Memoir']", "['Fantasy', 'M M Romance']", "['Business', 'Nonfiction', 'Self Help', 'How To', 'Education', 'Productivity', 'Inspirational']", "['Fantasy', 'M M Romance', 'Romance', 'Dark', 'Paranormal', 'LGBT', 'Queer']", "['Fiction', 'Dark', 'Abuse', 'Thriller', 'Horror', 'Realistic Fiction']", "['Fantasy', 'Romance', 'Dragons', 'Fiction', 'Audiobook', 'Fantasy Romance', 'New Adult']", "['Fantasy', 'Romance', 'Paranormal', 'Gods', 'Mythology', 'LGBT']", "['BDSM', 'Fantasy', 'Romance', 'LGBT', 'M M Romance', 'Historical', 'Dark']", "['Historical Fiction', 'Historical', 'Fiction', 'War', 'Holocaust', 'World War II', 'France']", "['Fantasy', 'Fiction', 'Magic', 'Science Fiction', 'Audiobook', 'Role Playing Games', 'Adult']", "['Drama', 'Romance', 'Realistic Fiction', 'Young Adult Romance', 'Contemporary Romance', 'Romantic', 'Fiction']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Fiction', 'Adult', 'New Adult', 'Audiobook']", "['Romance', 'Fiction', 'Contemporary', 'Young Adult', 'LGBT', 'Poetry', 'Queer']", "['Fiction', 'Crime', 'Thriller', 'Mystery', 'Novels', 'Audiobook', 'Mystery Thriller']", "['Historical Fiction', 'Fiction', 'Ireland', 'Audiobook', 'Irish Literature', 'Historical', 'Book Club']", "['Fantasy', 'Young Adult', 'Romance', 'Fiction', 'Young Adult Fantasy', 'Magic', 'Fantasy Romance']", "['Romance', 'Sports Romance', 'Sports', 'Contemporary', 'Hockey', 'Contemporary Romance', 'New Adult']", "['Fiction', 'Historical Fiction', 'Audiobook', 'Romance', 'Contemporary', 'Literary Fiction', 'Family']", "['Fantasy', 'LGBT']", "['Nonfiction', 'Inspirational', 'History', 'How To', 'Education', 'War', 'Drama']", "['Mystery', 'Drama', 'Thriller', 'Novels', 'Mystery Thriller', 'Suspense', 'Murder Mystery']", "['Romance', 'LGBT', 'Young Adult', 'Queer', 'Contemporary', 'Lesbian', 'Fiction']", "['Romance', 'Contemporary', 'Fiction', 'Audiobook', 'Contemporary Romance', 'Adult', 'Chick Lit']", "['Horror', 'Fiction', 'Comedy', 'Humor', 'Audiobook', 'Fantasy', 'Thriller']", "['Fantasy', 'M M Romance', 'M M Fantasy', 'Fantasy Romance', 'Romance', 'LGBT']", "['Historical Fiction', 'Historical']", "['Thriller', 'Mystery', 'Fiction', 'Audiobook', 'Mystery Thriller', 'Suspense', 'Crime']", "['Fantasy', 'Romance', 'Vampires', 'Fantasy Romance', 'Adult', 'Paranormal', 'Magic']", "['Fiction', 'Short Stories', 'Contemporary', 'Books About Books', 'Fantasy', 'Audiobook', 'Novella']", "['Fiction', 'Mystery', 'Novels', 'Contemporary', 'Thriller', 'Young Adult', 'Teen']", "['Fantasy', 'Mystery', 'Urban Fantasy', 'Paranormal']", "['Thriller', 'Military Fiction', 'Fiction', 'Audiobook', 'Action', 'Espionage']", "['Mystery', 'Fiction', 'Time Travel', 'Young Adult', 'Science Fiction', 'Mystery Thriller', 'Thriller']", "['Fiction', 'Novels', 'Contemporary', 'Epic', 'Drama']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Fiction', 'Horror', 'Audiobook', 'Gothic']", "['Science Fiction', 'Fiction', 'Audiobook', 'Fantasy', 'Space Opera', 'Space', 'Science Fiction Fantasy']", "['Horror', 'Historical Fiction', 'Mystery', 'Fiction', 'Thriller', 'Historical', 'Suspense']", "['Mystery', 'Young Adult', 'Romance', 'Fiction', 'Mystery Thriller', 'Contemporary', 'Fantasy']", "['Science Fiction', 'LGBT', 'Romance', 'Artificial Intelligence', 'Virtual Reality', 'Science Fiction Fantasy', 'Cyberpunk']", "['Nonfiction', 'Memoir', 'Audiobook', 'Christian', 'Biography', 'Religion', 'Biography Memoir']", "['Horror', 'Fiction', 'Thriller', 'Science Fiction', 'Audiobook', 'Adventure', 'Adult']", "['Horror', 'Thriller', 'Fiction', 'Science Fiction', 'Suspense', 'Mystery', 'Mystery Thriller']", "['Romance', 'Fiction', 'Contemporary', 'Magical Realism', 'Time Travel', 'Fantasy', 'Contemporary Romance']", "['Fantasy', 'M M Romance', 'BDSM', 'Fantasy Romance', 'LGBT', 'Romance']", "['Thriller', 'Science Fiction', 'Fiction', 'Dystopia', 'Mystery Thriller', 'Audiobook', 'Mystery']", "['Drama', 'Fiction', 'Love', 'Romance', 'Romantic', 'Young Adult Romance', 'Chick Lit']", "['Romance', 'Contemporary Romance', 'Contemporary', 'Adult', 'Fiction', 'New Adult', 'Fantasy']", "['Fantasy', 'Mythology', 'LGBT', 'Middle Grade', 'Young Adult', 'Queer', 'Romance']", "['Thriller', 'Crime', 'Fiction']", "['BDSM', 'LGBT', 'Fantasy', 'M M Romance', 'Romance', 'Fantasy Romance']", "['Fiction', 'Epic', 'Fantasy', 'Novels', 'Drama', 'Contemporary']", "['Contemporary', 'Novels', 'Drama', 'Historical Fiction', 'Fiction']", "['Urban Fantasy', 'Fantasy', 'Paranormal', 'Magic', 'Romance', 'Dragons', 'Fae']", "['Mystery', 'Thriller', 'Mystery Thriller', 'Fiction', 'Crime', 'Adult', 'Suspense']", "['Fiction', 'Audiobook', 'Literary Fiction', 'Romance', 'Historical Fiction', 'Contemporary', 'Family']", "['Romance', 'M M Romance', 'Fantasy']", "['Historical Fiction', 'Fiction', 'Historical', 'Asia', 'Medieval', 'Adventure', '13th Century']", "['Thriller', 'Fiction', 'Mystery', 'Mystery Thriller', 'Action', 'Police', 'Suspense']", "['Science Fiction', 'Fiction', 'Fantasy', 'Military Fiction', 'Time Travel', 'War', 'Science Fiction Fantasy']", "['Fiction', 'Epic', 'Drama']", "['Self Help', 'Communication', 'Leadership', 'Nonfiction', 'Business', 'Personal Development', 'Psychology']", "['Fiction', 'Historical Fiction', 'Magical Realism', 'Contemporary', 'Historical', 'China', 'Adult']", "['Adventure', 'Fiction', 'Mystery', 'Science Fiction Fantasy', 'Space', 'Science Fiction', 'Novels']", "['Historical Fiction', 'World War II']", "['Fantasy', 'Vampires', 'Paranormal', 'Fiction', 'Paranormal Romance']", "['Fantasy', 'Romance', 'M M Romance', 'LGBT', 'Retellings', 'Fantasy Romance', 'Monsters']", "['Science Fiction', 'Fiction', 'Time Travel', 'Thriller', 'Audiobook', 'Fantasy', 'Alternate History']", "['History', 'Nonfiction', 'War', 'Military Fiction', 'World War II', 'Japan', 'Politics']", "['Science Fiction', 'Fiction', 'Dystopia', 'Fantasy', 'Post Apocalyptic']", "['Contemporary', 'Fiction', 'Epic']", "['Historical Fiction', 'Young Adult Romance', 'Contemporary Romance', 'Realistic Fiction', 'Love Story', 'Love', 'Chick Lit']", "['Epic', 'Novels', 'Fiction', 'Contemporary', 'Drama']", "['Fiction', 'Medical', 'Medicine']", "['Historical Fiction', 'Fiction', 'Historical', 'Anglo Saxon']", "['Fiction', 'Thriller', 'Spy Thriller', 'Mystery Thriller', 'Adult Fiction', 'Military Fiction', 'Crime']", "['Christian', 'Religion', 'Faith']", "['Fantasy', 'Magic', 'Fiction', 'Audiobook', 'Demons', 'High Fantasy']", "['Novels', 'Young Adult', 'Action', 'Adventure', 'Fiction', 'Teen', 'Contemporary']", "['Holocaust', 'History', 'World War II', 'Nonfiction', 'True Story', 'Historical', 'Biography']", "['Fantasy', 'M M Romance', 'Romance', 'LGBT']", "['Fantasy', 'Fae', 'Asexual', 'BDSM', 'M M Romance', 'Dark Fantasy', 'LGBT']", "['Self Help', 'Nonfiction', 'Biography', 'Psychology']", "['Nonfiction', 'Religion', 'Sociology', 'Philosophy', 'Parenting', 'Cultural', 'Society']", "['Romance', 'Sports Romance', 'Sports', 'Contemporary', 'Contemporary Romance', 'Adult', 'Basketball']", "['Fiction', 'Romance', 'Realistic Fiction', 'Love Story', 'Historical Fiction', 'Love', 'Young Adult Romance']", "['Reverse Harem', 'Romance', 'Dark', 'Contemporary', 'Science Fiction', 'Fantasy', 'Erotica']", "['Romance', 'Dragons', 'Fiction', 'Fantasy Romance', 'Magic', 'New Adult', 'Adult']", "['Thriller', 'Fiction', 'Contemporary', 'Suspense', 'Mystery']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Crime', 'Suspense', 'Police']", "['Fiction', 'Action', 'Young Adult', 'Teen', 'Adventure', 'Novels', 'Romance']", "['Novels', 'Mystery', 'Drama', 'Fiction', 'Crime', 'Mystery Thriller', 'Detective']", "['Science', 'Childrens']", "['Romance', 'Sports Romance', 'Contemporary', 'Contemporary Romance', 'Audiobook', 'New Adult', 'Hockey']", "['Thriller', 'Fiction', 'Espionage', 'Mystery', 'Suspense', 'Action', 'Audiobook']", "['Fiction', 'Young Adult', 'Teen', 'Action', 'Novels', 'Adventure', 'Contemporary']", "['Historical Fiction', 'Mystery', 'Fiction', 'Audiobook', 'Historical', 'Mystery Thriller', 'Thriller']", "['Mystery', 'Young Adult', 'Thriller', 'Fiction', 'Mystery Thriller', 'Contemporary', 'Audiobook']", "['Science Fiction', 'Fiction', 'Mystery']", "['True Crime', 'Nonfiction', 'Crime', 'Australia', 'Mystery']", "['Horror', 'Dystopia', 'Fiction', 'Science Fiction']", "['Romance', 'LGBT', 'M M Romance', 'Fantasy', 'College', 'BDSM', 'Dark Fantasy']", "['Romance', 'LGBT', 'Fantasy', 'M M Romance', 'College', 'Dark Fantasy']", "['Historical Fiction', 'Romance', 'Fiction', 'Chick Lit', 'Love Story', 'Young Adult Romance', 'Drama']", "['Science Fiction', 'Time Travel', 'Fiction']", "['Thriller', 'Audiobook', 'Mystery Thriller', 'Mystery', 'Fiction', 'Suspense', 'Horror']", "['Historical Fiction', 'Romance', 'Fiction', 'Audiobook', 'Historical', 'World War II', 'Realistic Fiction']", "['Classics', 'Fiction', 'Ukrainian Literature', 'Ukraine', 'Queer']", "['Fantasy', 'Romance', 'Fiction', 'Audiobook', 'Fantasy Romance', 'Magic', 'Adult']", "['Fantasy', 'Fae', 'M M Romance', 'Poverty', 'Queer', 'LGBT', 'Romance']", "['Fiction', 'Science Fiction', 'Time Travel']", "['Legal Thriller', 'Mystery', 'Crime']", "['Self Help', 'Personal Development', 'Philosophy', 'Nonfiction', 'How To', 'Psychology', 'Education']", "['Fantasy', 'Dark', 'M M Romance', 'Demons', 'Angels', 'BDSM', 'Magic']", "['Fantasy', 'Fiction', 'Romance', 'Historical Fiction', 'Young Adult Romance', 'Love Story', 'Magic']", "['Romance', 'Young Adult', 'Fiction', 'Time Travel', 'Contemporary', 'Teen', 'Chick Lit']", "['Fantasy', 'Dark', 'Angels', 'Demons', 'M M Romance', 'Fantasy Romance', 'Dark Fantasy']", "['Romance', 'Science Fiction', 'Fantasy', 'Space Opera', 'Magic', 'Science Fiction Romance', 'Space']", "['Historical Fiction', 'Fiction', 'Historical', 'World War II']", "['Mystery', 'Thriller', 'Fiction', 'Mystery Thriller', 'Suspense', 'Crime', 'Espionage']", "['Historical Fiction', 'Fiction', 'Romance', 'Mystery', 'Historical', 'Chick Lit', 'Crime']", "['Romance', 'Historical Romance', 'Fiction', 'Historical', 'Historical Fiction', 'Romantic', 'Love Story']", "['Fantasy', 'BDSM', 'M M Romance', 'Dark', 'Romance', 'M M Fantasy', 'Novella']", "['M M Romance', 'Romance', 'BDSM', 'Fantasy', 'Dark']", "['Fantasy', 'Fantasy Romance', 'Romance', 'Fae', 'Magic', 'Fiction', 'New Adult']", "['Thriller', 'Mystery', 'Mystery Thriller', 'Audiobook', 'Fiction', 'Psychological Thriller', 'Crime']", "['Adventure', 'Mystery', 'Crime', 'Fiction', 'Mystery Thriller']", "['M M Romance', 'BDSM', 'Romance', 'Fantasy']", "['Autistic Spectrum Disorder', 'Science Fiction']", "['Science Fiction', 'Short Stories', 'Fiction', 'Space', 'Science Fiction Fantasy', 'Speculative Fiction', 'Adventure']", "['Science Fiction', 'Short Stories', 'Fiction', 'Adventure', 'Science Fiction Fantasy', 'Space', 'Novels']", "['Science Fiction', 'Short Stories', 'Fiction', 'Space', 'Science Fiction Fantasy', 'Space Opera', 'Audiobook']", "['Paranormal', 'Religion', 'LGBT', 'M M Romance']", "['Historical Fiction', 'Fantasy', 'Historical', 'Fiction', 'Paranormal', 'Adult', 'Historical Fantasy']", "['Novels', 'Fiction', 'Adventure', 'Teen', 'Young Adult', 'Science Fiction Fantasy', 'Speculative Fiction']", "['Novels', 'Teen', 'Adventure', 'Young Adult', 'Action', 'Fiction', 'Fantasy']", "['History', 'Nonfiction', 'Historical', 'Biography']", "['BDSM', 'M M Romance', 'Romance', 'Fae']", "['Fantasy', 'BDSM', 'M M Romance', 'Dark', 'Romance', 'Paranormal Romance', 'Paranormal']", "['Vampires', 'Horror']", "['Urban Fantasy', 'Fantasy', 'Action', 'Young Adult', 'Novels', 'Paranormal', 'Adventure']", "['Mystery', 'Novels', 'Murder Mystery', 'Young Adult', 'Mystery Thriller', 'Fiction', 'Thriller']", "['Contemporary', 'Novels', 'Romance', 'Drama', 'Military Fiction', 'Adult']", "['Thriller', 'Fiction', 'Mystery Thriller', 'Crime', 'Novels', 'Murder Mystery', 'Suspense']", "['Romance', 'Contemporary Romance', 'Fiction', 'New Age', 'Chick Lit', 'Cultural', 'Tragedy']", "['Fantasy', 'Dark', 'BDSM', 'Angels', 'M M Romance', 'Demons', 'Fantasy Romance']", "['M M Romance', 'Paranormal', 'Fantasy', 'BDSM', 'Romance', 'Paranormal Romance', 'Fae']", "['BDSM', 'Romance', 'M M Romance', 'Fantasy', 'Dark Fantasy', 'Fantasy Romance', 'Paranormal Romance']", "['Nonfiction', 'Biography']", "['Historical Fiction', 'Russia', 'Historical', 'Romance']", "['Fantasy', 'Romance', 'Fantasy Romance', 'Vampires', 'Magic', 'New Adult', 'Adult']", "['Crime', 'Thriller', 'Fiction', 'British Literature']", "['Fiction', 'Science Fiction', 'Science Fiction Fantasy', 'Novels', 'Space', 'Young Adult', 'Space Opera']", "['Greek Mythology', 'Mythology']", "['Thriller', 'Suspense', 'Mystery', 'Fiction']", "['Fantasy', 'Vampires', 'Science Fiction Fantasy', 'Adventure', 'Magic', 'Speculative Fiction', 'Epic']", "['M M Romance', 'Fantasy', 'BDSM', 'Fae', 'Mental Health', 'Fantasy Romance', 'Paranormal Romance']", "['Contemporary', 'Drama', 'Novels', 'Historical']", "['Novels', 'Drama', 'Young Adult', 'Fiction', 'Science Fiction Fantasy', 'Science Fiction', 'Speculative Fiction']", "['Thriller', 'Mystery', 'Crime', 'Audiobook', 'Suspense', 'Psychological Thriller', 'Mystery Thriller']", "['Drama', 'Contemporary', 'Novels']", "['Fantasy', 'Urban Fantasy', 'Magic', 'Adventure', 'Dragons', 'Science Fiction Fantasy', 'Fiction']", "['Love', 'Realistic Fiction', 'Fiction', 'Young Adult Romance', 'Love Story', 'Drama', 'Chick Lit']", "['Thriller', 'Christmas']", "['Drama', 'Contemporary', 'Novels', 'Fantasy', 'Science Fiction']", "['Mystery', 'Suspense']", "['Fantasy', 'Urban Fantasy', 'Vampires', 'Magic', 'Paranormal', 'Romance', 'Fiction']", "['Fiction', 'Mystery', 'Suspense', 'Contemporary']", "['Drama', 'Novels', 'Contemporary']", "['Fantasy', 'Epic Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Magic', 'Epic', 'High Fantasy']", "['Fantasy', 'Magic', 'Romance', 'Fiction', 'Science Fiction Fantasy', 'Adventure', 'High Fantasy']", "['Contemporary', 'Novels', 'Drama', 'Thriller', 'Mystery Thriller', 'Fiction', 'Mystery']", "['Fantasy', 'Romance', 'Fae', 'Fantasy Romance', 'Magic', 'High Fantasy', 'Fiction']", "['Magic', 'Fantasy', 'Science Fiction Fantasy', 'Epic Fantasy', 'High Fantasy', 'Epic', 'Fiction']", "['Fantasy', 'Science Fiction Fantasy', 'Speculative Fiction', 'Paranormal', 'High Fantasy', 'Novels', 'Magic']", "['Fantasy', 'Science Fiction Fantasy', 'Adventure', 'High Fantasy', 'Epic Fantasy', 'Magic', 'Fiction']", "['Science Fiction Fantasy', 'Fantasy', 'Novels', 'Fiction', 'Magic', 'Speculative Fiction', 'Epic Fantasy']", "['Fiction', 'LGBT', 'Queer', 'Classics', 'Gay', 'Gay Fiction', 'Literary Fiction']", "['Science Fiction Fantasy', 'Fantasy', 'Fiction', 'Epic', 'Novels', 'Magic', 'Epic Fantasy']", "['Drama', 'Novels', 'Crime', 'Thriller', 'Suspense']"]

4. author column¶

In [28]:
print(unique_values('author'))
['J.K. Rowling', 'Douglas Adams', 'Bill Bryson', 'J.R.R. Tolkien', 'Gary Paulsen', 'Delia Sherman', 'Zilpha Keatley Snyder', 'Edward P. Jones', 'John McPhee', 'Johanna Spyri', 'Frank Herbert', 'Bryce Courtenay', 'George Smoot', 'Tom Wolfe', 'Henry Miller', 'Henry James', 'Marguerite Duras', 'Kahlil Gibran', 'Robert Louis Stevenson', 'George Eliot', 'Gabriel García Márquez', 'Patrick Süskind', 'Robert A. Heinlein', 'Norton Juster', 'Don DeLillo', 'Thomas Pynchon', 'Joan Didion', 'Paul Auster', 'Jared Diamond', 'Robert D. Putnam', 'Nikola Tesla', 'Chuck Klosterman', 'Robert M. Pirsig', 'Naomi Klein', 'Leo Tolstoy', 'Ayn Rand', 'Billy Collins', 'Kevin Trudeau', 'Bernard Malamud', 'Anne Tyler', 'Philip Roth', 'Jon   Stewart', 'Jon Stewart', 'Buzz Bissinger', 'Neal Stephenson', 'Donald A. Norman', 'Paulo Coelho', 'Hiromu Arakawa', 'John Steinbeck', 'Ellen Raskin', 'Arthur Golden', 'Dan       Brown', 'Thomas J. Stanley', 'Donald J. Trump', 'George S. Clason', 'Trevanian', 'David McCullough', 'Pearl S. Buck', 'Eric Schlosser', 'Lisa See', 'John Grisham', 'Robert A. Caro', 'Steven D. Levitt', 'Carlos Ruiz Zafón', 'James Frey', 'John  Gray', 'Jean M. Auel', 'Michael   Lewis', 'Robert Greene', 'Steven Pressfield', 'Herodotus', 'Homer', 'William Shakespeare', 'Reduced Shakespeare Company', 'Euripides', 'Aeschylus', 'Sophocles', 'Aristophanes', 'Elie Wiesel', 'Mark Haddon', 'Beryl Markham', 'Annie Proulx', 'David    Allen', 'Ernesto Sabato', 'Ovid', 'Jon Krakauer', 'Jung Chang', 'Nelson DeMille', 'Jack London', 'Barbara Ehrenreich', 'Michel Foucault', 'Jane Austen', 'Thomas L. Friedman', 'Louisa May Alcott', 'Charles Dickens', 'Raymond Chandler', 'Daniel C. Dennett', 'Douglas R. Hofstadter', 'Stephen Hawking', 'Michael Cunningham', 'Karen Joy Fowler', 'John Perkins', 'Ernest Hemingway', 'Gustave Flaubert', 'Jeffrey Eugenides', 'Doris Kearns Goodwin', 'Dan Millman', 'Lance Armstrong', 'Truman Capote', 'Jeffery Deaver', 'Terry Pratchett', 'H.G. Wells', 'Orhan Pamuk', 'José Saramago', 'Wole Soyinka', 'Chris Anderson', 'Malcolm Gladwell', 'Harper Lee', 'Jonathan Swift', 'Geoffrey Chaucer', 'Monique Truong', 'Abdul Rahman Munif', 'Kim Stanley Robinson', 'Dave Pelzer', 'Neil Gaiman', 'Douglas Coupland', 'Ernest Becker', 'Howard Zinn', 'John Berger', 'Katherine Paterson', 'Tracy Chevalier', 'Tite Kubo', 'Daniel Defoe', 'Mark Twain', 'Frances Hodgson Burnett', 'Henry Hazlitt', 'Thomas Sowell', 'Unknown', 'Elizabeth von Arnim', 'E.M. Forster', 'Michael Pollan', 'Sarah Vowell', 'Ivo Andrić', 'Alan Brennert', 'John Rogers Searle', 'Isabel Allende', 'Louis de Bernières', 'Colleen McCullough', 'Mitch Albom', "Tim O'Brien", 'Nicholas Sparks', 'Jeanne DuPrau', 'Gwyn Hyman Rubio', 'Marisha Pessl', 'Janet Evanovich', 'L.M. Montgomery', 'Arthur Conan Doyle', 'Lois Lowry', 'Claire Messud', 'John Banville', 'Zadie Smith', 'Libba Bray', 'Anna Sewell', 'Ann Patchett', 'Graham Greene', 'Louise Fitzhugh', 'Ian Fleming', 'Jonathan Franzen', 'P.D. James', 'Miguel de Cervantes Saavedra', 'Ruth Prawer Jhabvala', 'Sarah Macdonald', 'Nicole Krauss', 'Tom Standage', 'Karen Armstrong', 'Dan Simmons', 'E.L. Konigsburg', 'Michael Chabon', 'J.D. Salinger', 'Bret Easton Ellis', 'Deepak Chopra', 'Scott Turow', 'Ann Coulter', 'Pete Hautman', 'Viktor E. Frankl', 'Amy Sedaris', 'David Sedaris', 'James Ellroy', 'Yann Martel', 'Nick Hornby', 'Sarah Dessen', 'Michael Herr', 'Suketu Mehta', 'Loung Ung', 'Ray Bradbury', 'John Irving', 'Helen Fielding', 'Jonathan Safran Foer', 'Matt Ridley', 'Glen David Gold', 'Jane Smiley', 'F. Scott Fitzgerald', 'Noah Gordon', 'Dava Sobel', 'Nathaniel Philbrick', 'Salman Rushdie', 'Dale Carnegie', 'Spencer Johnson', 'W. Chan Kim', 'Joseph Conrad', 'Frank McCourt', 'Jerome K. Jerome', 'Haruki Murakami', 'Fyodor Dostoevsky', 'Eric Carle', 'Dave Eggers', 'Geraldine Brooks', 'Stephen King', 'Kurt Vonnegut Jr.', 'Anita Diamant', 'Ann Finding', 'Ian McEwan', 'Terry Goodkind', 'Ken Follett', 'Graham Swift', 'Julia Child', 'Aldous Huxley', 'Lauren Weisberger', 'John Knowles', 'Anna Quindlen', 'Alice Hoffman', 'Jacquelyn Mitchard', 'Chris Bohjalian', 'Lalita Tademy', 'Billie Letts', 'Christina Schwarz', 'Ann-Marie MacDonald', 'Sue Miller', 'Sheri Reynolds', 'Edwidge Danticat', 'Jane Hamilton', 'Elizabeth Berg', 'Anita Shreve', 'Maeve Binchy', 'Ernest J. Gaines', 'Toni Morrison', 'Wally Lamb', 'Joyce Carol Oates', 'Rohinton Mistry', "Dinesh D'Souza", 'Edith Wharton', 'Oscar Wilde', 'Don Rosa', 'Diana Gabaldon', 'Roger Zelazny', 'Kathleen Winsor', 'Steve Berry', 'James D. Hornfischer', 'Jhumpa Lahiri', 'Ann Brashares', 'George Orwell', 'David Nasaw', 'Naguib Mahfouz', 'Ruud van der Rol', 'Lorraine Hansberry', 'Robert Penn Warren', 'Richard P. Feynman', 'Gordon S. Wood', 'Kenneth Grahame', 'Anton Chekhov', 'Ruthanne Lum McCunn', 'Tom Clancy', 'Steven Pinker', 'Chuck Palahniuk', 'Jorge Luis Borges', 'William Makepeace Thackeray', 'Alan Moore', 'V.S. Naipaul', 'Pat Barker', 'Wilkie Collins', 'Pablo Neruda', 'Michael Ondaatje', 'Hermann Hesse', 'Erich Maria Remarque', 'John Julius Norwich', 'Alan Paton', 'Sherman Alexie', 'Cormac McCarthy', 'Primo Levi', 'Emily Brontë', 'J.M. Coetzee', 'Sigrid Undset', 'David Malouf', 'Sebastian Faulks', 'Diana Wynne Jones', 'Allen Ginsberg', 'Roald Dahl', 'Kazuo Ishiguro', 'Sylvia Browne', 'Walter Scott', 'Joseph J. Ellis', 'Sylvia Plath', 'Patricia Cornwell', 'Saul Bellow', 'John Saul', 'James Patterson', 'Miguel Ruiz', 'Candace Bushnell', 'Jasper Fforde', 'Diane Johnson', 'Dante Alighieri', 'Rebecca Wells', 'Eckhart Tolle', 'David Foster Wallace', 'David Mitchell', 'Henri Charrière', 'Laura Esquivel', 'Sue Monk Kidd', 'Alexander McCall Smith', 'Murasaki Shikibu', 'John Scalzi', 'Philip K. Dick', 'John Dos Passos', 'Alexandre Dumas', 'Alexandre Dumas fils', 'Arturo Pérez-Reverte', 'Jeffrey Archer', 'Véronique Tadjo', 'Donald Miller', 'Barbara Kingsolver', 'Jacqueline Winspear', 'William S. Burroughs', 'Jeannette Walls', 'Tom Robbins', 'James Joyce', 'Azar Nafisi', 'Vladimir Nabokov', "Madeleine L'Engle", 'William Golding', 'Ford Madox Ford', 'Jaroslav Hašek', 'Michael Crichton', 'Annie Dillard', 'George Bernard Shaw', 'Franz Kafka', 'Sena Jeter Naslund', 'Hunter S. Thompson', 'Amy Tan', 'Dr. Seuss', 'Brian Boyd', 'T. Coraghessan Boyle', 'Elizabeth Hardwick', 'Mike  Davis', 'Robert Ludlum', 'Laura Ingalls Wilder', 'Maud Hart Lovelace', 'Orson Scott Card', 'Brian Jacques', 'Judi Barrett', 'Robin McKinley', 'Barbara Taylor Bradford', 'Donald Zochert', 'Lynne Truss', 'Mary Lawson', 'Al Gore', 'Gore Vidal', 'Ruth Reichl', 'Nikos Kazantzakis', 'Waris Dirie', 'Nora Ephron', 'Corinne Hofmann', 'Luis Sepúlveda', 'Anthony Burgess', 'Antoine de Saint-Exupéry', 'James Shapiro', 'Max Brooks', 'Darren Shan', 'Rodman Philbrick', 'Stefan Fatsis', 'D.C. Talk', 'Tucker Max', 'Slavomir Rawicz', 'Richard Bachman', 'Nicholas Evans', 'Marian Keyes', 'Fannie Flagg', 'Sophie Kinsella', 'Georg Wilhelm Friedrich Hegel', 'Plato', 'Jenny Nimmo', 'Catherine Coulter', 'Marjane Satrapi', 'Robert Kurson', 'Dave Barry', 'Matthew Pearl', 'Robert Jordan', 'Michelle Sagara', 'Steve Perry', 'Erica Jong', 'Milan Kundera', 'Barack Obama', 'Peter Hessler', 'Arundhati Roy', 'D.H. Lawrence', 'Jonathan Lethem', 'Italo Calvino', 'Wallace Stegner', "Robert C. O'Brien", 'James Clavell', 'Åsne Seierstad', 'Curtis Sittenfeld', 'Jeffrey D. Sachs', 'Denis Johnson', 'Kōbō Abe', 'Max Frisch', 'Jean-Paul Sartre', 'C.D. Payne', 'James D. Bradley', 'Louis Sachar', 'Tad Williams', 'John Guy', 'Alison Weir', 'Margaret George', 'Wisława Szymborska', 'Charlotte Brontë', 'M.M. Kaye', 'Tracy Kidder', 'Barbara W. Tuchman', 'Jim  Powell', 'Laurie R. King', 'Julie Andrews Edwards', 'Wilson Rawls', 'Greg Behrendt', 'Kim Edwards', 'Noel Streatfeild', 'Jack Kerouac', 'Umberto Eco', 'Sun Tzu', 'Ulysses S. Grant', 'Frank Portman', 'George R.R. Martin', 'Roger Lowenstein', 'Elizabeth Kostova', 'Joseph Heller', 'Walker Percy', 'E.B. White', 'Allan C. Weisbecker', 'Steve Martin', 'Walter Isaacson', 'Anne Lamott', 'Jodi Picoult', 'Charles Frazier', 'Jostein Gaarder', 'William Faulkner', 'Anaïs Nin', 'J. Maarten Troost', 'David K. Shipler', 'C.S. Lewis', 'Julia Alvarez', 'Iris Murdoch', 'Susan Cooper', 'Sinclair Lewis', 'John Eldredge', 'Francine Rivers', 'Karen Kingsbury', 'Raymond Carver', 'Tobias Wolff', 'Philip Gourevitch', 'Alice Walker', 'Chaim Potok', 'Robert McCammon', 'Robin Waterfield', 'John Updike', 'John Cheever', 'D.B.C. Pierre', 'Marilynne Robinson', 'Cynthia Voigt', 'Anne Rice', 'Kelley Armstrong', 'Albert Camus', 'Jacqueline Harpman', 'Iain M. Banks', 'Iain Banks', 'Ludwig Wittgenstein', "Eugene O'Neill", 'Luigi Pirandello', 'Sam Shepard', 'Marguerite Yourcenar', 'Tennessee Williams', 'Samuel Beckett', 'Nathaniel Hawthorne', 'Friedrich Nietzsche', 'Richard Ford', 'Louis-Ferdinand Céline', 'William T. Vollmann', 'Thomas Wolfe', 'Norman Mailer', 'Richard Brautigan', 'Eudora Welty', 'Anne Fadiman', 'Edward S. Herman', 'James A. Michener', 'John Grogan', 'Shirley Hazzard', 'Marcel Proust', 'Ira Levin', 'John Berendt', 'Carlos Castaneda', 'Daphne du Maurier', 'Rebecca West', 'Arthur Miller', 'Virgil', 'Horace Walpole', 'Mark Helprin', 'Jane Carruth', 'Lawrence Durrell', 'Carl Hiaasen', 'James Redfield', 'Maya Angelou', 'Zoë Heller', 'Christopher Paolini', 'Stuart Gilbert', 'Miriam Toews', 'Nancy Farmer', 'Gregory Maguire', 'Clamp', 'Tsugumi Ohba', 'Ursula K. Le Guin', 'Fuyumi Ono', 'Julie Powell', 'R. Scott Bakker', 'Raymond E. Feist', 'Tamora Pierce', 'Joyce Lankester Brisley', 'Katherine Dunn', 'Sylvia Nasar', 'Juliet Marillier', 'Andrew Solomon', 'Mercedes Lackey', 'Yasunari Kawabata', 'R.K. Narayan', 'Erich Fromm', 'Susanna Clarke', 'Mary Karr', 'Matthew Kneale', 'Halldór Laxness', 'Alistair MacLeod', 'William Maxwell', 'Alice Munro', 'Ryū Murakami', 'Bob Dylan', 'Carl R. Sams II', 'Victor Villaseñor', 'Rudolfo Anaya', 'Alan Lightman', 'Kresley Cole', 'Steve Eddy', 'Carrie Vaughn', 'O. Henry', 'Sidney Sheldon', 'Francesca Lia Block', 'Legs McNeil', 'Stendhal', 'Lord Dunsany', 'Johann Wolfgang von Goethe', 'Richard Dawkins', 'Jennifer Weiner', 'David Baldacci', 'Betty  Smith', 'Edward Albee', 'Virginia Woolf', 'Nicholas Christopher', 'Kate Mosse', 'James Luceno', 'Dean Koontz', 'Neale Donald Walsch', 'Jeanette Winterson', 'Joanne Harris', 'Kate Christensen', 'Barry Hughart', 'Art Spiegelman', 'Laurell K. Hamilton', 'Poppy Z. Brite', 'The Harvard Lampoon', 'Piers Anthony', 'Terry Brooks', 'Witold Gombrowicz', 'Karen Cushman', 'Herman Melville', 'Richard Wright', 'Edmond Rostand', 'Ann Rule', 'Katrina Kittle', 'Eric Hansen', 'Patricia Highsmith', 'Rex Pickett', 'Kaye Gibbons', 'Sheri Holman', 'Anne   Michaels', 'Albert Einstein', 'Iain Pears', 'John Milton', 'Ann Packer', 'Bill Simmons', 'Anthony Powell', 'Ron Chernow', 'Kathy Acker', 'Catherine Gilbert Murdock', 'Philippa Gregory', 'Mark Dunn', 'Richard   Preston', 'Chitra Banerjee Divakaruni', 'Kate Atkinson', 'Armistead Maupin', 'Colson Whitehead', 'Colson Whithead', 'Beverly Daniel Tatum', 'John Fowles', 'Agatha Christie', 'P.G. Wodehouse', 'Lorna Landvik', 'Isabel; Isabel Allende Margaret Sayers Peden (Translated By) Allende', 'Roddy Doyle', 'Alexis de Tocqueville', 'Pat Conroy', 'Martin Millar', 'Christopher Isherwood', 'Henry David Thoreau', 'Mary Doria Russell', 'Wilbur Smith', 'Eric Flint', 'Ralph Ellison', 'Mark Waid', 'Maureen Johnson', 'Daniel Quinn', 'Aleksandr Solzhenitsyn', 'James Baldwin', 'Antonia Fraser', 'Willa Cather', 'Robert Cormier', 'Michael Dorris', 'Kate Jacobs', 'Jeff Lindsay', 'Bram Stoker', 'Frank E. Peretti', 'Carl Sagan', 'Kip S. Thorne', 'Marguerite Henry', 'Enid Blyton', 'Gene Stratton-Porter', 'Amiri Baraka', 'bell hooks', 'Margaret Atwood', 'Jim Butcher', 'David Fishelson', "Patrick O'Brian", 'Charles Stross', 'John D. Simons', 'Simon Singh', 'Philip Pullman', 'Jonathan Littman', 'Sei Shōnagon', 'Stanisław Lem', 'Peter Kreeft', 'François Rabelais', 'Immanuel Kant', 'Daniel Keyes', 'T.A. Barron', 'Margaret Mitchell', 'Alice Randall', 'Thomas More', 'Ian Caldwell', 'Jerzy Kosiński', 'Mary Wollstonecraft Shelley', 'Christopher Marlowe', 'Tom Stoppard', 'Theodore Taylor', 'Bette Greene', 'Joe Simpson', 'Monica Ali', 'Chimamanda Ngozi Adichie', 'A.N. Roquelaure', 'Robert Graves', 'Martin Amis', 'David Eddings', 'Marion Zimmer Bradley', 'David Simon', 'John le Carré', 'William Arntz', 'Markus Zusak', 'Aristotle', 'Ivan Turgenev', 'George Lakoff', 'Seamus Heaney', 'Astrid Lindgren', 'Beatrix Potter', 'Anonymous', 'Voltaire', 'Edward Gibbon', 'Jennings Michael Burch', 'Meg Cabot', 'Caroline B. Cooney', 'Elizabeth Gilbert', 'Irvin D. Yalom', 'Simone de Beauvoir', 'David James Duncan', 'Maurice Sendak', 'Peter Straub', 'Lorrie Moore', 'Richard Powers', 'William Manchester', 'Patricia A. McKillip', 'Anne McCaffrey', 'Curtis Richards', 'Sherwood Smith', 'Robert E. Howard', 'Charlie Huston', 'Bill Willingham', 'Patrick Lencioni', 'Aesop', 'Herman Wouk', 'Joe Haldeman', 'Dennis Lehane', 'Karin Slaughter', 'Scott        Smith', 'Lee Child', 'William Goldman', 'Erik Larson', 'Mario Puzo', 'Rajiv Chandrasekaran', 'Edward W. Said', 'Cecily von Ziegesar', 'William Gibson', "Heather O'Neill", 'Jerry Spinelli', 'Mary Gaitskill', 'Monica Drake', 'William  Gibson', 'Grant Morrison', 'Warren Ellis', 'Brian Greene', 'Charles Darwin', 'Julian Jaynes', 'Watchman Nee', 'Jean Baudrillard', 'Stephen Chbosky', 'Jane Green', 'Judy Blume', 'Stephen R. Donaldson', 'Jacob Grimm', 'Federico García Lorca', 'Jenny Carroll', 'David Levithan', 'Rachel Cohn', 'Alain de Botton', 'James   McBride', 'Margaret Weis', 'Katharine McMahon', 'Edith Hamilton', 'Charles Bukowski', 'Al Franken', 'Hayao Miyazaki', 'Thomas  Harris', 'H. Rider Haggard', 'Douglas Clegg', 'William Blake', 'Edgar Allan Poe', 'John Hodge', 'Irvine Welsh', 'Günter Grass', 'Doris Lessing', 'Lewis Carroll', 'Michael Connelly', 'David Almond', 'Victor Hugo', 'Gail Carson Levine', 'Elizabeth George Speare', 'Epictetus', 'Snorri Sturluson', 'Alexandra Fuller', 'Scott Westerfeld', 'Lloyd Alexander', 'Mark Z. Danielewski', 'John Hodgman', 'Bill Watterson', 'John Barth', 'William Sleator', 'Russell Hoban', 'E.L. Doctorow', 'Søren Kierkegaard', 'Connie Willis', 'Simon Winchester', 'Betty MacDonald', 'Michael Savage', 'Arthur Nersesian', 'Junji Ito', 'Craig Thompson', 'Kenzaburō Ōe', 'Shūsaku Endō', 'David Weber', 'Karen Hesse', 'Dorothy Allison', 'Natsuo Kirino', 'Neil Strauss', 'Augusten Burroughs', 'Thomas Cahill', 'Adam Smith', 'Isaac Bashevis Singer', 'James M. Cain', 'Jan Guillou', 'Honoré de Balzac', 'Jen Lancaster', 'Nora Roberts', 'Daniel Goleman', 'Isak Dinesen', 'Danielle Steel', 'Russell Banks', 'Augustine of Hippo', 'James Tiptree Jr.', "Flann O'Brien", 'Donna Woolfolk Cross', 'Rachel Caine', 'John Hersey', 'Rachel Carson', 'William Martin', 'Hermann Broch', 'Walt Whitman', 'A.B. Yehoshua', 'Bob Woodward', 'Tim LaHaye', 'Amos Oz', 'Adam Hochschild', 'Mary  Stewart', 'Emma Goldman', 'Michael Ende', 'Eugène Ionesco', 'Alexander Pushkin', 'Mircea Eliade', 'Sarah Dunant', 'Michael  Wood', 'A.J. Jacobs', 'Rick Riordan', 'Cornelia Funke', 'Randy Shilts', 'Nicholson Baker', 'Paul Theroux', 'Trudi Canavan', 'Tom Perrotta', 'Georges Perec', 'Harry Crews', 'Raymond Queneau', 'Nikolai Gogol', 'Émile Zola', 'William Gaddis', 'Andrei Tarkovsky', 'George Saunders', 'Chip Kidd', 'Julian Rubinstein', 'Robert B. Cialdini', 'William  James', 'Niccolò Machiavelli', 'Elizabeth Hoyt', 'Christine Feehan', 'Edward Rutherfurd', 'Ernest Drake', 'Naomi Novik', 'Christopher Moore', 'Lynda Barry', 'Suetonius', 'Reginald Rose', 'Donna Tartt', 'Mary Balogh', 'Peter S. Beagle', 'Robert McCloskey', 'George Crile', 'Peter Singer', 'Michael Azerrad', 'Bernard Cornwell', 'Richard K. Morgan', 'Norah Vincent', 'Tony Horwitz', 'Luke Davies', 'Sam Harris', 'Kurt Eichenwald', 'Isaac Asimov', 'Cory Doctorow', 'Tony Judt', 'Nathan Englander', 'Simon Reeve', 'John Bunyan', "Bryan Lee O'Malley", 'Helen L. Taylor', 'Timothy Findley', 'Jeff Shaara', 'Richard Bach', 'Dashiell Hammett', 'Michael Moorcock', 'Norman Maclean', 'Douglas Preston', 'Robert Kirkman', 'Kevin Brockmeier', 'Newt Gingrich', 'Shel Silverstein', 'P.C. Cast', 'Kim Harrison', 'Annette Curtis Klause', 'Amelia Atwater-Rhodes', 'Karl Marx', 'Christopher Hitchens', 'Marcus Aurelius', 'Arthur Koestler', 'Walter Kirn', 'Michel de Montaigne', 'Shashi Tharoor', 'Maxine Hong Kingston', 'Evelyn Waugh', 'Malcolm Lowry', 'Eric Ives', 'Dodie Smith', 'W. Somerset Maugham', 'Elizabeth  George', 'Thomas Hardy', 'Will Durant', 'Bruce Feiler', 'David Hackett Fischer', 'James Herriot', 'Mary Roach', 'Janet Fitch', 'Tess Gerritsen', 'Robert M. Sapolsky', 'Marlo Morgan', 'Richard Paige', 'Ramsey Campbell', 'Lisa Gardner', 'Knut Hamsun', 'Clive Barker', 'Joyce Reardon', 'H.P. Lovecraft', 'Jules Verne', 'Margaret Wise Brown', 'Audre Lorde', 'Carolyn Keene', 'Greg Cox', 'T.S. Eliot', 'Anthony Bourdain', 'Masaru Emoto', 'Max Barry', 'Michio Kaku', 'Will Eisner', 'Jim Fergus', 'William Strunk Jr.', 'Richard Matheson', 'S.E. Hinton', 'Gregory David Roberts', 'Anya Seton', 'Jennifer Crusie', 'Sara Zarr', 'Melissa Bank', 'National Commission on Terrorist Attacks Upon the United States', 'Emma McLaughlin', 'Rudyard Kipling', 'Chris Ware', 'Geraldine McCaughrean', 'J.M. Barrie', 'Ron Roy', 'Thomas Mann', 'Brian L. Weiss', "Jun'ichirō Tanizaki", 'Stephen Briggs', 'Bruce Campbell', 'Clive Cussler', 'Robert Fulghum', 'Ruth Stiles Gannett', 'Friedrich Dürrenmatt', 'James M. McPherson', 'Alan Dean Foster', 'Ryūnosuke Akutagawa', 'Leil Lowndes', 'Stephen Crane', 'Tim Winton', 'Timothy Zahn', 'Drew Karpyshyn', 'George Lucas', 'Matthew Woodring Stover', 'John G. Neihardt', 'Johnny Cash', 'Woody Allen', 'Francis S. Collins', 'Darrel R. Falk', 'Joseph Campbell', 'Bob Spitz', 'Peter     Brown', 'J.R. Ward', 'Kathryn Lasky', 'Masamune Shirow', 'Chelsea Handler', 'Stephen R. Covey', 'Stephen M.R. Covey', 'Steven Johnson', 'C.S. Friedman', 'Stephen Jay Gould', 'Frederick Douglass', 'Joan Aiken', 'Susan         Hill', 'Rosamunde Pilcher', 'Kate DiCamillo', 'John Sandford', 'Melissa Kantor', 'Carson McCullers', 'Zora Neale Hurston', 'Will Ferguson', 'Eoin Colfer', 'Frances Burney', 'Chinua Achebe', 'Henrik Ibsen', 'Marilyn Manson', 'Donald Goines', 'Ludovico Ariosto', 'Pat Frank', 'Nevil Shute', 'Dalai Lama XIV', 'James Fenimore Cooper', 'Nassim Nicholas Taleb', 'Charles Burns', 'Kōji Suzuki', 'Lynsay Sands', 'Ilona Andrews', 'Keith Donohue', 'Juan Rulfo', 'Susanna Tamaro', 'Alison Bechdel', 'Charles C. Mann', 'Lincoln Child', 'Mervyn Peake', 'John     Nichols', 'L.A. Banks', 'Henning Mankell', 'Naomi Wolf', 'Thomas C. Foster', 'Francine Prose', 'John Boyne', 'Caleb Carr', 'Vikram Chandra', 'Rachel Simon', 'Craig Clevenger', 'Megan Whalen Turner', 'Peter Mayle', 'Michel Faber', 'Jacqueline Carey', 'James K. Morrow', 'Edgar Rice Burroughs', 'Diane Setterfield', 'Pauline Réage', 'Richard Llewellyn', 'Jack Finney', 'Michael Moore', 'Carol S. Dweck', 'Jack Vance', 'Edmund Morris', 'Gene Wolfe', 'Jonathan Coe', 'John Brunner', 'Robertson Davies', 'A.S. Byatt', 'Julian  May', 'John Colapinto', 'Robin McGraw', 'Christopher Priest', 'Dow Mossman', 'Jean Craighead George', 'Upton Sinclair', 'Stephenie Meyer', 'Newt Scamander', 'Jill Mansell', 'Jonathan Carroll', 'Emily Giffin', 'Paula Danziger', 'Donna VanLiere', 'Stephen E. Ambrose', 'Doug Stanton', 'Lois Lenski', 'Harold G. Moore', 'Martin Luther King Jr.', 'John Howard Griffin', 'Antony Beevor', 'Leon Uris', 'Ishmael Beah', 'David A. Adler', 'Ann Abramson', 'Eric J. Hobsbawm', 'Betty Mahmoody', 'Rebecca Coffey', 'Mary Higgins Clark', 'Donald Barthelme', 'V.C. Andrews', 'Lynne Rae Perkins', 'T.H. White', 'Harvey Pekar', 'Daniel Clowes', 'Salvador Plascencia', 'Sara Gruen', 'Colm Tóibín', 'Harold Abelson', 'Sharon Kay Penman', 'Robin S. Sharma', 'Harlan Coben', 'Irène Némirovsky', 'Greg Iles', 'Andrea Levy', 'David Gemmell', 'Frank Beddor', 'Walter Dean Myers', 'Jon Stone', 'Shelby Foote', 'Seamus Deane', 'Elizabeth Noble', 'Rob Bell', 'Emma Donoghue', 'Brandon Mull', 'Gordon Dahlquist', 'Robin Hobb', 'Minette Walters', 'Sarah Waters', 'E. Nesbit', 'Hannah  Green', 'Peter F. Hamilton', 'Julian Barnes', 'The Arbinger Institute', 'Gloria E. Anzaldúa', 'Sadegh Hedayat', 'Fernando Pessoa', 'D.M. Thomas', 'Robert Brody', 'Harville Hendrix', 'Rob Sheffield', 'Rainer Maria Rilke', 'Maria V. Snyder', 'Aimee Bender', 'Walter Van Tilburg Clark', 'David  Bradley', 'John Fante', 'Dorothy Parker', 'Simin Daneshvar', 'Hafez', 'Hans Christian Andersen', 'Firoozeh Dumas', 'Raymond Khoury', 'Marilyn French', 'Simon Beckett', 'Judith Viorst', 'Laura Schlessinger', 'Melissa Panarello', 'Holly Black', 'Harriet Beecher Stowe', 'Beatrice Sparks', 'Marya Hornbacher', 'Hubert Selby Jr.', 'Karen Russell', "Phillip O'Donnell", 'Homero Aridjis', 'Erin Gruwell', 'Tony Parsons', 'Garth Nix', 'John Charles Chasteen', 'Lois Duncan', 'Anna Gavalda', 'Margaret Mahy', 'Isobelle Carmody', 'Sara Ryan', 'Anne Bishop', 'Steven Gould', 'Julie Orringer', 'J. Sheridan Le Fanu', 'Tony Hillerman', 'Gerald Durrell', 'Henri Barbusse', 'Richard Yates', "Flannery O'Connor", 'Peter Watts', 'David Abram', "Bill O'Reilly", 'Ray Comfort', 'Benjamin Hoff', 'Anne Frank', 'Elizabeth Smart', 'Erin Hunter', 'Angela Carter', 'Bill Clinton', 'Ambrose Bierce', 'John Katzenbach', 'Greg Mortenson', 'Jenna Blum', 'David Liss', 'Pierre Choderlos de Laclos', 'Edeet Ravel', 'Maria Dermoût', 'Ko Un', 'Andy Warhol', 'G.K. Chesterton', "John O'Hara", 'Victoria Holt', 'Chris Crutcher', 'John Green', 'Larry Niven', 'R.A. Salvatore', 'Robert Lipsyte', 'Banana Yoshimoto', 'Nicolas Tredell', 'Gary Larson', 'Vikram Seth', 'Marsha Norman', 'Thomas Berger', 'Katie MacAlister', 'Kate Morgenroth', 'Fynn', 'Steve Almond', 'David Guterson', 'Nick Bantock', 'Sue Townsend', 'Siddharth Dhanvant Shanghvi', 'Pamela Dean', 'Gail Tsukiyama', 'Irwin Kula', 'Bart D. Ehrman', 'David Markson', 'Dennis Cooper', 'Dalton Trumbo', 'Rick Strassman', 'Terence McKenna', 'Roland Barthes', 'Dan Kindlon', 'Bertrand Russell', 'Giovanni Boccaccio', 'Milton Friedman', 'John   Reed', 'Hannah Arendt', 'Benjamin Franklin', 'Octavia E. Butler', 'Frank Miller', 'Louise Erdrich', 'Rhonda Byrne', 'John Gardner', 'Molière', 'S.F. Said', 'Michel Tournier', 'W.B. Yeats', 'Djuna Barnes', 'Chris Adrian', 'Julio Cortázar', 'Sharon Creech', 'Philip Yancey', 'Mario Vargas Llosa', 'Adolf Hitler', 'Judith Kerr', 'Anthony Hope', 'Adeline Yen Mah', 'Larry McMurtry', 'Jennifer Finney Boylan', 'Ildefonso Falcones', 'James Lee Burke', 'Tom Shales', 'Daniel       Mason', 'John Keegan', 'Paul  Johnson', 'Eric Lax', 'Steven Erikson', 'Mark Bowden', 'Yusuke Kishi', 'Alain Robbe-Grillet', 'B.F. Skinner', 'Hillary Rodham Clinton', 'Emerson Eggerichs', 'Tom Rath', 'Gavin de Becker', 'Andy Andrews', 'Rick Warren', 'Sheldon Vanauken', 'Daniel Todd Gilbert', 'J.G. Ballard', 'Max Lucado', 'James C. Dobson', 'Robert   Harris', 'Carlos Fuentes', 'Mario Benedetti', 'C.J. Cherryh', 'Hans Ruesch', 'James Welch', 'Wendell Berry', 'O.E. Rølvaag', 'B. Traven', 'David  Niven', 'Lao Tzu', 'Ming-Dao Deng', 'Koushun Takami', 'Robert Shea', 'T.E. Lawrence', 'Fritz Leiber', 'Robert Crais', 'Charlaine Harris', 'David Clement-Davies', 'Ntozake Shange', 'Carla Fine', 'T.J. Parsell', 'Romain Gary', 'Jacques Barzun', 'Zoya Pirzad', 'Michel Houellebecq', 'Kate Chopin', 'Kurt Cobain', 'Mrs. Oliphant', 'Enrique Vila-Matas', 'Pío Baroja', 'Marc Romano', 'Taylor Caldwell', 'Stefan Zweig', 'Jonathan Stroud', 'S.T. Joshi', 'Arthur Machen', 'Alejo Carpentier', 'Myles na Gopaleen', 'Ryszard Kapuściński', 'Javier Marías', 'Adriana Trigiani', 'E.F. Benson', 'L. Frank Baum', 'Carlton Mellick III', 'Eric S. Nylund', 'Jincy Willett', 'John Flanagan', 'Miguel Delibes', 'J.L. Carr', 'Peter Taylor', 'Brian Lumley', 'Derrick Jensen', 'Gioconda Belli', 'Anne Carson', 'Alessandro Baricco', 'Boris Akunin', 'E.H. Gombrich', 'Thomas S. Kuhn', 'Richard Atwater', 'Karl Popper', 'Françoise Sagan', 'Camilo José Cela', 'Walter Lord', 'Lois McMaster Bujold', 'Todd McCaffrey', 'Walter Tevis', 'Walter Moers', 'Johann David Wyss', 'Opal Whiteley', 'Ramón María del Valle-Inclán', 'F. Paul Wilson', 'John W. Dean', 'Noam Chomsky', 'Yukio Mishima', 'Jimmy McDonough', 'José Luis Sampedro', 'Stephen Baxter', 'Roberto Bolaño', 'Miguel de Unamuno', 'Daniel Pinkwater', 'Arthur C. Clarke', 'Mikael Niemi', 'Oliver Sacks', 'Shane Claiborne', 'Patricia C. Wrede', 'John Christopher', 'Robert Lynn Asprin', 'Bertolt Brecht', 'Jennifer Donnelly', 'Sheri S. Tepper', 'Greg Bear', 'Gary Zukav', 'Sue Grafton', 'Dean R. Koontz', 'Jon Katz', 'E.D. Baker', 'Lemony Snicket', 'Carlo Levi', 'John  Toland', 'Janette Oke', 'Karin Boye', 'Irene Hunt', 'Beverly Lewis', 'Harmony Korine', 'Mihály Csíkszentmihályi', 'Rabindranath Tagore', 'Elizabeth Peters', 'Gillian Flynn', 'Kelly Link', 'Glen Duncan', 'Stephen Fry', 'Andrew S. Grove', 'Giovannino Guareschi', 'Frantz Fanon', 'Torcuato Luca de Tena', 'Madeline Hunter', 'Alberto Moravia', 'N.H. Kleinbaum', 'Juan José Millás', 'Alvin Toffler', 'Karen Chance', 'Emily Dickinson', 'Mary Renault', 'Parker J. Palmer', 'Colin Wilson', 'Flora Rheta Schreiber', 'Donna Leon', 'Peter Berling', 'Frank Schätzing', 'Nancy Kress', 'Michelle Rowen', 'Brandon Sanderson', 'Andrzej Sapkowski', 'Ellen Kushner', 'China Miéville', 'Steven L. Kent', 'Nick Cave', 'Susanna Kaysen', 'Joseph Murphy', 'Heinrich Böll', 'June Rae Wood', 'John Connolly', 'Shaun Tan', 'Chip Heath', 'Muriel Spark', 'Rebecca Reisert', 'Robert T. Kiyosaki', 'Jamaica Kincaid', 'Manuel Mujica Lainez', 'Juan Carlos Onetti', 'Ian Rankin', 'Ariel Dorfman', 'David Lodge', 'André Gide', 'Gary Shteyngart', 'Emma Bull', 'Luke Rhinehart', 'Charles Webb', 'Dick Lehr', 'Sapphire', 'Amélie Nothomb', 'James T. Patterson', 'Mary Oliver', 'John Jakes', 'Jan Karon', 'Patricia Briggs', 'Matt Ruff', 'John Marsden', 'Ellen DeGeneres', 'Steve Coll', 'Tony Kushner', 'Lawrence Lessig', 'William  Boyd', 'Timothy Egan', 'Alexandra Ivy', 'Alexandra Stoddard', 'Jim Harrison', 'Farley Mowat', 'Martha Stout', 'Christine Warren', 'Linda Howard', 'Paulo Freire', 'Sara Donati', 'Jennifer Haigh', 'José Antonio Ramos Sucre', 'James Thurber', 'Alexandra Ripley', 'Susan Elizabeth Phillips', 'Susan Cheever', 'Lee Strobel', 'Jude Deveraux', 'Miguel Ángel Asturias', 'Stephen R. Lawhead', 'Erich Segal', 'Neil Postman', 'J.D. Robb', 'René Goscinny', 'Lynn Flewelling', 'Vladimir Voinovich', 'Carol Shields', 'Kaori Yuki', 'Anthony Swofford', 'Ibn Warraq', 'David Halberstam', 'A.M. Homes', 'Jacques Lacan', 'Steven Saylor', 'Allan Bloom', 'Adrian Conan Doyle', 'Yevgeny Zamyatin', 'Dee Brown', 'Kathryn Davis', 'W.G. Sebald', 'Laurence Sterne', 'Richard  Adams', 'Margery Allingham', 'Stephanie Barron', 'Alfred Bester', 'Frederick Buechner', 'Humphrey Carpenter', 'James C. Collins', 'Franklin W. Dixon', 'Howard Fast', 'Amitav Ghosh', 'Kent Haruf', 'Lian Hearn', 'Ursula Hegi', 'Khaled Hosseini', 'MacKinlay Kantor', 'Glen A. Larson', 'Anne Morrow Lindbergh', 'Jonathan Schell', 'Rex Stout', 'Josephine Tey', 'Vernor Vinge', 'Elena Ferrante', 'Mikhail Sholokhov', 'Beverly Cleary', 'William Blum', 'Lord Byron', 'Nella Larsen', 'Dave Ramsey', 'Candice Millard', 'Pete Hamill', 'Gary Jennings', 'Iris Johansen', 'Brother Yun', 'Philip Carlo', 'Oriana Fallaci', 'Karleen Koen', 'Imamu Amiri Baraka', 'Steven Weissman', 'Tove Jansson', "Ingri d'Aulaire", 'Victor Serge', 'Irving Stone', 'Apuleius', 'Francis A. Schaeffer', 'Sherwood Anderson', 'Pierre Bourdieu', 'Sigmund Freud', 'Patricia Marx', 'Elizabeth Flock', 'Koren Zailckas', 'Lionel Shriver', 'Starhawk', 'Carolly Erickson', 'John Twelve Hawks', 'Guy Delisle', 'Barbara Gowdy', 'Jim Goad', 'Ayaan Hirsi Ali', 'Patrick Carman', 'Samuel R. Delany', 'Meher Baba', 'Ludwig von Mises', 'James Allen', 'Anton Szandor LaVey', 'Melina Marchetta', 'Alan Alda', 'Liz Berry', 'Jaclyn Moriarty', 'Machado de Assis', "Edna O'Brien", 'Alice Sebold', 'Arnaldur Indriðason', 'Dino Buzzati', 'Paullina Simons', 'Linda Berdoll', 'Laura   Doyle', 'Trenton Lee Stewart', 'Ruth Rendell', 'Robin Jarvis', 'Robert James Waller', 'Alice A. Bailey', 'Annemarie Selinko', 'Sherrilyn Kenyon', 'Lauren Willig', 'Lin Yutang', 'Marshall Goldsmith', 'Italo Svevo', 'Peter Shaffer', 'Natalie Babbitt', 'Elmore Leonard', 'Brooks Hansen', 'Brad Meltzer', 'Jacques Derrida', 'Vince Flynn', 'H.G. Bissinger', 'Robin Cook', 'Judith Butler', 'Theodor W. Adorno', 'Shannon Hale', 'Jay McInerney', 'Jean Hegland', 'Kris Radish', 'Ferenc Molnár', 'Thomas E. Ricks', 'Nevada Barr', 'Omar Khayyám', 'Aimé Césaire', 'Ariana Franklin', 'Mary Hoffman', 'Belle de Jour', 'Bohumil Hrabal', 'Hergé', 'James Hogg', 'Alfred Hitchcock', 'Frank Warren', 'Eduardo Mendoza', 'Misha Glenny', 'Maxim Gorky', 'Simone Weil', 'John Vaillant', 'Harry Mulisch', 'Vasily Grossman', 'L.J. Smith', 'Jonah Goldberg', 'Caitlín Matthews', 'Mohsin Hamid', 'Lolly Winston', 'Deborah Crombie', 'Alastair Reynolds', 'James Kelman', 'John  Williams', 'Catherine Anderson', 'Don Piper', 'Randy Alcorn', 'William Hope Hodgson', 'Geoffrey Farrington', 'Carolyn Parkhurst', 'Gennifer Choldenko', 'Shirley Jackson', 'Cynthia Kadohata', 'Edward Bloor', 'Pam Muñoz Ryan', 'R.L. Stine', 'Ahdaf Soueif', 'Judith Thurman', 'Colette', 'L.P. Hartley', 'Julia Glass', 'Frank Delaney', 'Stephen Kinzer', 'Brian Keene', 'John Crowley', 'William Carlos Williams', 'Theresa Hak Kyung Cha', 'B.S. Johnson', 'Ward Moore', 'Kate Wilhelm', 'Fernando Sabino', 'Lynn Margulis', 'Luis Alberto Urrea', 'Steven Blush', 'Jane Yolen', 'Susan Casey', 'Val McDermid', 'Elizabeth Bowen', 'Lafcadio Hearn', 'Huey P. Newton', 'Hayden Herrera', 'Christie Dickason', 'Michael Largo', 'Malcolm X', 'Jeff Smith', 'James Rollins', 'Martin Heidegger', 'Scott Heim', 'James Jones', 'Arthur Phillips', 'Thornton Wilder', 'Jim Crace', 'Dara Horn', 'Meredith Ann Pierce', 'Stella Gibbons', 'Louis Aragon', 'Ann Radcliffe', 'Matthew Gregory Lewis', 'Jan Potocki', 'Eliza Parsons', 'Barry Hannah', 'Washington Irving', 'George R. Stewart', 'Roger Lancelyn Green', 'Katsuhiro Otomo', 'Akira Kurosawa', 'Scarlett Thomas', 'Marjorie M. Liu', 'Dorothy L. Sayers', 'Carolyn Meyer', 'Daniel Silva', 'Derek Walcott', 'Ian Kershaw', 'Luther Blissett', 'Jackie Collins', 'Alex   Sanchez', 'Brent Hartinger', 'M.F.K. Fisher', 'Anthony de Mello', 'Anthony Horowitz', 'Adolfo Bioy Casares', 'Robert Merle', 'John Shors', 'Hampton Sides', 'Arnold Lobel', 'Kiran Desai', 'Alan Taylor', 'Garth Ennis', 'John Wood', 'Paul Feig', 'Rory Stewart', 'Joel Osteen', 'Thich Nhat Hanh', 'Iris Chang', 'Robert Frost', 'David Henry Hwang', 'Kristin Gore', 'Elizabeth Moon', 'Stanley Karnow', 'Carl Bernstein', "Jamie O'Neill", 'Richard Siken', 'Nadine Gordimer', 'Paula Fox', 'Trina Paulus', 'Anthony Kiedis', 'Stephanie Kallos', 'Matt Groening', 'O.J. Simpson', 'Jonathan Haidt', 'Jhonen Vásquez', 'Paul Neilan', 'Heidi Julavits', 'Orlando Figes', 'Seneca', 'C. Vann Woodward', "James O'Barr", 'Lois P. Frankel', 'Joshua Ferris', 'Paul Rusesabagina', 'Sharon Shinn', 'Neal Asher', 'Susan Vreeland', 'Germaine Greer', 'Crockett Johnson', 'Steven Millhauser', 'Elif Shafak', 'Edmund Gosse', 'Victor Pelevin', 'A.A. Milne', 'Edward Abbey', 'Brian Herbert', 'Charlotte Perkins Gilman', 'Daniel H. Pink', 'Henry Fielding', 'Peter Tompkins', 'Maurice Druon', 'Christopher  Rice', 'S.M. Stirling', 'Gustav Meyrink', 'Krishna-Dwaipayana Vyasa', 'Leonard Peikoff', 'Milton Steinberg', "Wu Cheng'en", 'Assata Shakur', 'Donn Kushner', 'Robert Stallman', 'Johanna Sinisalo', 'G.J. Meyer', 'Martin Middlebrook', 'Tama Janowitz', 'Ben Okri', 'James Gunn', 'Budd Schulberg', 'Alton Brown', 'Amanda Quick', 'Bernhard Schlink', 'Tom McCarthy', 'James Lileks', 'Amulya Malladi', 'Kamala Markandaya', 'Harry Turtledove', 'René Daumal', 'Charles Bernard Nordhoff', 'Hilary Mantel', 'Michael   Shea', 'Eiji Yoshikawa', 'Clark Ashton Smith', 'Joe R. Lansdale', 'Guy Sajer', 'John Steakley', 'Martha Grimes', 'Frederick Manfred', 'Scott McCloud', 'Rose Tremain', 'John Galsworthy', 'Malika Oufkir', 'Jon McGregor', 'Tony DiTerlizzi', 'Alexander Masters', 'Bruce H. Wilkinson', 'David Bohm', 'Frank Conroy', 'Jim Davis', 'Margaret Peterson Haddix', 'Guy Gavriel Kay', 'Sergei Lukyanenko', 'Ron Hall', 'David Keirsey', 'Anne Rivers Siddons', 'V (formerly Eve Ensler)', 'Mary Elizabeth Haskell', 'Michael   Newton', 'Margaret Drabble', 'François Mauriac', 'Lisa Kleypas', 'Chetan Bhagat', 'Paul Stewart', 'Scott Beatty', 'Steve Alten', 'Vincent Bugliosi', 'Jeph Loeb', 'Melissa de la Cruz', 'Patricia MacLachlan', 'David M. Kennedy', 'David  Brooks', 'Sister Souljah', 'Eric Metaxas', 'Christopher W. Alexander', 'Benjamin Graham', 'Alex  Robinson', 'Jim Starlin', "Dennis O'Neil", 'Brian Augustyn', 'Darwyn Cooke', 'Joshua Harris', 'Ann McGovern', 'Julie Garwood', 'Richard Russo', 'Miroslav Krleža', 'Katie Roiphe', 'Christopher Paul Curtis', 'Jamie Fuller', 'Bentley Little', 'Michael G. Thompson', 'Penelope Fitzgerald', 'Dominique Lapierre', 'Kiran Nagarkar', 'Larry Kramer', 'Frederick Forsyth', 'Josh Kilmer-Purcell', 'Varlam Shalamov', 'Peter Carey', 'Pamela Aidan', 'Vardis Fisher', 'Julia Quinn', 'Niccolò Ammaniti', 'Laura Hillenbrand', 'Catholic Church', 'Emma Tennant', 'Lawrence Wright', "Frank  O'Connor", 'N. Scott Momaday', 'Jacquelyn Frank', 'Kennilworthy Whisp', 'Anton Myrer', 'Dorothy Dunnett', 'Ron McLarty', 'Donald Ervin Knuth', 'Ferrol Sams', 'Daniel Mendelsohn', 'Jack Campbell', 'James Meek', 'Daniel Woodrell', 'Giles Foden', 'Karen Marie Moning', 'Mahatma Gandhi', 'Michael Buckley', 'Julia Spencer-Fleming', 'James Agee', 'David Morrell', 'Mikhail Bulgakov', 'Katherine Neville', 'Miranda July', 'Nathanael West', 'Steve Kluger', 'Tiffanie DeBartolo', 'Lydia Davis', 'Eliyahu M. Goldratt', 'Harriet A. Washington', 'James Salter', 'W.J. Cash', 'Banksy', 'Gordon R. Dickson', 'Michelle Tea', 'Marisa de los Santos', 'James  Jones', 'Forrest Carter', 'Nancy Pearl', 'Emily Rodda', 'Diane Duane', 'Mary Robison', 'Kenneth Branagh', 'Merrill Markoe', 'Rush Limbaugh', 'Emil M. Cioran', 'Robert T. Bakker', 'Venedikt Erofeev', 'Randall Jarrell', 'Robert Newton Peck', 'C. Rajagopalachari', 'Gilles Deleuze', 'Vladimir Mayakovsky', 'T.R. Fehrenbach', 'Sherryl Jordan', 'Liz Jensen', 'Neal Gabler', 'Philip Kerr', 'Gene Luen Yang', 'John D. Fitzgerald', 'Charles Baxter', 'Jennifer  Lynch', 'Patricia B. McConnell', 'Sharon  Moalem', 'Carol Goodman', 'Éric-Emmanuel Schmitt', 'Luis Buñuel', 'Yoko Ono', 'Dana  Davidson', "Ngũgĩ wa Thiong'o", 'Steven Callahan', 'Joan Slonczewski', 'Chris Heimerdinger', 'James Lincoln Collier', 'Peter Jenkins', 'Avi', 'Karen Hancock', 'W. Phillip Keller', 'John Harwood', 'Ali Smith', 'Hella S. Haasse', 'A.W. Tozer', 'William Kent Krueger', 'Aleister Crowley', 'James Blish', 'Camara Laye', 'Ralph Waldo Emerson', 'William Dalrymple', 'Peter Høeg', 'Debi Pearl', 'Sylvia Brownrigg', 'Allan Folsom', 'Arthur Hailey', 'Arthur Ransome', 'Wallace Stevens', 'Anthony Trollope', 'K.A. Applegate', 'Lynne Reid Banks', 'Siri Hustvedt', 'Jon Scieszka', 'Lars Saabye Christensen', 'Michael Reaves', 'Ted Dekker', 'Jonathan Maberry', "P.J. O'Rourke", 'Michael Lowenthal', 'Mark Mathabane', 'Robert Holdstock', 'Peter Benchley', 'Qiu Xiaolong', 'Theodore Dreiser', 'J.P. Donleavy', 'Stephen Hunter', 'Velma Wallis', 'Jean Lee Latham', 'Władysław Szpilman', 'Paul Zindel', 'Marianne Wiggins', 'Mohammad Khatami', 'Arthur Rimbaud', 'علاء الأسواني', 'Kathy Reichs', 'Lisa Lutz', 'Radclyffe Hall', 'Toni Weschler', 'Melissa Wiley', 'Donna Hogan', 'Louise L. Hay', 'Judith McNaught', 'Robert W. Chambers', 'Bruce D. Perry', 'Penelope Lively', 'David Hume', 'Mo Hayder', 'Robert K. Massie', 'Boris Pasternak', 'Fred Gipson', 'William Lidwell', 'Karen      Rose', 'Chris   Elliott', 'Helen Dunmore', 'Shannon Ethridge', 'Berkeley Breathed', 'J.F. Powers', 'Patrick Hamilton', 'Witi Ihimaera', 'Taro Gomi', 'Grace Paley', 'Michael J. Fox', 'Joss Whedon', 'Simon Wiesenthal', 'Richard Paul Evans', 'Langston Hughes', 'Bill Peet', 'Craig Ferguson', 'David Frum', 'Fay Weldon', 'Sanaya Roman', 'Madeline Bruser', 'Jane Goodall', 'Emmuska Orczy', 'Margaret Davidson', 'Elizabeth McCracken', 'Mark Salzman', 'Pema Chödrön', 'Hester Browne', 'Stephen Greenblatt', 'Phyllis Fraser', 'Christopher Pike', 'Megan McCafferty', 'Frank W. Abagnale', 'Peter Hopkirk', 'C.J. Sansom', 'Adam Zamoyski', 'James Alexander Thom', 'Antonio Santa Ana', 'Alfred Lansing', 'Alan Hollinghurst', 'M.C. Beaton', 'Sandra Cisneros', 'Anchee Min', 'Leslie Feinberg', 'Helen Oyeyemi', 'J.I. Packer', "Frank O'Hara", 'Joan D. Vinge', 'Steven Brust', 'Chris Wooding', 'Mike Mignola', 'Mary Westmacott', 'Christoph Ransmayr', 'Glen Cook', 'Vālmīki', 'Maurice Leblanc', 'Gil Courtemanche', 'Gene Kranz', 'Daniel J. Levitin', 'Boris Vian', 'Harry Thompson', 'Tim Powers', 'Amin Maalouf', 'George MacDonald Fraser', 'Clare B. Dunkle', 'Ann Rinaldi', 'Frederick Barthelme', 'Charles  Williams', 'Roy  Jenkins', 'Cody McFadyen', 'Celia Rees', 'Jean Giono', 'J. Krishnamurti', 'Peter Godwin', 'Lawrence Neves', 'Jane Feather', 'Lynn Austin', 'Matthew Reilly', 'Steven  Hall', 'Margery Williams Bianco', 'J.R. Moehringer', 'Richard Laymon', 'Adam Fawer', 'Warren Buffett', 'Adam Langer', 'Julia Scheeres', 'Michael W. Kauffman', 'James L. Swanson', 'Sarah Kane', 'Gillian Bradshaw', 'Paul Scott', 'Spider Robinson', 'Ben Mikaelsen', 'Joseph Kanon', 'Jon Meacham', 'Harry Allard', 'D.J. MacHale', 'Kristen Britain', "Joseph O'Connor", 'Cecelia Ahern', 'Inger Christensen', 'Franz Wright', 'Ludwig Feuerbach', 'Edna Ferber', 'Peter  George', 'Ernest Shurtleff Holmes', 'Dorothy Gilman', 'Rosemary Sutcliff', 'Alistair MacLean', 'John Ashbery', 'John Berryman', 'Sappho', 'David Auburn', 'Doris Pilkington', 'Peter Gay', 'Mariama Bâ', 'Jack Whyte', 'Horace McCoy', 'P.L. Travers', 'Gregory Bateson', 'Harriet Ann Jacobs', 'Peter Hedges', 'César Aira', 'Andrey Kurkov', 'Joe Hill', 'Michelle Sagara West', 'Clarice Lispector', 'Christa Wolf', 'John Buchan', 'Virginia Lee Burton', 'Junzo Shono', 'Elliot Perlman', 'Jawaharlal Nehru', 'Pär Lagerkvist', 'Mark Millar', 'Simon R. Green', 'Hoda Barakat', 'Ben Marcus', 'Benedict Freedman', 'Roger Tory Peterson Institute', 'Lois Gladys Leppard', 'William H. Gass', 'Robert Coover', 'Robert McLiam Wilson', 'Christine Sparks', 'Peter Ford', 'Robert Bloch', 'Tanya Huff', 'Brian K. Vaughan', 'Elizabeth Gaskell', 'Elizabeth Lowell', 'Greg Egan', 'Jean Ferris', 'Richard Connell', 'Arthur Schnitzler', 'Toni Cade Bambara', 'Abolqasem Ferdowsi', 'Nicholas Pileggi', 'Antal Szerb', 'Alcoholics Anonymous', 'Rafael Sabatini', 'Ilya Ilf', 'Luo Guanzhong', 'Marjorie Kinnan Rawlings', 'Jean Plaidy', 'Alexandra Robbins', 'Judith Guest', 'Toshihiro Ono', 'Michael Bond', 'Alasdair Gray', 'Michelle Magorian', 'Abraham   Verghese', 'Stanley Wells', 'Gertrude Stein', 'Meg Rosoff', 'Liz Kessler', 'Thomas Paine', 'John Wyndham', 'Edith Pattou', 'Sara Shepard', 'Laura Wiess', 'Thomas Bernhard', 'Roberto Calasso', 'Andrea Camilleri', 'Andrea Lee Smith', 'Gerda Weissmann Klein', 'Jodi Lynn Anderson', 'Neal Shusterman', 'Walter M. Miller Jr.', 'American Psychiatric Association', 'Rani Manicka', 'Lucia St. Clair Robson', 'Andrew S. Tanenbaum', 'Aron Ralston', 'César Vallejo', 'Evangeline Walton', 'Henryk Sienkiewicz', 'Barry Denenberg', 'Daniel Yergin', 'Natsume Sōseki', 'Sattareh Farman Farmaian', 'Molly Ivins', 'Owen Wister', 'M.T. Anderson', 'Douglas Kennedy', 'Jane Roberts', 'Richard Carlson', 'Ivan Klíma', 'Wendy Mass', 'Ami McKay', 'Margaret Edson', 'Jorge Franco', 'Len Deighton', 'Vladimir Bartol', 'Ernesto Che Guevara', 'Keri Arthur', 'Jonathan Kellerman', 'Patrick Taylor', 'Norman F. Cantor', 'Dallas Willard', 'Brennan Manning', 'Foundation for Inner Peace', 'Laurence Bergreen', 'Jack   Black', 'Pramoedya Ananta Toer', 'Heidi Murkoff', 'Dietrich Bonhoeffer', 'Thomas Merton', 'Henri J.M. Nouwen', 'Oswald Chambers', 'Yaşar Kemal', 'Takemoto Tadao', 'M.J. Akbar', 'Jerry Dennis', 'Graham Joyce', 'Storm Constantine', 'Michael Cox', 'Jim Dwyer', 'Julia Donaldson', 'Katharine Kerr', 'Michael Gruber', 'Mende Nazer', 'Nalini Singh', 'Barbara Pym', 'Jay A. Parry', 'T. Colin Campbell', 'Xinran', 'L. Ron Hubbard', 'John Skipp', 'Debra Dean', 'Anna Banti', 'Julius Evola', 'Vladimir Lenin', 'Jack Ketchum', 'William Peter Blatty', 'Tony Robbins', 'Arbinger Institute', 'Carlo Collodi', 'William Styron', 'Mary Pope Osborne', 'Eleanor Coerr', 'Idries Shah', 'Julie Hearn', 'Keith Robertson', 'Charles B. MacDonald', 'Charles de Lint', 'David Harvey', 'Terri Blackstock', 'Oakley Hall', 'James Howe', 'Nicholas Monsarrat', 'William Strauss', 'Abbie Hoffman', 'Leon Trotsky', 'W.E.B. Du Bois', 'Albert Cohen', 'Karin Lowachee', 'A.J. Cronin', 'Robyn Carr', 'Pierre Broué', 'Andrei Bely', 'Steve Erickson', 'John Patrick Shanley', 'Stratis Myrivilis', 'Will Christopher Baer', 'Patrick Rothfuss', 'Winston Groom', 'Hans Westra', 'Patrick Dennis', 'Eduardo Galeano', 'Ariano Suassuna', 'William Diehl', 'Harry Braverman', 'Kirsten Miller', 'Edward M. Brecher', 'Ivy Compton-Burnett', 'Kij Johnson', 'Eileen Chang', 'Philip José Farmer', 'Helen DeWitt', 'Clifford D. Simak', 'Mo Willems', 'Doreen Cronin', 'Erskine Caldwell', 'Robert Musil', 'Gigi Levangie Grazer', 'Zitkála-Šá', 'Rose Macaulay', 'Jim Lovell', 'Hilary Putnam', 'Jean-Dominique Bauby', 'Susan  Kay', 'Kim Meeder', 'Osamu Dazai', 'Elizabeth Marie Pope', 'Jackie Kay', 'Susan Herrmann Loomis', 'Thomas King', 'Mordecai Richler', 'Rory Freedman', 'Cupcake Brown', 'Walter Greatshell', 'Clement Clarke Moore', 'Anna Akhmatova', 'P.D. Eastman', 'The Moosewood Collective', 'Willo Davis Roberts', 'Kenneth Pomeranz', 'Bill McKibben', 'Vladimir K. Arsenyev', 'Lee  Smith', 'Michael Lesy', 'Wangari Maathai', 'Patricia McCormick', 'Else Holmelund Minarik', 'Whitley Strieber', 'Catherynne M. Valente', 'Gail Godwin', 'Charles Baudelaire', 'Masashi Kishimoto', 'Elias Canetti', 'Baruch Spinoza', 'Bebe Moore Campbell', 'Carol Ryrie Brink', 'Brad Thor', 'Don Winslow', 'Geoff Ryman', 'Sogyal Rinpoche', 'Dara Joy', 'Phyllis Reynolds Naylor', 'Charles Robert Maturin', 'Diane L. Wolf', 'John C. Wright', 'Alfred Jarry', 'Leo Strauss', 'Andrea De Carlo', 'Ben Hamper', 'Mischa Berlinski', 'Glenway Wescott', 'Joris-Karl Huysmans', 'Susan Moody', 'Aldo Leopold', 'Greg  Horn', 'Stephen B. Oates', 'Walter Ralston Martin', 'Amanda Scott', 'Athol Fugard', 'Horace Kephart', 'Richard Taruskin', 'Rosa Luxemburg', 'Cinda Williams Chima', 'Vivian Vande Velde', 'Susan Beth Pfeffer', 'Larry Collins', 'Ingmar Bergman', 'Lee Woodruff', 'Eric Blehm', 'David  Irving', 'Sandra Kring', 'Euclid', 'Obert Skye', 'Jane Bowles', 'Catherine Ryan Hyde', 'Naomi Shihab Nye', 'Roméo Dallaire', 'Amy Bloom', 'Paul E. Johnson', 'Christian Kracht', 'Ed Wood', 'Danilo Kiš', 'Thrity Umrigar', 'Kenneth J. Harvey', 'Frederik Pohl', 'Lucy Mack Smith', 'Patricia S. Daniels', 'Thomas Tryon', 'Jean Merrill', 'Roland Topor', 'Michael Slade', 'Sarah Monette', 'Elfriede Jelinek', 'Lloyd C. Douglas', 'Jenny McCarthy', 'Sabahattin Ali', 'Gene Edwards', 'Bertrand R. Brinley', 'Cynthia Lord', 'Jude Morgan', 'William  Sloane', 'Ted Chiang', 'Joshilyn Jackson', 'Richard J. Herrnstein', 'Ismail Kadare', 'Charles M. Sheldon', 'Peter; Horrie Chris Chippindale', 'Lilith Saintcrow', 'Mary Wollstonecraft', 'Hitomi Kanehara', 'Edward Eager', 'Susan Wise Bauer', 'Sandra Dallas', 'David Seltzer', 'Willa Shalit', 'Anna Funder', 'Mikhail Lermontov', 'Peg Kehret', 'Claire Fontaine', 'Richard E.  Nisbett', 'John Burdett', 'Adrian Tomine', 'Sarra Manning', 'Elizabeth Brundage', 'Dan Chaon', 'Lynn H. Nicholas', 'Slavenka Drakulić', 'Leif Enger', 'Elizabeth Wurtzel', 'Leigh Nichols', 'Carol Ann Lee', 'Jonathan Blum', "Maggie O'Farrell", 'Alexei Panshin', 'Ethel Lilian Voynich', 'Theodora Kroeber', 'Ágota Kristóf', 'Howard Marks', 'Jeff VanderMeer', 'Isaac Newton', 'Bryan Davis', 'Sara Douglass', 'Andrew Holleran', 'John Darnton', 'Mercè Rodoreda', 'Debbie Macomber', 'Rigoberta Menchú', 'Alan Sillitoe', 'Ralph Moody', 'Ann M. Martin', "Scott O'Dell", 'Linda Hogan', 'Chris Kuzneski', 'Botan', 'David Brin', 'Erma Bombeck', 'Peter    Cameron', 'Richelle Mead', 'Ha Jin', 'Monica Holloway', 'Richard L. Bushman', 'Penelope Ashe', 'Herbert R. Kohl', 'Kathryn Wesley', 'Tana French', 'Sarah Weeks', 'Wess Roberts', 'David Zane Mairowitz', 'Jacqueline Susann', 'Kate Brian', 'John Muir', 'Linda Crew', 'Michael Corbett', 'Paul Stamets', 'Barry Unsworth', 'Anne Moir', 'Olaudah Equiano', 'Montserrat Roig', 'Robert Munsch', 'Mary Monroe', 'Sean Hannity', 'Ernst Jünger', 'Poul Anderson', 'Giannes Ritsos', 'Charles Martin', 'J.R. Ackerley', 'Richard B. Wright', 'Valery Bryusov', 'Clarissa Pinkola Estés', 'Ann  Benson', 'Herman Raucher', 'Gloria Whelan', 'Alex Garland', 'Colin Cotterill', 'Paul Bowles', 'Kevin Kelly', 'Bruno Schulz', 'Esther Hicks', 'Natsuki Takaya', 'Cesare Pavese', 'John Bowe', 'Régine Pernoud', 'Maria Dahvana Headley', 'E.T.A. Hoffmann', 'Gilda Radner', 'Stuart Hill', 'Frank B. Gilbreth Jr.', 'Monica Furlong', 'Peter Matthiessen', 'Ned Vizzini', 'Alan Weisman', 'Kentaro Miura', 'Brenda Ueland', 'Kingsley Amis', 'Richard Price', 'M. Ageyev', 'Virginia Euwer Wolff', 'Myla Goldberg', 'Abigail Thomas', 'Jacques Cazotte', 'Robert Silverberg', 'Jerome Lawrence', 'Tom Brown Jr.', 'David Hajdu', 'Stephen  Elliott', 'James Twining', 'Ivan Goncharov', 'Joyce Meyer', 'Leora Skolkin-Smith', 'Peter M. Senge', 'M.R. James', 'Sigurd F. Olson', 'J.G. Farrell', 'Driss Chraïbi', 'Joseph  Delaney', 'Cassandra Clare', 'Ross Lockridge Jr.', 'Melanie Rawn', 'Jack Schaefer', 'Charles Portis', 'Henry Bellamann', 'Terry Trueman', 'Paul A.M. Dirac', 'Jerry Bridges', 'Thucydides', 'Wei Hui', 'Robert Olen Butler', 'Elizabeth Haydon', 'Georgette Heyer', 'Kyōichi Katayama', 'Suzanne Collins', 'Joan Copjec', 'Allan Pease', 'Vonda N. McIntyre', 'Kane X. Faucher', 'Matsuri Hino', 'Ellen Schreiber', 'Kerrelyn Sparks', 'Kate Forsyth', 'Stephen Laws', 'Michael Dummett', 'Ayi Kwei Armah', 'Ama Ata Aidoo', 'Anna Lee Waldo', 'Robert J. Sawyer', 'Jean Genet', "Louis L'Amour", 'Jeanne Birdsall', 'Shirley Ann Grau', 'Chris Baldick', 'William  Kennedy', 'John P. Marquand', 'Deanna Raybourn', 'Mary Downing Hahn', 'George MacDonald', 'Sheridan Hay', 'George Lippard', 'Ezra Pound', 'Diane Mott Davidson', 'Whitney Otto', 'Heinrich Harrer', 'Don Freeman', 'Reynolds Price', 'Nicola Griffith', 'Ellen Hopkins', 'Dana Stabenow', 'Maria McCann', 'James H. Cone', 'Ann Fairbairn', 'Julie Anne Peters', 'Chester Himes', 'Bob  Greene', 'Walter Farley', 'Donald E. Westlake', 'Chris Stewart', 'Marc Bojanowski', 'Lisa Jackson', 'Francisco Jiménez', 'Yamamoto Tsunetomo', 'Kathleen McGowan', 'Ian McDonald', 'Ngaio Marsh', 'Ellen Gilchrist', 'Deborah Howe', 'Uwe Timm', 'Jonis Agee', 'Hisaya Nakajo', 'Esther Freud', 'Barbara Park', 'Kimberly Raye', 'Derek Landy', 'R. Buckminster Fuller', 'Founding Fathers', 'Suzette Haden Elgin', 'Kadir Nelson', 'Gavin Baddeley', 'Ferdinand de Saussure', 'Philip Reeve', 'Tasha Alexander', 'Ian MacDonald', 'Vikas Swarup', 'Claude  Brown', "John O'Farrell", 'Laura Whitcomb', 'Lori Wick', 'Maryanne Wolf', 'Rupert Thomson', 'Paul Monette', 'Angela Alcorn', 'Nicholas Gage', 'Robin Jones Gunn', 'Lewis Grassic Gibbon', 'Edgar Lee Masters', 'Lorenzo Carcaterra', 'Stephen Dunn', 'Jay Anson', 'Taeko Kōno', 'Patrick Leigh Fermor', 'Mike Resnick', 'Lisa M. Klein', 'Bill Martin Jr.', 'Joey Goebel', 'Lewis Thomas', 'Klaus Kinski', 'Eva Ibbotson', 'Leonardo Sciascia', 'Robert Specht', 'William Nicholson', 'Michelle Paver', 'L.A. Meyer', 'Catherine Jinks', 'John Bellairs', 'Pauline Gedge', 'James W. Loewen', 'Wayne Johnston', 'Mary Elizabeth Braddon', 'Edward Bellamy', 'Luanne Rice', 'Gertrude Chandler Warner', 'Voline', 'Junot Díaz', 'Robert Woodruff Anderson', 'C.E. Murphy', 'Li Cunxin', 'Anne Brontë', 'Jim Thompson', 'Friedrich A. Hayek', 'Eamon Collins', 'Barbara Erskine', 'Lothar-Günther Buchheim', 'Surya Das', 'Desmond Bagley', 'Nisargadatta Maharaj', 'Mrs. Henry Wood', 'Gary Ezzo', 'Audie Murphy', 'عباس معروفی', 'Morgan Llywelyn', 'E. Lockhart', 'Lauren Myracle', 'Michael McDowell', 'Timothy Dexter', 'Sam McBratney', 'Jim Marrs', 'Cookie Mueller', "Darren O'Donnell", 'Kathy Tyers', 'Bruce Sterling', 'Vera Bouteneff', 'Hanif Kureishi', 'Nancy Holder', 'John Maynard Keynes', 'Elvia Alvarado', 'Rumi (Jalal ad-Din Muhammad ar-Rumi)', 'Adrienne Rich', 'Peter Spier', 'David Macaulay', 'Lawrence Watt-Evans', 'Jack Spicer', 'Algernon Blackwood', 'S. Michael Wilcox', 'Melissa Marr', 'B.H. Liddell Hart', 'Olive Ann Burns', 'Michael Swan', 'George P. Pelecanos', 'Osama bin Laden', 'Ezra Jack Keats', 'Mildred D. Taylor', 'John Kennedy Toole', 'Tatyana Tolstaya', 'M.H. Abrams', 'Carol Plum-Ucci', "Chris d'Lacey", 'Alan Bennett', 'Ted Hughes', 'Daniel Okrent', 'James Siegel', 'Tim Pat Coogan', 'Steve Holland', 'Stef Penney', 'Miklós Nyiszli', 'Deborah Rodriguez', 'William H. McNeill', 'Gabrielle Zevin', 'Phil Rickman', 'James H. Schmitz', 'Chris Mooney', 'Sarah Hall', 'Heather Vogel Frederick', 'Imre Kertész', 'Jordan Sonnenblick', 'Nelson Mandela', 'David Hasselhoff', 'Elizabeth Fox-Genovese', 'Suzanne Strempek Shea', 'Richard J. Evans', 'Murray Bail', 'Nicci French', 'Michael A. Stackpole', 'Edith Pargeter', 'Ellis Peters', 'Milorad Pavić', 'Elizabeth Chandler', 'Betsy Brannon Green', 'Maria D. Wilkes', 'Judith Levine', 'Richard Bausch', 'Joseph Smith Jr.', 'Randy Singer', 'Deeanne Gist', 'Harry Harrison', 'Camilo Mejia', 'Nancy Springer', 'Barry Hines', 'Tetsuko Kuroyanagi', 'Glenn Beck', 'Johnny Damon', 'Fyodor Dostoyevsky', 'Rumiko Takahashi', 'Spike Milligan', 'Conn Iggulden', 'Ronald Wright', 'Arkady Strugatsky', 'Tony Cohan', 'Sebastian Fitzek', 'Sarah Turnbull', 'Hiroyuki Nishigaki', 'Joan Lowery Nixon', 'Wendelin Van Draanen', 'Alasdair MacIntyre', 'Michelle Richmond', 'Ken Kesey', 'Catherine Fisher', 'Owen Beattie', 'Graciliano Ramos', 'Harold Pinter', 'Eric Frank Russell', 'Grace Livingston Hill', 'Jack McDevitt', 'Zoe Trope', 'K.J. Parker', 'Diane Lee Wilson', 'Wilhelm Reich', 'Elizabeth Forsythe Hailey', 'Mick Foley', 'Cristina Page', 'Alex Berenson', 'Fernando Vallejo', 'Ken Grimwood', 'Patti Smith', 'Kathe Koja', 'Peter David', 'Walt Disney Company', 'Hugh Johnson', 'E.D.E.N. Southworth', 'Ruth Elwin Harris', 'Deb Caletti', 'Sara Paretsky', 'Abraham Joshua Heschel', 'Kate Grenville', 'M. Scott Peck', 'Brady Udall', 'Billie Sue Mosiman', 'Nancy E. Turner', 'Sonya Hartnett', 'Mary Norton', 'Grant Naylor', 'Martha N. Beck', 'Johanna Lindsey', 'Nelson Algren', 'Jill Murphy', 'W.W. Jacobs', "Stewart O'Nan", 'Laura Lippman', 'Cressida Cowell', 'Linnea Sinclair', 'Lurlene McDaniel', 'Gerald N. Lund', 'Cynthia Leitich Smith', 'john-berger', 'Kim MacQuarrie', 'Joachim Fest', 'Percival Everett', 'Angie Sage', 'Jean de Brunhoff', 'Ramachandra Guha', 'Og Mandino', 'Elizabeth Knox', 'Fazil Iskander', 'Michel-Rolph Trouillot', 'Phaidon Press', 'Svetlana Alexievich', 'Melissa Fay Greene', 'Harun Yahya', 'Judith Lindbergh', 'Meša Selimović', 'Philip G. Zimbardo', 'Robert Wilson', 'Andre Dubus III', 'Laura Kinsale', 'Caroline Finkel', 'Jim Stovall', 'Kay Redfield Jamison', 'Matilde Asensi', 'Muhammad Asad', 'T. Chris Martindale', 'Stephanie Laurens', 'Frank Bruce Lamb', 'Henry Roth', 'Chingiz Aitmatov', 'Booth Tarkington', 'Rosemary Radford Ruether', 'Dylan Thomas', 'Antoni Libera', 'Timothy Ferriss', 'Samantha Power', 'Helene Hanff', 'Arnold J. Toynbee', 'Liza Dalby', 'Irmgard Keun', 'Nancy Mitford', 'R.F. Delderfield', 'Thomas N. Scortia', 'Bruce Benderson', 'Virginie Despentes', 'Zakes Mda', 'Vera Brittain', 'Thomas Keneally', 'Leo Lionni', 'Joyce Cary', 'James Stephens', 'Lucy M. Boston', 'David Chacko', 'Coleen Murtagh Paratore', 'Larry Doyle', 'Dionne Brand', 'Cheryl Richardson', 'Sonia Sanchez', 'Robert  Stone', 'Lawrence Block', 'Humphrey P. Rang', 'Richard A. Clarke', 'Raoul Vaneigem', 'Sarah  Young', 'Guy Debord', 'Graham McNeill', 'José Donoso', 'Donald Kagan', 'Bjørn Lomborg', 'Brian W. Aldiss', 'Peter A. Levine', 'Susan Howe', 'John Stuart Mill', 'Adrian Nicole LeBlanc', 'Amanda Brown', 'Mercer Mayer', 'Rena Kornreich Gelissen', 'Elaine Pagels', 'William M. Gaines', 'Richard Brinsley Sheridan', 'Lew Wallace', 'Pam England', 'Jeff Kinney', 'Wayne W. Dyer', 'Ruth Beebe Hill', 'Alex Kava', 'Julien Gracq', 'J. Philip Newell', 'Alex  Ross', 'Alison Croggon', 'Jim Dodge', 'Joseph Joffo', 'Sara Wheeler', 'Vincent van Gogh', 'Louis Bromfield', 'Michael Mann', 'James Herbert', 'Per Petterson', 'Tracey West', 'Franz Werfel', 'Rajaa Alsanea', 'Deanna Draper Buck', 'Queen Noor', 'Piers Paul Read', 'William H. Hallahan', 'Samuel Shem', 'Louise Rennison', 'Graham Oakley', 'R.D. Laing', 'Charles Brockden Brown', 'Robert Bolt', 'Silvia Federici', 'Michael Parenti', 'Alice Notley', 'John Marks', 'Marnie Old', 'Adèle Lang', 'Eloise Jarvis McGraw', 'Robert S. McGee', 'Erskine Childers', 'Kim Paffenroth', 'Guy Vanderhaeghe', 'Immaculée Ilibagiza', 'Jennifer L. Holm', 'Susan Straight', 'Brian Friel', 'Better Homes and Gardens', 'Jack Weyland', 'Marcy Dermansky', 'Ji-li Jiang', 'David Attenborough', 'Nick Tosches', 'Suzanne Brockmann', 'Pierre Boulle', 'Harlan Ellison', 'Plutarch', 'Thomas Pakenham', 'Michael Flynn', 'David King', 'Samuel Richardson', 'Neil Sheehan', 'Ellen Fein', 'Jorge Amado', 'Elizabeth Goudge', 'Jack  Cavanaugh', 'Chris Van Allsburg', 'H.A. Rey', 'Victoria Hanley', 'Mark Peter Hughes', 'Tom Sharpe', 'Rob Thurman', 'James P. Blaylock', 'MaryJanice Davidson', 'Elizabeth Enright', 'John Neufeld', 'H.R. McMaster', 'Väinö Linna', 'C.S. Forester', 'Michael Bialys', 'Dave King', 'Rich Shapero', 'Tillie Olsen', 'Loretta Chase', 'Dennis L. McKiernan', 'Leopold von Sacher-Masoch', 'Jack Canfield', 'Kenneth Oppel', 'Roy  Lewis', 'Richard Armour', 'Keri Smith', 'David  Jones', 'Ted Kerasote', 'William Horwood', 'Yoshihiro Togashi', 'Theo LeSieg', 'Safiur Rahman Mubarakpuri', 'Dean Hughes', 'Edwin A. Abbott', 'John D. MacDonald', 'James L. Ferrell', 'Stephen E. Robinson', 'William Craig', 'Karel Čapek', 'Georges Bataille', 'Frans G. Bengtsson', 'Eric Jager', 'Andrew Clements', 'Laurie Halse Anderson', 'Bodie Thoene', 'Mark Spragg', 'Pamela Des Barres', 'Theodor Fontane', 'Marianne Curley', 'Blue Balliett', 'Mary Novik', 'Paule Marshall', 'Gabrielle Vincent', 'Doug Wright', 'Gaelen Foley', 'J. Edwin Orr', 'Jane Werner Watson', 'Geoffrey C. Ward', 'Andre Norton', 'Nando Parrado', 'John Elder Robison', 'John  Gardner', 'Frank De Felitta', 'Chet Raymo', 'Katharine Weber', 'Keri Hulme', 'Dennis Lee', 'Robert Goddard', 'Humphrey Cobb', 'J.A. Jance', 'Alexandra David-Néel', 'Eugenio Montale', 'Jo Nesbø', 'Olivia Manning', 'Edward St. Aubyn', 'Hans Fallada', 'Willem Frederik Hermans', 'William March', 'Nigella Lawson', 'Rachel Johnson', 'Nancy Clark', 'James Barclay', 'Rick Bragg', 'Connie May Fowler', 'I.A. Ibrahim', 'Mo Yan', 'Otfried Preußler', 'Margaret Mazzantini', 'Robert  Morrison', 'Kenneth Patchen', 'Mary LeBar', 'David Shannon', 'Ruskin Bond', 'Ludwig Bemelmans', 'Gena Showalter', 'Laurie Faria Stolarz', 'David   Deutsch', 'Michael Robotham', 'Montague Summers', 'Karen Connelly', 'Gaston Leroux', 'Frances Mayes', 'Nega Mezlekia', 'Michelle    Moran', 'Gary Brandner', 'James E. Talmage', 'Ann Granger', 'Colin Thompson', 'Wallace Breem', 'P.C. Hodgell', 'Bolesław Prus', 'Gregory McDonald', 'Glenn Tucker', 'John Gunther', 'Lucia Berlin', 'Tabitha King', 'Max Apple', 'Alisa Valdes', 'Zenna Henderson', 'R.A. Lafferty', 'David  Marshall', 'Robb White', 'Pamela Anderson', 'Ciro Alegría', 'Michael Marten', 'Magda Szabó', 'Will Thomas', 'Brother Lawrence', 'Valerie Tripp', 'Connie Rose Porter', 'David Marusek', 'Margaret Laurence', 'Stewart Hall Holbrook', 'Janette Sebring Lowrey', 'John Riddell', 'Kristiana Gregory', 'Robert Arthur', 'Carola Dunn', 'Lori Foster', 'Robert Walser', 'Isla Dewar', 'Ki Longfellow', 'Sloan Wilson', 'Brian W. Kernighan', 'Sandra Boynton', 'August Wilson', 'Eugenie Clark', 'Tim Burton', 'Michael Drosnin', 'Mineko Iwasaki', 'Jordan Belfort', 'Fidel Castro', 'George Dawes Green', 'Hal Clement', 'Olaf Stapledon', 'Mulk Raj Anand', 'Denton Welch', 'Robert Fanney', 'Elsa Morante', 'Alexandra Potter', 'George Friedman', 'Heather Brewer', 'P.D. Ouspensky', 'Katherine A. Dettwyler', 'Naoki Urasawa', 'Dai Sijie', 'Ernest K. Gann', 'Linda Yablonsky', 'Tsao Hsueh-Chin', 'George Grossmith', 'Rosario Castellanos', 'Nien Cheng', 'Olga Tokarczuk', 'Russell Ash', 'Guy Endore', 'Theodore Sturgeon', 'Richard       Mason', 'Rick Atkinson', 'Bethany Hamilton', 'Lama Milkweed L. Augustine', 'Philippa Pearce', 'Andre Coleman', 'Kenn Kaufman', 'Simone Elkeles', 'Alex Flinn', 'Pat Rodegast', 'Keith L. Moore', 'Alex Haley', 'Jean Vanier', 'Laurie Viera Rigler', 'John Bayley', 'James Salant', "Michael D. O'Brien", 'Hjalmar Söderberg', 'Alan W. Watts', 'Martin Buber', 'Arlene Mosel', 'Irving Wallace', 'Vicki Hendricks', 'Jim  Lewis', 'Maria S. Barbo', 'John Dominic Crossan', 'Barbara Hambly', 'Gary D. Schmidt', 'Tatiana de Rosnay', 'Joseph Krumgold', 'Leo Marks', 'Benoît B. Mandelbrot', 'Stephen Puleo', 'Corrie ten Boom', 'Antonio Tabucchi', 'John J. Nance', 'Marie-Louise von Franz', 'Diana Palmer', 'Alessandro Manzoni', 'Lisa Ann Sandell', 'Mortimer J. Adler', 'Tanith Lee', 'Tara Bray Smith', 'Ally Carter', 'Don Imus', 'Mark R. Levin', 'Barbara Garland Polikoff', 'Carlos Drummond de Andrade', 'Norman Doidge', 'Eugenia Price', 'Salley Vickers', 'Greil Marcus', 'Anne Digby', 'Ivan Doig', 'Helen Hooven Santmyer', 'Jack Yeovil', 'Pinkwater', 'Keith Waterhouse', 'Megan McDonald', 'Tomie dePaola', 'Richard Hofstadter', "Camilla d'Errico", 'Anne Perry', 'Deborah  Smith', 'Joseph Bédier', 'Kluun', 'Sébastien Japrisot', 'Leslie Marmon Silko', 'Manuel Puig', 'Ken Keyes Jr.', 'Stacey Levine', 'William   Sanders', 'Lene Kaaberbol', 'Lene Kaaberbøl', 'Aidan Chambers', 'Richard Wagamese', 'Philip J. Hilts', 'Suzanne Weyn', 'Vanora Bennett', 'William Wharton', 'G.K. Elliott', 'James Dickey', 'Lora Leigh', 'Fredric Brown', 'Nancy Garden', 'Gordon B. Hinckley', 'Carlo Emilio Gadda', 'Sarah Micklem', 'William H. Armstrong', 'Harriette Simpson Arnow', 'Tiger Woods', 'Mary Botham Howitt', 'Loup Durand', 'Steven Sherrill', 'Jerry Ahern', 'Amy Scholder', 'Jon Swain', 'Constantinos P. Cavafy', 'Erlend Loe', 'Eileen Dunn Bertanzetti', 'Michael Baigent', 'Lucille Clifton', 'Tadeusz Konwicki', 'Jack Higgins', 'Paul Gallico', 'Miss Read', 'Stephen Colbert', 'Martha Finley', 'C.G. Jung', 'Jean Sasson', 'John Lennon', 'Van Reid', 'Julia Cameron', 'Fran Manushkin', 'Walter B. Gibson', 'Bibhutibhushan Bandyopadhyay', 'Gabor Maté', 'Robert Newcomb', 'Carol Berg', 'Ann Howard Creel', 'Alister E. McGrath', 'Linda Buckley-Archer', 'Margery Sharp', 'J.L. Mackie', 'Joseph Gangemi', 'Mary Zeiss Stange', 'Gilbert Adair', 'Giuseppe Tomasi di Lampedusa', 'Dan Abnett', 'Dawn Thompson', 'Alan                Campbell', 'Betty Edwards', 'Maureen Lee', 'Alan Furst', 'Nell Irvin Painter', 'Nancy Jewell', 'Paul Leonard', 'Sunil Khilnani', 'Adam Haslett', 'Alexis Wright', 'A.P.J. Abdul Kalam', 'Edwin Black', 'Angela Y. Davis', 'Reşat Nuri Güntekin', 'Mohammad Ali Jamalzadeh', 'Mette Ivie Harrison', 'Betty Dravis', 'Paramahansa Yogananda', 'Esther M. Friesner', 'Robert E. Drennan', 'Guy de Maupassant', 'Daniel Kehlmann', 'Walter Mosley', 'Michael  Golding', 'Richard Swinburne', 'Mary E. Pearson', 'David Nobbs', 'Christopher R. Browning', 'Ajahn Brahm', 'Richard Gavin', 'James B. Garfield', 'Imre Madách', 'Susan  Jeffers', 'Dezső Kosztolányi', 'Ben Macintyre', 'Lisa C. Moore', 'Tore Renberg', 'Chelsea Cain', 'Heather McElhatton', 'Hervey M. Cleckley', 'D. Howard King', 'Juliet E. McKenna', 'Kukrit Pramoj', 'Rebecca Stott', 'Jessica Day George', 'Tayeb Salih', 'Karen Casey', 'Rick Yancey', 'Lawrence Norfolk', 'Katherine Anne Porter', 'Thomas Malory', 'Robert Masello', 'Rosalind Laker', 'Paul Goble', 'June Rachuy Brindel', 'Cate Tiernan', 'Shawn Michaels', 'Eddie Guerrero', 'H. Beam Piper', 'Michelle Smith', 'Simon Goddard', 'Alan Barnes', 'Nick Walters', 'Elizabeth Scott', 'Gerard Woodward', 'Mary E. Wilkins Freeman', 'Menachem Marc Kellner', 'Juan Gómez-Jurado', 'Jim Carroll', 'Edith Hahn Beer', 'Michael Shaara', 'Peter Ustinov', 'Muhammad Mustafa al-ʿAzami', 'Daniil Kharms', 'Francis J. Beckwith', 'Rebecca Gablé', 'Paul Preuss', 'Nancy  Goldstone', 'Jerry Hopkins', 'Joan Wolf', 'Lisa Lerner', 'Munshi Premchand', 'Anatoli Rybakov', 'Humberto R. Maturana', 'Scott Weidensaul', 'Per Olov Enquist', 'Tyler Cowen', 'Diane Farr', 'Chris Cleave', 'Gregg Braden', 'Peter James', 'Lara Adrian', 'Paul Kidd', 'Richard G. Scott', 'James P. Hogan', 'Min Jin Lee', 'Marcus Luttrell', 'Wayne Thomas Batson', 'Shiv Kehra', 'Malorie Blackman', 'James William McClendon Jr.', 'William C. Placher', 'Roland Smith', 'Elizabeth Payson Prentiss', 'Susan Faludi', 'Raymond Fraser', 'Justin Somper', 'G.P. Taylor', 'Richard Marsh', 'Various', 'Susan Kearney', 'Susan Coolidge', 'Joseph A. Citro', 'Ellen Glasgow', 'Deborah Ellis', 'Samuel Taylor Coleridge', 'Brock Clarke', 'Michelle Malkin', 'Barbel Mohr', 'Felix Salten', 'Arnošt Lustig', 'Mark Achbar', 'Lori Lansens', 'The Church of Jesus Christ of Latter-day Saints', 'Les Galloway', 'Betty Ren Wright', 'G.B. Edwards', 'Janet Malcolm', 'Sir Isaiah Berlin', 'Stan Lee', 'Thérèse of Lisieux', 'T.E.D. Klein', 'Janet Ahlberg', 'Joy Adamson', 'Oğuz Atay', 'Patricia Wood', 'Paul Féval père', "Liam O'Flaherty", 'Truddi Chase', 'Lisa Fiedler', 'Martin Cruz Smith', 'Kenneth H. Blanchard', 'John Peel', 'Peter H. Reynolds', 'Gloria Naylor', 'Kyōka Izumi', 'Patrick McDonnell', 'Marcus Pfister', 'Tanuja Desai Hidier', 'William L. Shirer', 'Ian Halperin', 'Laura Joffe Numeroff', 'Lobsang Rampa', 'Conrad Richter', 'Willy Lindwer', 'Joe Sacco', 'Joan Konner', 'Ian Falconer', 'Carlos Cuauhtémoc Sánchez', 'Francis Lafon', 'Selma Lagerlöf', 'E.B. Sledge', 'Henry Green', 'Mildred Armstrong Kalish', 'David Wilkerson', 'Marge Piercy', 'Munro Leaf', 'Jennifer Egan', 'Dodie Bellamy', 'Liviu Rebreanu', 'Arthur R. Jensen', 'Nicolae Steinhardt', 'Northrop Frye', 'Mary Webb', 'Lynn Viehl', 'Bảo Ninh', 'Susane Colasanti', 'Bryan Burrough', 'D. James Kennedy', 'Elisabeth Kübler-Ross', 'Alan Bullock', 'Sean Covey', 'Sándor Márai', 'Mustafa Kemal Atatürk', 'Christine Monson', 'Vicente Huidobro', 'Linda Sue Park', 'Khushwant Singh', 'Murray Kempton', 'Janell Cannon', 'Avi Shlaim', 'Thor Heyerdahl', 'Octavio Paz', 'Dennis Wheatley', 'Joan Lindsay', 'Michael Morpurgo', 'Sarah L. Delany', 'Yasmine Galenorn', 'Rachel Vincent', 'Verna Aardema', 'Alain-Fournier', 'Jay Winik', 'Paul Beatty', 'Amelia B. Edwards', 'Marquis de Sade', 'Luís de Camões', 'Brendan Halpin', 'C J Arthur', 'Marie Corelli', 'Willem Elsschot', 'Shen Tong', 'James Bamford', 'David     Miller', 'Roger Luckhurst', 'Cathy  Lamb', 'Bob Kaufman', 'Ing. Carlos Cuauhtémoc Sánchez', 'Avery Corman', 'Audrey Wood', 'William Kotzwinkle', 'Helen B. Andelin', 'Ronald Giphart', 'Carmen Laforet', 'Esther Forbes', 'William Henry Hudson', 'Michael R. Phillips', 'Nintendo Power', 'Carolyn Jessop', 'Jennifer Johnston', 'Annie Ernaux', 'Mordecai Roshwald', 'Johanna Reiss', 'Terry Tempest Williams', 'Hannah Hurnard', 'Helen Keller', 'Louise Glück', 'Susan Hubbard', 'Joseph Boyden', 'Karl Edward Wagner', 'Brother Andrew', 'Watty Piper', 'Melvin Burgess', 'Charles Palliser', 'W.C. Sellar', 'Laura Numeroff', 'Rudy Wiebe', 'Andreas Steinhöfel', 'Patrick White', 'Booker T. Washington', 'Patricia Reilly Giff', 'Marina Lewycka', 'Miles Davis', 'John F. Kennedy', 'Ann Halam', 'Barbara Vine', 'Hugh Ross', 'Fazale Rana', 'Gerald McDermott', 'William Saroyan', 'Etgar Keret', 'Stephen Hunt', 'Jilly Cooper', 'Roger Hargreaves', 'Willy Russell', 'Eric Bogosian', 'Telford Taylor', 'Yukito Kishiro', 'Stephen Abbott', 'John Kendrick Bangs', 'Iyanla Vanzant', 'Thomas a Kempis', 'Nelson Goodman', 'Martin Edwards', 'Clara Reeve', 'Armstrong Sperry', 'Lillian Hellman', 'John Osborne', 'William Beckford', 'Nikolai Ostrovsky', 'William Steig', 'W. Michael Gear', 'Thomas H. Cook', 'Mumia Abu-Jamal', 'David Bentley Hart', 'Jack Welch', 'Sarah Kofman', 'Miyamoto Musashi', 'Hidenori Kusaka', 'Basil Copper', 'Gustavo Adolfo Bécquer', 'Lucius Shepard', 'Eleanor Dark', 'Ed McBain', 'Laurence Yep', 'Bernard Taylor', 'Bruno Bettelheim', 'Karen Covell', 'Jonathan Aycliffe', 'Charles Higham', 'Reinaldo Arenas', 'Sharon Maas', 'Scott Lynch', 'Mrs. Carver', 'Lisi Harrison', 'Czesław Miłosz', "Catherine O'Flynn", 'Gerry Spence', 'Andrew Chaikin', 'Kathleen E. Woodiwiss', 'Austin Tappan Wright', 'Rumer Godden', 'Max Gerson', 'Nancy Horan', 'Hal Lindsey', 'J.B. Priestley', 'Joe Abercrombie', 'Johan Huizinga', 'Brett Battles', 'Yuki Urushibara', 'Simon Clark', 'Rose Wilder Lane', 'Thomas Joseph Sugrue', 'Joanna Russ', 'Steve Lyons', 'Nelson Rodrigues', 'Robert Charles Wilson', 'David J. Schow', 'Lesley Kagen', 'Pedro Calderón de la Barca', 'Winifred Watson', 'Emmanuel Todd', 'Tim Willocks', 'Thierry Jonquet', 'Michael Marshall Smith', 'Stanley Ellin', 'Robert Tressell', 'Victoria Hislop', 'Josep Pla', 'Jason F. Wright', 'Elaine N. Aron', 'Suzy McKee Charnas', 'John  Farrow', 'Arthur Quinn', 'United Methodist Church', 'Kai Meyer', 'Chet Williamson', 'Charles R. Johnson', 'Patricia Sarrafian Ward', 'Bess Streeter Aldrich', 'David S. Garnett', 'Paul Brickhill', 'Thomas M. Disch', 'Diana Lewis Jewell', 'C.L. Moore', 'Del Stone Jr.', 'John Ajvide Lindqvist', 'Andrew Kaufman', 'Fiona Neill', 'John Edward', 'Rokeya Sakhawat Hossain', 'Lawrence Goldstone', 'Whittaker Chambers', 'A.J.P. Taylor', 'John Palmer Jr.', 'Ridley Pearson', 'Patricia St. John', 'David Ray Griffin', 'Jeff Rovin', 'Sharon Dennis Wyeth', 'Joseph Nicolosi', 'Damon Galgut', 'Susanna Kearsley', 'Juan Ramón Jiménez', 'Jan Brett', 'Diana Korte', 'Tim Weiner', 'Tom Bradby', 'Donn Pearce', 'Walt Morey', 'Eric Sloane', 'Gao Xingjian', 'Brian Swimme', 'Rómulo Gallegos', 'Christine Brooke-Rose', "Brendan O'Carroll", 'Bernice Morgan', 'Cindy Brandner', 'LaVyrle Spencer', 'Kirsten Dalley', 'India Edghill', 'Dee Lestari', 'Jan Terlouw', 'Gil Adamson', 'Lizabeth Zindel', 'P.C. Wren', 'Heinrich Mann', 'Anne Enright', 'Eleanor H. Porter', 'Christopher  Morley', 'Blanche Fisher Wright', 'Herman Brusselmans', 'Mark Walden', 'Linus Pauling', 'Belzebuub', 'Robert Shearman', 'Winifred Holtby', 'Spring Howard', 'Howard Spring', 'Jo Beverley', 'Elizabeth Kerner', 'Gordon Korman', 'Janny Wurts', 'Wolfgang Hohlbein', 'Takashi Nagai', 'Katherine Mansfield', 'Walter Kempowski', 'H. Russell Wakefield', 'Paige Toon', 'Terri Thayer', 'Ambalavaner Sivanandan', 'Angela Elwell Hunt', 'Thomas Wharton', 'Stan Nicholls', 'Alice Oswald', 'Jeanne Kalogridis', 'May Sinclair', 'Anita Rau Badami', 'Harold Bell Wright', 'John Coyne', 'Charles Finch', 'Sálim Ali', 'John Scally', 'Morris Gleitzman', 'Cathy Cash Spellman', 'Carl Laymon', 'David Feintuch', 'Yamuna Devi', 'Spencer W. Kimball', 'Junior League of Denver', 'Sven Hassel', 'James A. Moore', 'Peter Melman', 'Frédéric Beigbeder', 'Alan Gibbons', 'Kevin Leman', 'Robin  Hardy', 'Maia Wojciechowska', 'Tom Lanoye', 'Dimitri Verhulst', 'Sharan Newman', 'James R. McDonough', 'Bisco Hatori', 'Laura Gallego', 'Pseudonymous Bosch', 'George W.M. Reynolds', 'James Gould Cozzens', 'Esther Wood Brady', 'Kalki', 'Noriko Ogiwara', 'James Branch Cabell', 'Bret Hart', 'Charlotte Dacre', 'Hape Kerkeling', 'Robert D. San Souci', 'Evelyn Lau', 'Guillaume Musso', "Carol O'Connell", 'Will Self', 'Erich Kästner', 'Jonas Gardell', 'Norman Vincent Peale', 'Nikolai Chernyshevsky', 'Cherie Priest', 'John Shirley', 'Harry Martinson', 'Nicola Barker', 'Miguel Sousa Tavares', 'John H. Sailhamer', 'Chaz Brenchley', 'Charles R. Cross', 'Melanie Wallace', 'David Gibbins', 'Jay Wright', 'Emmanuel Carrère', 'Roger Tory Peterson', 'Sarah Addison Allen', 'Anita Brookner', 'Kenneth Robeson', 'Arthur O. Lovejoy', 'Robert Muchamore', 'Jean Ray', 'Nancy  Peacock', 'Victoria Taylor Murray', 'Anne Golon', 'Elinor M. Brent-Dyer', 'Roderick Gordon', 'Janice Erlbaum', 'Fumi Saimon', 'Robert K. Adair', 'A.B. Facey', 'H.L.A. Hart', 'Adam Rex', 'Tammy Bruce', 'Michael Ridpath', 'David Lereah', 'Vishnu-Devananda', 'Norman Partridge', 'Jane Medina', 'Jerry Lawler', 'Christos Tsiolkas', 'Michael G. Coney', 'Janet Chapman', 'Karen Hawkins', 'Jiang Rong', 'W. Cleon Skousen', 'Iris Rainer Dart', 'Alaa Al Aswany', 'Mary Daheim', 'Linwood Barclay', 'Bono Edward De', 'Rosemary Clement-Moore', 'Daniel Pennac', 'Waguih Ghali', 'Peter Hobbs', 'Meg Wolitzer', 'Adriana Babeți', 'Eiichiro Oda', 'Ernest Thompson Seton', 'Kazu Kibuishi', 'Shiho Inada', 'Harold Robbins', 'Eça de Queirós', 'Michael Drury', 'Perry    Moore', 'Charles E. Rodz', 'Garielle Lutz', 'Anna Godbersen', 'Lynn Kurland', 'Claire Fordham', 'Stefan Żeromski', 'Nell Freudenberger', 'Ivan Alekseyevich Bunin', 'Frank Yerby', 'Charles M. Schulz', 'Kate Braverman', 'Antonia White', 'Drew Gilpin Faust', 'Joey W. Hill', 'Chuck Hogan', 'Mark Raphael  Baker', 'Michael Dowd', 'Andrea J. Buchanan', 'Francis Lathom', 'Helen Humphreys', 'Christoph Marzi', 'Jean Cocteau', 'Sarah Ash', 'Guus Kuijer', 'Manda Scott', 'Heimito von Doderer', 'Malcolm Bosse', 'Jenny Downham', 'Larry W. Phillips', 'Robert Schneider', 'Martin H. Greenberg', 'Alvin Schwartz', 'Gertrude Atherton', 'Holly Lynn Payne', 'Susan Wittig Albert', 'Nikky Finney', 'David Mendell', 'Ahmad Tohari', 'Christiane V. Felscherinow', 'Yōko Ogawa', 'Gunnar Kopperud', 'Hubert Reeves', 'Jean Sutton', 'Tod Wodicka', 'Seth Shulman', 'James  Wood', 'Lisa Scottoline', 'Terryl L. Givens', 'Andrea Hirata', 'Timothy Conigrave', 'José Emilio Pacheco', 'Angela Sommer-Bodenburg', 'Marcella Hazan', 'Marcus Sedgwick', 'Tere Liye', 'Stephen Molstad', 'Gerard Reve', 'Sam Selvon', 'Susan Andersen', 'Pope John Paul II', 'Michelle West', 'Frances Saldinger', 'Alain Damasio', 'W.O. Mitchell', 'Ivan Ângelo', 'Muhammad Yunus', 'Aleksandra Kollontai', 'Geoffrey C. Bingham', 'Mike Tucker', 'Douglas Borton', 'Henry Ford', 'Samuel Eliot Morison', 'Lesley Pearse', 'Matvei Vasilyevich Golovinski', 'Frederick H. Pough', 'Raymond Murphy', 'Jeaniene Frost', 'G.M. Ford', 'Stuart Woods', 'Edmondo de Amicis', 'Todd Balf', 'Leena Krohn', 'Naoko Takeuchi', 'Keith Thomas', 'Janice Galloway', 'Will Lavender', 'Hulk Hogan', 'Traci Harding', 'Gerald Schueler', 'Oliver Onions', 'Steve Martini', 'Sylvia Engdahl', 'A.A. Navis', 'Freya Littledale', 'Mark Reibstein', 'Kristin Hannah', 'Lauren Groff', 'Benjamin Zephaniah', "Don D'Ammassa", 'Sudhir Venkatesh', 'Rex Collings', 'Marjorie Bowen', 'Donny Dhirgantoro', 'Jean Webster', 'Carol A. Losi', 'Erica Bauermeister', 'Donald McCaig', 'John      Piper', 'Jonathan Kozol', 'Bill James', 'Sherwin Tija', 'Nancy C. Johnson', 'Indra Sinha', 'Frances Mossiker', 'Charles L. Grant', 'Pascal Mercier', 'Yūko Tsushima', 'Don Ferguson', 'Siegfried Sassoon', 'Lauraine Snelling', 'Brian Kolodiejchuk', 'Lion Feuchtwanger', 'İhsan Oktay Anar', 'Helvy Tiana Rosa', 'Anthony Buckeridge', 'J.B. Stanley', 'Robert Mawson', 'Michael Cleverly', 'Diana J. Mukpo', 'Bob Colacello', 'Thomas Ott', 'Rosina Lippi', 'Barbara Kerley', 'Peter Behrens', 'C.L. Wilson', 'Elizabeth Elgin', 'Gary Kinder', 'Sax Rohmer', 'Rosemary  Harris', 'Noah Charney', 'Randall Balmer', 'Xavier Herbert', 'Frédéric Bastiat', 'Janusz Leon Wiśniewski', 'Andrew       Peterson', 'Minari Endoh', 'Suzanne Cameron Linder Hurley', 'Dorothy Koomson', 'Jennifer Chiaverini', 'Robin Benway', 'A.E. Coppard', 'Stephen  Gilbert', 'Ansel Adams', 'Gail  Herman', 'John C. Lennox', 'Amorey Gethin', 'Darko Suvin', 'Victor Gischler', 'Patrick Gale', 'Morton Thompson', 'N.D. Wilson', 'Lisa McMann', 'Neil Shubin', 'Mark Del Franco', 'Victor B. Scheffer', 'Lauren Barnholdt', 'Peter Frederick Strawson', 'Elizabeth Hay', 'Ruby Jean Jensen', 'Sylvia Brown', 'Professor Frank Krutnik', 'Scott Adams', 'Joy Fielding', 'Herbjørg Wassmo', 'William Shatner', 'Rick Sowash', 'Laurie Robertson-Lorant', 'Erle Stanley Gardner', 'Donald Ray Pollock', 'John Joseph Adams', 'Marie Clayton', 'Dan Ariely', 'Regina Maria Roche', 'Amanda Marrone', 'Joan Bauer', 'Gemma Malley', 'Toby Barlow', 'Zdeněk Jirotka', 'Dimitré Dinev', 'William Sutcliffe', 'Anya Bast', 'Allison Brennan', 'Don Webb', 'Elizabeth Strout', 'Elizabeth C. Bunce', 'Nikolai Bukharin', 'Paul       Roberts', 'Mary Roberts Rinehart', 'Tami Hoag', 'Kate Summerscale', 'Harry Mazer', 'Kjell Askildsen', 'Peter Kline', 'Jetta Carleton', 'Fern Michaels', 'Aravind Adiga', 'Mollie Panter-Downes', 'Russ Martin', 'Aline Templeton', 'Terry Nation', 'Robert Zubrin', 'Matthew Reinhart', 'Jeff Talarigo', 'Anna Seghers', 'Dee Davis', 'Jean Gebser', 'Annie M.G. Schmidt', 'Deborah Diesen', 'Ziraldo', 'Caitlin Kittredge', 'Martin van Creveld', 'Shaun Hutson', 'Lisa Shanahan', 'Cathi Unsworth', 'William Paul Young', 'Geronimo Stilton', 'Dennis Batchelder', 'Tom Steel', 'Arthur Japin', 'José Eustasio Rivera', 'Jean Stafford', 'Daniel Glattauer', 'Gianrico Carofiglio', 'Graham Masterton', 'Sarah Rees Brennan', 'David W. Anthony', 'Lisa Schroeder', 'Steve Toltz', 'Arnold Bennett', 'Tonke Dragt', 'Curtis Steele', 'Ronald  Holt', 'Julie Buxbaum', 'Pope Brock', 'David  Wong', 'JARY', 'Jan Parandowski', 'Димитър Талев', 'Peter Teuthold', 'Joseph Kessel', 'John Allen Paulos', 'Gustaw Herling-Grudziński', 'Kader Abdolah', 'Glenda Burgess', 'Greg Pak', 'Peach-Pit', 'Nikki Sixx', 'Jefferson Bass', 'A.C. Benson', 'Chris Priestley', 'Nora Archibald Smith', 'Gabriela Zapolska', 'Pete Earley', 'Antonia Forest', 'Eric    Weiner', 'Mark Ari', 'Michael Bradshaw', 'Jeffrey Brown', 'Laura M. Flynn', 'Laura Crum', 'Bill Knott', 'David Pinner', 'Susan Wiggs', 'Laura Joh Rowland', 'Matt Taibbi', 'Brunonia Barry', 'Corey Frost', 'Professor Stacey Cochran', 'Loren D. Estleman', 'Philip F. Harris', 'Karen  Roberts', 'George Gately', 'Henry Handel Richardson', 'John Sladek', 'Michael A. Singer', 'Charles Duchaussois', 'Yoshihiro Tatsumi', 'Susan Campbell Bartoletti', 'Slash', 'David Benioff', 'Andrew Sean Greer', 'T. Jefferson Parker', 'Wolfgang Koeppen', 'Joseph Caldwell', 'Laura Dave', 'Charles W. Colson', 'Sara Young', 'David Shields', 'Gene Wilder', 'Sandra Hill', 'Karen Miller', 'Elisa Albert', 'Stefan Grabiński', 'Patricia Polacco', 'NisiOisiN', 'Dana Reinhardt', 'Thurston Moore', 'R. Karl Largent', 'Jonathan London', 'Rebecca Tope', 'Alan Sokal', 'Ahmet Hamdi Tanpınar', 'Pamela Erens', 'Scott Simon', 'Scott Douglas', 'Daniel McGinn', 'Saša Stanišić', 'Brian M. Fagan', 'Margaret Busby', 'Alice Schroeder', 'Karen  Hall', 'Roy Gutman', 'John Singleton', 'Mick Inkpen', 'Sparrow 13 Laughingwand', 'Thomas Norman DeWolf', 'Gary K. Wolf', 'Reinhold Niebuhr', 'André Comte-Sponville', 'Alex Gray', 'Allison Winn Scotch', 'Victoria Forester', 'Mark  Harris', 'Geoffrey M. Gluckman', 'Pierre Bottero', 'Richard Beard', 'Chauncey G. Parker', 'John Meade Falkner', 'Julie Lessman', 'Keith Douglass', 'Jim Theis', 'Raven West', 'Elizabeth Becka', 'Ingrid Law', 'Mathias Malzieu', 'Charles Simic', 'Kat Richardson', 'Hillary Jordan', 'Beth Harbison', 'Alfred Watkins', 'Alan Burgess', 'Richard A. Koenigsberg', 'Victor Kelleher', 'Sophie McKenzie', 'Mary Anne Radcliffe', 'Lisa Genova', 'Sue Johnson', 'Paddy McMahon', 'Tom Rob Smith', 'Sally Nicholls', 'Ben Elton', 'Brian Tracy', 'محمد بن إدريس الشافعي', 'Lucas Bridges', 'Park Joong-Ki', 'Joe Pistone', 'Steve López', 'Miley Cyrus', 'Tim Butcher', 'David Anger', 'Andrea Weiss', 'Sarfraz Manzoor', 'Darby Conley', 'Rudolph Wurlitzer', 'Susan May Warren', 'Judith Katzir', 'Linda Barlow', 'Nalini Moreshwar Nadkarni', 'Stephanie Kuehnert', 'Eshkol Nevo', 'Joseph Horowitz', 'Kuki Gallmann', 'Cynthia Ozick', 'Arthur Agatston', 'David Maraniss', 'Lisa Appignanesi', 'Grandmaster Tae Yun Kim', 'Tae Yun Kim', 'Sarah Boxer', 'Anne Cherian', 'Abby Gaines', 'Karen Essex', 'Johan Bruyneel', 'Ann VanderMeer', 'Gerri Brightwell', 'Ghazi A. Algosaibi', 'Marissa Doyle', 'Kevin Henkes', 'John Medina', 'Tina Chang', 'Robin D. Owens', 'Lynne Olson', 'Steve    Harris', 'Cassie Edwards', 'Leonard Mlodinow', 'E.M. Crane', 'Shelly Laurenston', 'David Louis Edelman', 'Jacques Poulin', 'Carla Neggers', 'Victoria Thompson', 'James Malcolm Rymer', 'Uwem Akpan', 'Ron Marz', 'Stephen J. Burn', "Sara O'Leary", 'Jeffrey Kluger', 'Brooke Parkhurst', 'Ron Hansen', 'Jaida Jones', 'Sandra       Brown', 'Sharon J. Bolton', 'Kate Furnivall', 'Kiyo Fujiwara', 'Abd al-Rahman al-Kawakibi', 'Russell C. Hibbeler', 'غادة السمان', 'Robyn Scott', 'Leni Zumas', 'Randy Pausch', 'Gregory Frost', 'N.T. Wright', 'Lauren St.John', 'Julie Salamon', 'Steven Gillis', 'Karl Schroeder', 'Mariko Tamaki', 'Ellen Byerrum', 'Mahdi Rizqullah Ahmad', 'Chuck Liddell', 'Monk Ashland', 'Algis Budrys', 'Robert Liparulo', 'Scott Sigler', 'Katie Crouch', 'Daniel Radosh', 'Rose MacDowell', 'Arthur R.G. Solmssen', 'Anita Lobel', 'Tera Lynn Childs', 'Stuart Chase', 'Heather Graham', 'Neil D. Ostroff', 'Polly Horvath', 'Tobias S. Buckell', 'Charles Henry Edwards', 'Gary Russell', 'Gwen Hunter', 'Howard Mittelmark', 'Debbie Lee Wesselmann', 'Allen Raymond', 'Lucie Whitehouse', 'João Guimarães Rosa', 'Tim Seeley', 'Cliff Ryder', 'Claire A. Nivola', 'Kage Baker', 'Harry Adam Knight', 'Lilya Kaganovsky', 'Syd Goldsmith', 'Elsa Triolet', 'Julian Fellowes', 'David   Case', 'Philip R. Craig', 'Rick Perlstein', 'Michael Scott', 'Laurie Graff', 'F.B. Meyer', 'William Harrison Ainsworth', 'Joanne Proulx', 'Cara Wilson', 'Susan Stryker', 'Kate Angell', 'Stephen Budiansky', 'Erik Hazelhoff Roelfzema', 'P.J. Parrish', 'Caitlin Rother', 'Stieg Larsson', 'José Rodrigues dos Santos', 'Lauri Lebo', 'Bella Andre', 'Joseph E. Persico', 'Tracy Letts', 'Ensan Case', 'Bart King', 'R.J. Ellory', 'Christina Dodd', 'Christine Garwood', 'Sarah Atwell', 'David Llewellyn', 'Niall Williams', 'Leslie Patricelli', 'Anthony De Sa', 'Stormie Omartian', 'Alex Abella', 'Brian James', 'Joe Dunthorne', 'Terry Carbone', 'John  Gordon', 'Steven Galloway', 'Arthur Katz', 'Mameve Medwed', 'Joan Wickersham', 'Diane Chamberlain', 'Brenda Novak', 'Jaime Hernández', 'Sherri Rifkin', 'عبد الله بن المقفع', 'Ahlam Mosteghanemi', 'Andrew Hodges', 'Misty Massey', 'Tonya Hurley', 'Joseph Kerman', 'Titania Hardie', 'J.N. Williamson', 'Pamela Morsi', 'D.A. Carson', 'Timothée de Fombelle', 'Madeleine Urban', 'Michael  Grant', 'Tove Ditlevsen', 'Bailey White', 'Nicholas Noyes', 'Paul M. Buhle', 'G. Norman Lippert', 'Christopher   Duncan', 'Debra Webb', 'Gerald Seymour', 'Brian Hodge', 'John Silverwood', 'Thomas J. Schaeper', 'Bill  Bishop', 'Charles E. Lindblom', 'David Heatley', 'James Grady', 'Jordan Dane', 'Cynthia Saltzman', 'Galen Beckett', 'Gary A. Braunbeck', 'Emily Arnold McCully', 'Lorna Barrett', 'C.B. Smith', 'Lenore Look', 'Andrew  Davidson', 'Pamela Binnings Ewen', 'Hallie Ephron', 'Arnold C. Brackman', 'Vergílio Ferreira', 'Dave Diotalevi', 'Marie Lawrence', 'Sharon Sala', 'Michael  Dobbs', 'Raymond Murray', 'Anne-Claire Leveqe', "Joseph O'Neill", 'David  Shumate', 'Nodar Dumbadze', 'Jackie Kessler', 'Sjón', 'Larry   Ellis', 'Peter S. Wells', 'Uzma Aslam Khan', 'Elissa Wall', 'Davis Grubb', 'Antony Flew', 'Peggy Munson', 'Margo Lanagan', 'James Mayhew', 'Max Frei', 'Sara Rosett', 'محمد عبد الرحمن العريفي', 'Larissa Ione', 'William Schoell', 'Duncan B. Barlow', 'Mustansar Hussain Tarar', 'Sheila Connolly', 'Poppy Adams', 'Brian W. Shaffer', 'Maria Kuncewiczowa', 'Denis P. Gardner', 'Elizabeth Hartley Winthrop', 'Katie Smith Milway', 'Claudia Gray', 'Richard Liebmann-Smith', 'Charlotte Connors', 'Lucy H. Spelman', 'Mary Ann Shaffer', 'David Wroblewski', 'Ron Paul', 'Harvest House Publishers', 'Helen Tse', 'Richard Grant', 'Michael D. Christensen', 'Jeffrey J. Mariotte', 'عائض القرني', 'M.T. Vasudevan Nair', 'Karen Maitland', 'Katherine Allred', 'Charlotte Riddell', 'Diandra Leslie-Pelecky', 'Emily Barr', 'Kathi Appelt', 'Pierre Bayard', 'Lynn Kiele Bonasia', 'Tom Vanderbilt', 'Alafair Burke', 'Jane Brocket', 'Jan Needle', 'Evelyn Eaton', 'John Hatcher', 'Ella Leffland', 'Robin Wasserman', 'Gerard Way', 'Nigel Williams', 'Mark Steyn', 'Alice Fulton', 'Dexter Hawk', 'Robin Furth', 'Michael Ian Black', 'Lisa Papademetriou', 'Marjorie  Price', 'Thurston Clarke', 'Mari Mancusi', 'Brian Michael Bendis', 'Oksana Zabuzhko', 'Carrie Bebris', 'Robin L. Riley', 'Ryder Windham', 'Ron Regé Jr.', 'Jordan Krall', 'Jason McGathey', 'John Charles Pollock', 'William Borden', 'John Farris', 'John V. Tolan', 'Jaci Burton', 'Joaquín "Jack" García', 'Theodore Judson', 'Nahoko Uehashi', 'Barton Gellman', 'Helen Brooks', 'Fred Krupp', 'Jeanine Le Ny', 'Diane  Hammond', 'Donna Foote', 'M.J. Fredrick', 'Charlotte Roche', 'Carol Alt', 'Alejandro Zambra', 'مصطفى صادق الرافعي', 'Libby Fischer Hellmann', 'Jean Lorrain', 'Walter de la Mare', 'يحيى بن شرف النووي', 'ابن كثير', 'JoAnna Carl', 'Jackie Robb', 'Brittany Kent', 'Nescio', 'Michelle Gagnon', 'Gregg Luke', 'Clare London', 'Lisa Lillien', 'Cheryl Brooks', 'Mariah Stewart', 'John Carlin', 'Alexander Balmain Bruce', 'Muriel Barbery', 'Katharina Hagena', 'Owen Brookes', 'Kirk Cameron', 'Livia J. Washburn', 'Robert Paarlberg', 'Jennifer Pelland', 'Chris Pusateri', 'Denis Leary', 'Alison Goodman', 'Barbara  Corcoran', 'Dan Merchant', 'Richard Deming', 'J.H. Brennan', 'John Ringo', "Stacey O'Brien", 'Joan Holub', 'Kate Giel', 'Patrick French', 'Nick Harkaway', 'Dalton Fury', 'Richard Botelho', 'Cleo Coyle', 'Irene M. Pepperberg', 'Norman Spinrad', 'William I. Hitchcock', 'Conrad Williams', 'John McFetridge', 'Laura Childs', 'Emily Gravett', 'Mark Michalowski', 'Susan Sloate', 'Matthew Van Fleet', 'Julie Bowe', 'Linda Hilton', 'Dido Sotiriou', 'Lesley Livingston', 'Peter Fritzsche', 'Winterhaven School', 'Sarah Rose', 'Marcus Sakey', 'Will Mancini', 'Molly Wizenberg', 'Mayra Santos-Febres', 'Stella Rimington', 'Craig Glazer', 'Sally Goldenbaum', 'Brian Cogan', 'Michael Thomas Ford', 'Les Standiford', 'Jeff Pearlman', 'Judah  Freed', 'Maggie Stiefvater', 'Timothy J. Keller', 'August Strindberg', 'Laurel Corona', 'နုနုရည်အင်းဝ', 'Kim Howard Johnson', 'Mem Fox', 'Trish Milburn', 'Belinda Jones', 'Rutu Modan', 'Jim Nantz', 'Melissa Anelli', 'Megan Kelley Hall', 'Taras Grescoe', 'Douglas Brown', 'D.J. Murphy', 'Jeff Guinn', 'Linda Holeman', 'John McWhorter', "Michelle O'Leary", 'Robin Burcell', 'Simon LeVay', 'F.G. Cottam', 'محمد حسن علوان', 'Garth Stein', 'Lucy Gordon', 'Susan Janic', 'Jennifer Magid', 'Jerry B. Jenkins', 'Amy Dickinson', 'Karin Tabke', 'Josh Bazell', 'NaRae Lee', 'Ellen Hawley', 'Jane Shore', 'Caralyn Buehner', 'Kathleen Kent', 'Bill Folman', 'Udo Walendy', 'Nancy Werlin', 'Daryl Gregory', 'Chris Onstad', 'Steven Greenhouse', 'Randa Jarrar', 'Drew Goddard', 'Tom     Bradley', 'Charles Murray', 'Francis Chan', 'Shreve Stockton', 'Jackson Thoreau', 'John Domini', 'Anne Whitfield', 'Sarah Bird', 'Bill Rolston', 'Michael J. Lannoo', 'Son Hee-Joon', 'Donna Andrews', 'Tim Bowler', 'Brent Weeks', 'Carol A. Tebbs', 'Anthony Capella', 'William G. Tapply', 'Peter Anghelides', 'Rantz A. Hoseley', 'Tiffany Baker', 'Kristin Cashore', 'Justina Chen', 'بهاء طاهر', 'أحمد العايدي', 'Devon Monk', 'Daniel Grandbois', 'Brian J. Showers', 'Enrico Antiporda', 'John Condenzio', 'Rose Melikan', 'Kyle Minor', 'E.R. Eddison', 'Charla Muller', 'Darko Macan', 'Aranka Siegal', 'Vicki Myron', 'Umera Ahmed', 'Tatiana Boncompagni', 'Madelyn Alt', 'David Bergen', 'Martin  Walker', 'Christina Skye', 'Karen MacInerney', 'Wendy Roberts', 'Julie Rollins', 'Ben Goldacre', 'Lloyd Robson', 'Fernando Gabeira', 'Pasha Malla', 'Jane Mayer', 'Kelly Rae Roberts', 'Yasutaka Tsutsui', 'Peter Gosselin', 'Theodore J. Kaczynski', 'G.A. Aiken', 'Gordon Kirby', 'Ursula K. Heise', 'John Cowper Powys', 'Philip Delves Broughton', 'Adam Rubin', 'Judith Lucy', 'Janie Pendleton', 'Lorraine López', 'Lisa Black', 'François Jean', 'Bridget Asher', 'Ralph Tedesco', 'G.M. Malliet', 'Ghassan Kanafani', 'مصطفى محمود', 'Nathan Singer', 'Ivan Brunetti', 'Ferenc Karinthy', 'Sandeep Jauhar', 'Maria Savva', 'Judith E. French', 'David  Thomson', 'Robert    Fisher', 'Jamie Ford', "Clare O'Donohue", 'طه حسين', 'Molly McNett', 'Jeffrey Ford', 'Simon Holt', 'Adrienne Barbeau', 'Laurie B. Friedman', 'Judy Sierra', 'Phil Hester', 'Jane Fallon', 'Fred Uhlman', 'Beth Fantaskey', 'Paul Kearney', 'Joyce Hinnefeld', 'Marguerite Abouet', 'Susan McCorkindale', 'David Grann', 'Meg Gardiner', 'John Granger', 'Rakesh Khanna', 'Carole Matthews', 'Kate Morton', 'Nadeem Aslam', 'Sebastian Barry', 'Tim  Reid', 'Ellen Booraem', 'Philip Norman', 'Bert Hölldobler', 'Peter V. Brett', 'Carrie Ryan', 'Kathleen Rooney', 'Radwa Ashour', 'Julius Lester', 'Al Dempster', 'Mustafa Ziyalan', 'Richard H. Thaler', 'Dan Barker', 'Marina Fiorato', 'Tawfiq Al-Hakim', 'رحاب بسام', 'Hooman Majd', 'أنيس منصور', 'Melissa Leapman', 'إحسان عبد القدوس', 'Lori G. Armstrong', 'أحمد خالد توفيق', 'Rowan Jacobsen', 'Courtney Summers', 'Amrei Fechner', 'Hideo Azuma', 'Kirsten Menger-Anderson', 'David Freddoso', 'Brian Francis Slattery', 'محمد الغزالي', 'يوسف زيدان', 'John Birmingham', 'Stefano Benni', 'William Davies King', 'Rachel Hawthorne', 'Erica David', 'Mark Billingham', 'Shirley Damsgaard', 'Jim C. Hines', 'Roland Merullo', 'Marshall B. Rosenberg', 'Mickey Z.', 'Peggy Alrich', 'Mark Cotta Vaz', 'Alissa Torres', 'Hertzan Chimera', 'R.J. Anderson', 'Mary Kay Andrews', 'Arthur Kemp', 'Charles Todd', 'F. Marion Crawford', 'Katie Alender', 'Giorgio Manganelli', 'Essam Youssef', 'Stefano M. Manelli', 'Francisco X. Stork', 'Leopoldo Gout', 'Damian Thompson', 'Julie Elizabeth Powell', 'Lettie Prell', 'Shirley Mae Doane', 'Ted Turner', 'Jim Tressel', 'F. Springer', 'Jerome R. Corsi', 'Anita Heiss', 'Jonathan Littell', 'Tara Singh', 'Konstanze von Schulthess', 'Steven Rage', 'Sarah L. Thomson', 'J.P.  Miller', 'Tim Tharp', 'Bruce McCall', 'Keith Johnstone', 'Lisa Mantchev', 'Seth Godin', 'Edmond de Goncourt', 'أحمد مراد', 'Nina Malkin', 'Tom Cain', 'Jorge Ibargüengoitia', 'Joe Parkin', 'Lucy Diamond', 'Stephen G. Bloom', 'Jonah Lehrer', 'Julie James', 'Eleanor Scott', 'Charles Lambert', 'Jonathan Fast', 'Chelle Cordero', 'Jennifer Worth', 'Gina Ranalli', 'Simon Sebag Montefiore', 'Benjamin Carter Hett', 'Fan-Hsi Wang', 'R.R. Ryan', 'Gary Fenchuk', 'Marina Dyachenko', 'Julie Crabtree', 'David Lozano Garbala', 'John Healy', 'Jerry A. Coyne', 'Alan Jacobson', 'Jeanette Winter', 'Constantin Virgil Gheorghiu', 'Michele Sakkara', 'Judy Blundell', 'Obama for Change', 'Jay P. Dolan', 'David Mazzucchelli', 'Carrie Jones', 'Jeanne Flavin', 'Roger Nichols', 'Deneys Reitz', 'Alex Beam', 'Sarah Graves', 'Tukufu Zuberi', 'Lynna Howard', 'Jedediah Berry', "Bianca D'Arc", 'Martin  Page', 'Laura Benedict', 'Ed Brubaker', 'Louise Penny', 'James D. Doss', 'Elizabeth Taylor', 'Richard Bimler', 'Philipp Meyer', 'Andrei Platonov', 'Joe Vitale', 'Kenneth Jarrett Singleton', 'Sofi Oksanen', 'C.S. Challinor', 'Leonard Cline', 'LIFE', 'Michael J. Sullivan', 'Robert Dunbar', 'Janette Rallison', 'Tom DeFalco', 'Richard  Holmes', 'Gayle Forman', 'Michael J. Lovaglia', 'Irene Watson', 'Stevie Woods', 'Vanessa Place', 'James     Kennedy', 'Tom Kirkbride', 'Chloe Neill', 'Alix Kates Shulman', 'صلاح جاهين', 'Shamus Sherwood', 'Ralph Adams Cram', 'J.R. Reardon', 'Valerian Pidmohylny', 'Garry Hamilton', 'Joseph T. McFadden', 'Fred Kaplan', 'Theodore L. Thomas', 'Michael Haag', 'Mary Pat Kelly', 'John W. Trimmer', 'Ilana Tan', 'Joel Rickett', 'Jennifer Echols', 'Julia Hoban', 'Gregory Solon', 'Erica Spindler', 'Traci Hunter Abramson', 'Amber Benson', 'Olen Steinhauer', 'Édouard Levé', 'Celine Kiernan', 'Thomas Dumm', 'Charlie Higson', 'Y. Tzvi Langermann', 'David E. Stuart', 'Kathryn Stockett', 'Felicia Martin', 'C.C. Humphreys', 'Christopher Barzak', 'Andrea Peyser', 'Janet Kaderli', 'David Peace', 'Tom Tomorrow', 'Kimberly Cheryl', 'Lauren Conrad', 'Yoshiki Nakamura', 'W.F. Harvey', 'Richard Lange', 'E.H. Visiak', 'Glenn C. Loury', 'Robert K. Oermann', 'Aliyah Burke', 'Syd McGinley', 'John Ralston Saul', 'Norm Brown', 'Katherine Howe', 'Joan     Thomas', 'Lawrence D. Brown', 'David Howarth', 'Jules Jones', 'James L. Merriner MA', 'Linda     Smith', 'Todd Hasak-Lowy', 'Peter Selgin', 'William R. Forstchen', 'Jeanne Willis', 'Robert Goolrick', 'صالح مرسي', 'Linda Bacon', 'Amanda Foreman', 'David Eagleman', 'Shu-Tse Peng', 'Angela Lam', 'Paul Harding', 'Guy N. Smith', 'Carrie Fisher', 'J.M.G. Le Clézio', 'Dana Marie Bell', 'Joseph Frank', 'Mark J. Allman', 'Laura Moriarty', 'Linda Vieira', 'Alexander Laing', 'Seth', 'Beverly Connor', 'Susie Boyt', 'Amanda Lees', 'Megan Frazer Blakemore', 'Barry Popkin', 'Louisa Gilder', 'Raven Gregory', 'Kerry Cohen Hoffmann', 'Jonathan Javitt', 'Robert Hillary King', 'Mark Steel', 'Edward C. Patterson', 'Philipp Freiherr von Boeselager', 'Chris  Evans', 'Tim Hamilton', 'Paul Kent', 'Carolyn McCulley', 'Tiziano Terzani', 'Sarah Ockler', 'Margaret Clunies Ross', 'Carolyn Turgeon', 'Gillian Shields', 'Jayne Anne Phillips', 'Zachary Karabashliev', 'Rachel Hawkins', 'Graham Edwards', 'Jules Abels', 'Rebecca Stead', 'Catherine M. Wilson', 'Eric Van Lustbader', 'Nikolai Haitov', 'Abby Sallenger', 'Rhiannon Frater', 'Amanda McKittrick Ros', 'May Sarton', 'Roger K. Butlin', 'Russell Lutz', 'Frank Gifford', 'Kirk St Moritz', 'Cameron Pierce', 'John Hart', 'Isabel Wolff', 'Scout Tufankjian', 'Eric Gjerde', 'Mike Kalvoda', 'Arielle Ford', 'Faith Hunter', 'Lawrence M. Schoen', 'Mark Rowlands', 'J.L. Langley', 'Kathleen Duey', 'William B. Irvine', 'Molly Harper', 'Dave Cullen', 'Daniel Scott Buck', 'Janrense Boonstra Marie-Jose Rjinders', 'Bruno Forte', 'Jay Bonansinga', 'Jasmine Becket-Griffith', 'Marcus Fedder', 'Glenn G. Thater', 'Clive Blake', 'Yusuf Idris', 'Lisa Greenwald', 'Olivier Ameisen', 'Jonathan L. Howard', 'Richard Kadrey', 'Randy Davila', 'Austin Ratner', 'Jenny Han', 'Rob Dunn', 'Roy Lessin', 'Amber Kizer', 'Quentin R. Bufogle', 'Peter Lerangis', 'Tymber Dalton', 'Seth Grahame-Smith', 'Maria Mosterd', 'Robert A. Mundell', 'Nozomu Tamaki', 'Colum McCann', 'Moyoco Anno', 'Sharon Lathan', 'Jude Watson', 'Jennifer Ashley', 'Selena Kitt', 'Suzanne LaFleur', 'Brian Katcher', 'Shane Moore', 'Shane Moore Katie Chatfield', 'Grace Lin', 'كريم الشاذلي', 'Philippe Claudel', 'Melody Beattie', 'Frank J. Kinslow', 'Steve Adkisson', 'Mahbod Seraji', 'Andrew Klavan', 'Jonathan Lyons', 'Lili St. Crow', 'Kate Harrison', 'J. Hunter Holly', 'Sue McGinty', 'Christopher Ransom', 'Nick Burd', 'Alma Hudson', 'Steve Halle', 'Torsten Krol', 'Gregory Cochran', 'Diane Hennacy Powell', 'Monteiro Lobato', 'Rachel Renée Russell', 'Eugene Nwosu', 'Charles Bock', 'Guillermo del Toro', 'William Rabkin', 'Blaga Dimitrova', 'Clay Hayes', 'Linda Winfree', 'Roger Priddy', 'Alija Izetbegović', 'Lawrence Hill', 'Sun Myung Moon', 'P.W. Catanese', 'Jeffrey Zaslow', 'Lev Grossman', 'Linda  Castillo', 'Ron Barlow', 'Kei Kusunoki', 'L. Jagi Lamplighter', 'Ian A.F. Stokes', 'Lisa Barnes', 'Sonia Orchard', 'Barbara Demick', 'James Dashner', 'Bryce Anderson', 'Audrey Niffenegger', 'Maurice Level', 'Jacqueline Kelly', 'Catherine Hardwicke', 'Attica Locke', 'Ilias Venezis', 'Μαρία Ιορδανίδου', 'Nick Reding', 'Alan Bradley', 'Ibrahim Nasrallah', 'Jonathan Tropper', 'Sissel-Jo Gazan', 'David Gaider', 'Megan Crewe', 'Erick Setiawan', 'Matthew  Cory', 'Timothy J. Shannon', 'Allison Hoover Bartlett', 'Francesca Kay', 'Ricki Lake', 'Zoran Živković', 'Sayed Qutb', 'Hiroshi Sakurazaka', 'Phillip E. Jones', 'Nicholas D. Kristof', 'Paula Morris', 'Stacia Kane', 'Jessica Bendinger', 'Gwen Cooper', 'Kimberly Derting', 'Margo Machida', 'Pel Torro', 'Aladdin Elaasar', 'Ismael Camacho Arango', 'David Nicholls', 'Adam Cohen', 'Christopher McDougall', 'Seanan McGuire', 'Nduka Onwuegbute', 'Kami Garcia', 'Brom', 'Abra Ebner', 'Piper Kerman', 'Janice Hardy', 'Jennifer Brown', 'Jill Williamson', 'Richard Zoglin', 'Eliyzabeth Yanne Strong-Anderson', 'Dash Shaw', 'Kerstin Gier', 'Penelope Delta', 'محمد قطب', 'Ben Mezrich', 'Alexandros Papadiamantis', 'Michael Alan', 'Ali Shariati', 'Heather Gudenkauf', 'Amy Efaw', 'Nicholas Eberstadt', 'Becca Fitzpatrick', 'Dan Wickline', 'Katherine Marple', 'Michael  West', 'Joshua Foer', 'Andrus Kivirähk', 'Gloria Tesch', 'Jackson Pearce', 'Jun Mochizuki', 'Lola Jaye', 'Dia Reeves', 'Shivaji Sawant', 'Robert Crumb', 'Nina LaCour', 'Lawrence     Anthony', 'Bree Despain', 'Gail Carriger', 'Jane Seville', 'William  Klein', 'William Edmund Barrett', 'Hugh Walpole', 'Christopher Yost', 'Raina Telgemeier', 'Annabel Lyon', 'Gretchen Rubin', 'Tika Newman', 'Joseph Laycock', 'Rei Hiroe', 'David Small', 'Karl Marlantes', 'Lauren Kate', 'Benjamin Alire Sáenz', 'William Kamkwamba', 'Don  Inman', 'Alexander Gordon Smith', 'Brian Celio', 'Ben H. Winters', 'Joe Kelly', 'N.K. Jemisin', 'Kay Meredith', 'Rebecca Solnit', 'Linda Masemore Pirrung', 'Sophie Jordan', 'Julia Golding', 'Michael J. Sandel', 'Nawal El Saadawi', 'Edward   Anderson', 'Bil Wright', 'Stephen Motyer', 'Liane Moriarty', 'Malinda Lo', 'Gary Vaynerchuk', 'David Dosa', 'Andre Agassi', 'Margit Sandemo', 'Lauren Oliver', 'Roma Tearne', 'Rebecca Skloot', 'Apostolos Doxiadis', 'Po Bronson', 'Bart Yasso', 'Coleman  Luck', 'Leila Meacham', 'Karen Healey', 'Jef Geeraerts', 'Heath Sommer', 'Anthony E. Zuiker', 'Robert M. Edsel', 'Michael Cart', 'Masha Hamilton', 'Lesley Hazleton', 'Jerry Pinkney', 'Rabih Alameddine', 'Kristen Ashley', 'Melanie Benjamin', 'Sebastian Junger', 'M.Rahmatullah Kairanvi', 'Don Carpenter', 'Rafael Cardenas', 'Richard Castle', 'Scott Inguito', 'Timothy Snyder', 'Sarah Blake', 'Alexandra Bracken', 'Michelle Harrison', 'Bettina Arndt', 'Derek Prince', 'Angela Morrison', 'Paolo Bacigalupi', 'Florence Marryat', 'Padgett Powell', 'Jandy Nelson', 'Hanns Heinz Ewers', 'Carla Capshaw', 'Elizabeth Eulberg', 'Rachel Ward', 'Sharon M. Draper', 'Jennifer Estep', 'Tom Waters', 'Paolo Giordano', 'David Graeber', 'Beth Hoffman', 'Kiera Cass', 'Menelaos Lountemis', 'Mohammed Hanif', 'Nelson Mandela Foundation', 'Sherry Maroon', 'David Finkel', 'J.D.R. Peterson', 'Shannon Avery', 'Helen Simonson', 'Julie Kagawa', 'Marina Tsvetaeva', 'Janne Teller', 'David Cowan', 'Jake Adelstein', 'Christine   Johnson', 'Hiro Fujiwara', 'A.S. King', 'Daniel Suarez', 'Atul Gawande', 'Guy Johnson', 'محمد المويلحي', 'Jaron Lanier', 'Dustin Diamond', 'Elly Griffiths', 'Justin Cronin', 'Yana Toboso', 'Suguro Chayamachi', 'Susan Abulhawa', 'John Heilemann', 'Y.S. Lee', 'Claude Bouchard', 'Karl Ove Knausgård', 'Eleanor Sleath', 'Alyxandra Harvey', 'Chabua Amirejibi', 'Akira Himekawa', 'Anne Fortier', 'Mahmoud Darwish', 'Jason Fried', 'Thomas Heggen', 'Mark Fisher', 'Glenda Larke', 'Shirow Miwa', 'Alex Scarrow', 'Kanoko Sakurakouji', 'Ferdinand von Schirach', 'Michelle Alexander', 'Philip Wylie', 'Shigeyoshi Takagi', 'Ingeborg Baldauf', 'Rinko Ueda', 'Aprilynne Pike', 'Steve Hamilton', 'Kathleen Grissom', 'Laura Weakley', 'José Antonio Cotrina', 'Vicente Risco', 'Crystal Rose', 'L.A.   Lewis', 'Jennifer Knox', 'William  Gilbert', 'Shilpi Somaya Gowda', 'Jennifer Lynn Barnes', 'Bill Boyarsky', "Caragh M. O'Brien", 'David Lipsky', 'Antonis Samarakis', 'Karen Mahoney', 'Kody Keplinger', 'John Burnside', 'Stephanie Perkins', 'M. Karagatsis', 'Jennifer Murgia', 'Motorō Mase', 'Leonard Scheff', 'Jia Lu', 'أحمد خيري العمري', 'Sofie Laguna', 'Julia Donaldson; Axel Scheffler', 'Anna Maxted', 'Stacey Kade', 'Robert P. Swierenga', 'Radhanath Swami', 'Ben Logan', 'Brené Brown', 'Kat Falls', 'Luís Caminha', 'Kat Hausler', 'Anthony Arnold', 'Deborah Blum', 'Camilla Läckberg', 'Frances Hardinge', 'Ana Ingham', 'Wes  Moore', 'Ebenezer Murgatroyd', 'Simon Sinek', 'Valerie J. Steimle', 'Paul  Hoffman', 'Saira Viola', 'أثير عبدالله النشمي', 'Thomas E. Sniegoski', 'Kelly Creagh', 'Ann Aguirre', 'Grigory Petrov', 'Tom Angleberger', 'R. Malone', 'مالك بن نبي', 'Jessica Verday', 'Chevy Stevens', "Kate O'Hearn", 'Siddhartha Mukherjee', 'Marco Denevi', 'David McCleary', 'Leslie H. Whitten Jr.', 'Alyson Noel', 'Laurann Dohner', 'Oliver Bowden', 'محمد جلال كشك', 'Shannon Delany', 'Jenna Black', 'Armando Cosani', 'Sam Kean', 'Ken Sheffer', 'Andrea Cremer', 'Courtney Allison Moulton', 'Mark Hodder', 'Shahriar Mandanipour', 'Lalithambika Antharjanam', 'Riley Brooks', 'Akihisa Ikeda', 'Emilie Autumn', 'James  Riley', 'Jeff Strand', 'Richard C. Morais', 'Jean Kwok', 'Dougal Dixon', 'Neil Pasricha', 'Eliot Dickinson', 'Martin Bois', 'Chika Shiomi', 'Николай Теллалов', 'T. Rafael Cimino', 'Cynthia Hand', 'Nwaocha Ogechukwu', 'Georges Duhamel', 'Brenna Yovanoff', 'Dalene Matthee', 'Hannu Rajaniemi', 'Kim Thúy', 'Dan Wells', 'Young Kim', 'Sarat Chandra Chattopadhyay', 'محمد صالح المنجد', 'Jens Christian Grøndahl', 'Christopher  Ryan', 'S.C. Gwynne', 'Morgan Matson', "Rom LcO'Feer", 'Böðvar Guðmundsson', 'Lynn Raven', 'حسن الجندي', 'M. Louisa Locke', 'ปรีดี พนมยงค์', 'Jón Kalman Stefánsson', 'Max Heindel', 'Carlos Marchi', 'Kiersten White', 'W. Bruce Cameron', 'Alexander Osterwalder', 'Charles Yu', 'Ally Condie', 'J.R. Rain', 'Mark Doty', 'Rebecca Maizel', 'Pittacus Lore', 'Ursula Poznanski', 'Gary  Miller', 'Wahiduddin Khan', 'Abdul-Majeed Zindani', 'Barry Lyga', 'Alma Katsu', 'Alexandra Adornetto', 'David Grossman', 'Rob Buyea', 'Nicky Charles', 'Peter Haining', 'Maculategiraffe', 'Maria Àngels Anglada', 'Justin Halpern', 'Edmund de Waal', 'Ruta Sepetys', 'Adam Gidwitz', 'Melanie Dickerson', 'Elle Jasper', 'Peg Bracken', 'George Booth', 'Hilary Duff', 'James McCudden', 'Josephine Angelini', 'Colleen Houck', 'John Verdon', 'Michael R. Young', 'Cath Crowley', 'Yvonne Woon', 'Lisa Tawn Bergren', 'Gib I. Mihăescu', 'Sarah J. Maas', 'Lindsay Anne Kendal', 'Jeffrey Thomas', 'Amish Tripathi', 'Kitty Thomas', 'Mariam Petrosyan', 'Todd Burpo', 'Tom Franklin', 'Gwen Hayes', 'Stacy Schiff', 'Marc Levy', 'Carsten Jensen', 'Laurent Binet', 'Richard Reich', 'Cordelia Fine', 'Amanda Hocking', 'Bruce K. Alexander', 'Julia Navarro', 'John Shelby Spong', 'Robert L. Semel', 'S.L. Naeole', 'Eileen Egan', 'George W. Bush', 'Alexandra Monir', 'Kelly Keaton', 'Muhammad Mohar Ali', 'Shawn Wunjo', 'Michael Hastings', 'Caitlín R. Kiernan', 'Ais', 'Mark Tufo', 'Isabel Wilkerson', 'Rosamund Lupton', 'K.D. McMahon', 'Mi-Kyung Yun', 'Tina Reber', 'J.R. Parker', 'Maki Minami', 'Beth Revis', 'رضوى عاشور', 'Douglas Boren', 'François Lelord', 'James C. Taylor', 'Clare Vanderpool', 'Beate Grimsrud', 'Joss Stirling', 'Madison Grant', 'Téa Obreht', 'Olivia Cunning', 'Craig Silvey', 'James C. Martin', 'Leah Clifford', 'Heather Dixon Wallwork', 'Tatyana K. Varenko', 'Fábio Moon', 'Laini Taylor', 'Susan Cain', 'B.R. Ambedkar', 'Lauren DeStefano', 'Jana Oliver', 'Thanhhà Lại', 'Lauren Beukes', 'John Corey Whaley', 'Shin Kyung-Sook', 'Cat Clarke', 'Ann Voskamp', 'Nova Ren Suma', 'Janet E. Morris', 'John  Stephens', 'Jessica Shirvington', 'Howard Jacobson', 'Katie Kacvinsky', 'Deborah Harkness', 'Susan Hill', 'Amyas Northcote', 'Paula McLain', 'Rebecca  Zanetti', 'Keigo Higashino', 'Asa Don Brown', 'C.C. Hunter', 'Justin Bieber', 'Darynda Jones', 'M. Mukundan', 'James S.A. Corey', 'Sarah Winman', 'David P. Clark', 'John  Blackburn', 'Rainbow Rowell', 'Francine Pascal', 'Joseph Rinaldo', 'Amit Ray', 'Ruth Downie', 'Dawn Nelson', 'Wajdi Mouawad', 'Amy  Chua', 'Kady Cross', 'Lidia Yuknavitch', 'Hiroaki Samura', 'Mieke Bal', 'Yan Lianke', 'Tara Hudson', 'Claire LaZebnik', 'Louise Bagshawe', 'Tessa Dawn', 'R.D. Ronald', 'Anna Carey', 'C.S. Pacat', 'Chingiz Abdullayev', 'Ben Aaronovitch', 'Sarah Blakley-Cartwright', 'Erin Morgenstern', 'Kendare Blake', 'Gordon Andrews', 'Brodi Ashton', 'Tina Fey', 'Kairi Yura', 'Keith Richards', 'Jay Lake', 'Ransom Riggs', 'Martha Wells', 'Amy Plum', 'Iain Parke', 'Oliver Pötzsch', 'Holger Drachmann', 'Kevin Hearne', 'Tyra Banks', 'L.A. Weatherly', 'Robin LaFevers', 'Mark  Lawrence', 'Donovan Hohn', 'Megan Abbott', 'Vera Brosgol', 'Bano Qudsia', 'Christine M. Knight', 'Daniel H. Wilson', 'Thea Harrison', 'Rick Perry', 'Marie MUSEO EDITIONS', 'Brian Selznick', 'Pier Paolo Pasolini', 'Julianna Baggott', 'Jennifer L. Armentrout', 'Aimee Carter', 'Jamie McGuire', 'نور عبدالمجيد', 'Mitchell Zuckoff', 'S.J. Watson', 'Konstantine Gamsakhurdia', 'W.H. Auden', 'Luigi Natoli', 'Nicholas Carr', 'Mike Dooley', 'David Nickle', 'Blake Crouch', 'Lars Kepler', 'Kelli Sullivan', 'Patrick deWitt', 'Jessica  Hamilton', 'Miranda Kenneally', 'Robin Renee Ray', 'Moira Young', 'Sergiusz Piasecki', 'Olivia Howard Dunbar', 'Gabriela Avigur-Rotem', 'Ernest Cline', 'Celso Cukierkorn', 'Ilsa J. Bick', 'Chris Thrall', 'Faraaz Kazi', 'Eliezer Yudkowsky', 'Iris Damico', 'Vanessa Diffenbaugh', 'Amor Towles', 'Michael      Davis', 'Eric Ries', 'Sylvain Reynard', 'Amanda E. Alvarez', 'Susan Elia MacNeal', 'Jojo Moyes', 'Michael J. Arlen', 'Sadie Jones', 'Leigh Bardugo', 'Katie McGarry', 'Rob Lowe', 'Jay Bell', 'Debra Driza', 'Adam Nevill', 'Michael Siemsen', 'Haresh Daswani', 'Cindy C. Bennett', 'Tyler Whitesides', 'Morgan Rice', "Patrick K. O'Donnell", 'Mindy Kaling', 'Leigh Fallon', 'Jessica Warman', 'Amber Argyle', 'Jocelyn Davies', 'Tahereh Mafi', 'Rae Carson', 'Colin Meloy', 'Evangeline Anderson', 'هبة سيد عبد العاطي', 'Maile Meloy', 'Adrian Ross', 'Margaret Leroy', 'Heather Anastasiu', 'David Gregory', 'Guram Dochanashvili', 'Caitlin Moran', 'Richard E. Kim', 'Kristen Simmons', 'Adam Świeżyński', 'Aniela Korzeniowska', 'Jessica Anthony', 'Wendy    Wunder', 'Trevor Shane', 'Andreas Eenfeldt', 'Jennifer E. Smith', 'Daniel Handler', 'Jonathan Auxier', 'Daisuke Sato', 'E.L. James', 'Jussi Adler-Olsen', 'Rachel Higginson', "Daniel O'Malley", 'María Dueñas', 'Jeyn Roberts', 'Jesmyn Ward', 'Jennifer Rush', 'V.E.  Schwab', 'Addison Moore', 'Jay Asher', 'Christine E. Schulze', 'Chad Harbach', 'Mats Strandberg', 'Steve Davies', 'Donato Carrisi', 'Hugh Laurie', 'Kat Zhang', 'Jessica Sorensen', 'Katheryn Kimbrough', 'E.M. Jade', 'Tara Gilesbie', 'Tamara Ireland Stone', 'Ben Sherwood', 'Richard W. Wrangham', 'Lynda La Plante', 'Dennis Sharpe', 'Αντώνης Σαμαράκης', 'Allan W. Eckert', 'Gabriella  Lepore', 'Norman Allan', 'Pavlos Matesis', 'Marissa Meyer', 'Madeline Miller', 'Jayde Scott', 'Katie Davis Majors', 'Mary Ting', 'Antonia Michaelis', 'Florencia Bonelli', 'Beth Groundwater', 'Jaycee Dugard', 'Jan-Philipp Sendker', 'Anne Bannerman', 'J.D. Stroube', 'Suzanne Young', 'William Landay', 'R.L. Mathewson', 'Jess Rothenberg', 'R.J. Palacio', 'Michelle Hodkin', 'Kyle Keyes', 'Jess Walter', 'Angelo Tsanatelis', 'Patricia H. Graham', 'Julie Cross', 'Gerald Messadié', 'Daniel Kahneman', 'Abbi Glines', 'Susan Ee', 'Denis Guedj', 'Michael Rowe', 'Adam  Johnson', 'Rebecca    Donovan', 'Samantha Ryan Chandler', 'Veronica Rossi', 'Katherine Applegate', 'Chris Colfer', 'Pu Songling', 'Oliviu Crâznic', 'Madhan', 'Lauren Morrill', 'Richard P. Rumelt', 'Veronica Roth', 'Ruth Frances Long', 'Kate Egan', 'Stuart Gibbs', 'Anne Elisabeth Stengl', 'Blaine Harden', 'M.G. Wells', 'Wendy Higgins', 'Lissa Price', 'Andrew  Smith', 'Katherine Boo', 'Jus Accardo', 'Chris Kyle', 'Elizabeth Wein', 'Quinn Loftis', 'Gerard Walschap', 'Alexander Jovy', 'A.C. Gaughen', 'Kasie West', 'Lauren Child', 'G.D. Falksen', 'Chelsea Luna', 'Nely Cab', 'Lucy Felthouse', 'Serafín Álvarez Quintero', 'Richard Denning', 'Belsebuub', 'Roque Dalton', 'Elizabeth Norris', 'Daron Acemoğlu', 'Jean  Clarke', 'Miguel Torga', 'Kealan Patrick Burke', 'Jonathan Culver', 'Cheryl Strayed', 'Chris Titus', 'Hugh Howey', 'Megan Shepherd', 'Huntley Fitzpatrick', 'Alan Duff', 'Aleatha Romig', 'Jeet Thayil', 'Jo Knowles', 'Περικλής Κοροβέσης', 'T.L. Shreffler', 'Jon Ronson', 'Victoria Foyt', 'James Bowen', 'Tom   Davis', 'Karen Thompson Walker', 'Mokkapati Narasimha Sastry', 'Babe Walker', 'Anna Banks', 'Jennifer A. Nielsen', 'C.J. Roberts', 'Veronica Blade', 'A.G. Howard', 'C.J. Daugherty', 'Charles Duhigg', 'Chris  Pavone', 'J.R. Hamantaschen', 'Jen Campbell', 'Shelly Crane', 'L.A. Freed', 'Cat Patrick', 'Jesse Andrews', 'Alecia Stone', 'Jose Dellepiane', 'Teri Terry', 'Emmy Laybourne', 'Johan Harstad', 'Michael  Smith', 'Julianne Donaldson', 'Shannon Messenger', 'Andy Szpuk', 'Jenny  Lawson', 'Carol Rifka Brunt', 'Chelsea Fine', 'Amy A. Bartol', 'Lynda Mullaly Hunt', 'Catherine McKenzie', 'Morgan Rhodes', 'Janet  Edwards', 'Karen Witemeyer', 'Jennifer Loren', 'Benito Taibo', 'Bob Powell', 'Brigid Kemmerer', 'Pet Torres', 'Carrie Salo', 'Hotaru Odagiri', 'Basil Wolverton', 'Debra Anastasia', 'Patrick Ness', 'Charles Simeon', 'Jeanne Ryan', 'Andrey Gelasimov', 'Austin Kleon', 'pleasefindthis', 'William Hertling', 'Kelli McCracken', 'Amie Kaufman', 'Bethan Roberts', 'Jill Leovy', 'Hajime Isayama', 'M.L. Stedman', 'Herta Müller', 'Sergio de la Pava', 'Nikolas Schreck', 'Karen Ann Hopkins', 'Rachel Joyce', 'Tui T. Sutherland', 'Yiannis Ritsos', 'محمد سالم عبادة', 'Tarryn Fisher', 'Joelle Charbonneau', 'Mark Frost', 'Kuttikrishna Marar', 'Maya Banks', 'Stephanie Osborn', 'Chanda Hahn', 'Beth Reekles', 'Theo Lawrence', 'James   Jackson', 'Marie Lu', 'Will Schwalbe', 'Διδώ Σωτηρίου', 'Tasos Leivaditis', 'Vazha-Pshavela', 'Aesop Rock', 'Clint Catalyst', 'Ιάκωβος Καμπανέλλης', 'Kate Douglas Wiggin', 'Jessica Khoury', 'Matthew Quick', 'Jennifer Probst', 'Jonas Jonasson', 'José Mauro de Vasconcelos', 'Bob Goff', 'Danielle Willis', 'Akilan', 'Non Nomen', 'Florence Morris Rose', 'Sharon Cramer', 'Cristin Terrill', 'Glenn J. Soucy', 'Andrew James Pritchard', 'Bethany Wiggins', 'Amy Tintera', 'S.C. Stephens', 'Teresa Mummert', 'Robyn Schneider', 'Cal Newport', 'Maria Semple', 'Kurt Busiek', 'Vera Jane Cook', 'Cassandra Rose Clarke', 'Ann Charters', 'Matthew Dicks', 'Robin Sloan', 'Susannah Cahalan', 'Andrew Shaffer', 'Jillian Dodd', 'Mikheil Javakhishvili', 'Stewart Hennessey', 'Anthony Ryan', 'Melissa Landers', 'Юлий Буркин', 'Sarah Scheele', 'Lauren Klever', 'A.G. Lafley', 'Nate Silver', 'Stein Erik Lunde', 'Sylvia Day', 'Madeleine Roux', 'Brett Axel', 'Margaret Sidney', 'Theodore Weesner', 'J. Lynn', 'André Malraux', 'Kirsty Moseley', 'سعود السنعوسي', 'Bernadette Azizi', 'Ramez Naam', 'Aporva Kala', 'Frank Bellezza', 'Reginald Bakeley', 'Teri-Anne', 'Ольга Мак', "David A. O'Brien", 'Jack Cole', 'Richard Belzer', 'Ashley Capes', 'M.K. Sanu', 'Jozef Rothstein', 'أشرف العشماوي', 'kkat', 'Brian McKinley', 'Gabriela Mistral', 'Michelle Cohen Corasanti', 'Erica Stevens', 'Ruby Gupta', 'Judith Schalansky', 'Jim L. Wright', 'Gloria Steinem', 'Tracey Garvis Graves', 'Colleen Hoover', 'Mhairi McFarlane', 'Durjoy Datta', 'Molly McAdams', 'Sophie Morgan', 'Jessica Loving', 'John Gwynne', 'Alan Gratz', 'John  Kellett', 'Samantha Young', 'Christine Zolendz', 'Kimberly McCreight', 'J. Sterling', 'Brian  McClellan', 'Emily  Murdoch', 'Herman Koch', 'Denise Kiernan', 'Jason  Matthews', 'Stephen Dobyns', 'Travis Bradberry', 'Ruth Ozeki', 'Christina Baker Kline', 'Elizabeth Haynes', 'Helene Wecker', 'Michael D. Watkins', 'Robert D. Fulk', 'Jenna Miscavige Hill', 'Scott McElhaney', 'Laura Nowlin', 'Pierce Brown', 'Rosamund Hodge', 'Isaac Marion', 'Jen Sincero', 'Eben Alexander', 'Alice Clayton', 'Anšlavs Eglītis', 'Holly Goldberg Sloan', 'Sandy Klein Bernstein', 'Travis Luedke', 'Bob Atkinson', 'K.A. Tucker', 'Richard E. Harwood', 'J.K. Accinni', 'Nyrae Dawn', 'Jessica Park', 'Abigail Gibbs', 'M. Leighton', 'Lisa Collicutt', 'Ally Shields', 'Christopher  Shields', 'Joël Dicker', 'Cora Carmack', 'Olaf Olafsson', 'Michelle A. Valentine', 'Leandi Cameron', 'Isabelle Rae', 'Chris Grabenstein', 'Tammara Webber', 'Nathan Ballingrud', 'April Henry', 'Katie Ashley', 'Timothy   Miller', 'A.  Kirk', 'Kendall Jenner', 'Marie Rutkoski', 'Sheryl Sandberg', 'Abigail Haas', 'Najeev Raj Nadarajah', 'J.A. Redmerski', 'Kevin Kwan', 'Jez Jones', 'Bill Konigsberg', 'Alex London', 'Christina Lauren', 'Madeline Sheehan', 'Naoki Higashida', 'Nathan Filer', 'Liz  Thomas', 'C.E. Kilgore', 'Matt Haig', 'RaeBeth McGee-Buda', 'Tijan', 'R.K. Lilley', 'Ripley Patton', 'Jodi Ellen Malpas', 'Jim Gaffigan', 'Kelly Braffet', 'Nemo Ramjet', 'Katja Millay', 'Ivan Bahrianyi', 'Brae Wyckoff', 'Daniel James Brown', 'Abigail Roux', 'Robert Galbraith', 'A.S.A. Harrison', 'Rebekah McClew', 'Graeme Simsion', 'Joe Connolly', 'Cindy Springsteen', 'C. Toni Graham', 'Yuehai Xiao', 'Yangsze Choo', 'Gena D. Lutz', 'Harold R. Isaacs', 'Tina Traverse', 'Noreen Abdullah-Khan', 'Sarah Ann Walker', 'Frederik van Eeden', "Jun'ichi Watanabe", 'Georgia Cates', 'Ödön von Horváth', 'Péter Nádas', 'Antonio Muñoz Molina', 'Mahasweta Devi', 'Samantha    Shannon', 'Jay Crownover', 'Monica  Murphy', 'Kevin Brooks', 'J.C. Valentine', 'Alissa Nutting', 'Bernard Capes', 'Vi Keeland', 'M.R. Carey', 'Tabitha McGowan', 'Anne Holt', 'Ronda Paige', 'Nora Sakavic', 'Dmitry Glukhovsky', 'Jennifer Loiske', 'Sandi Lynn', 'Elizabeth  Smart', 'I.M. Nobody', 'Julie Berry', 'Irina Binder', 'Karena Marie', 'Joe Simon', 'Nicole  Banks', 'Katie Cotugno', 'Inga Ābele', 'Kass Morgan', 'Eleanor Catton', 'Hannah Kent', 'Ann Leckie', 'John             Lewis', 'Chelsea M. Cameron', 'Katherine Rundell', 'Joanna Wylde', 'Carol Wyer', 'Sara Raasch', 'Jeff Noon', 'Abi Ketner', 'Jenny Offill', 'Greg Sestero', 'Sara B. Larson', 'Shay Savage', 'Jasinda Wilder', 'Dane Richter', 'Cristiane Serruya', 'Robin Wall Kimmerer', 'Avery Aster', 'Christina Mercer', 'Jessica Clare', 'M.P. Attardo', 'Reza Aslan', 'Nick Cutter', 'Allie Brosh', 'Lee Edward Födi', 'Betty Friedan', 'Robert Venditti', 'Katy Evans', 'Anne Blankman', 'Riley Banks', 'James R. Hannibal', 'Esther Earl', 'Sheri Fink', 'Sun-mi Hwang', 'Paige Weaver', 'Donna K. Childree', 'Leigh Byrne', 'Amber Lea Easton', 'K. Bromberg', 'Sasha Grey', 'Rucy Ban', 'Mia Sheridan', 'Laurelin Paige', 'Linda Kage', 'Lisa De Jong', 'Malala Yousafzai', 'Terri Anne Browning', 'J.J. Abrams', 'G.X. Chen', 'Darrius Garrett', 'Ben Peller', 'Anastacia Moore', 'Richard Flanagan', 'Joseph Sweet', 'Elizabeth Kolbert', 'M.S. Willis', 'Amelia Hutchins', 'Belle Aurora', 'George Seferis', 'Hannah Pole', "Jessica O'Gorek", 'Elle Casey', 'Kylie Scott', 'Michael   Jensen', 'Mia Asher', 'Lang Leav', 'Soman Chainani', 'Andy Weir', 'Kate Breslin', 'Amanda Lindhout', 'Peter Thiel', 'Joe Dispenza', 'Katty Kay', 'Danielle  Paige', 'Robin Stevens', 'Greg McKeown', 'Ed Catmull', 'Sally Green', 'Tammy Falkner', 'Rysa Walker', 'Saroo Brierley', 'Cheryl McIntyre', 'Angel Sefer', 'Rachel Van Dyken', 'Pepper Winters', 'Terry  Reid', 'Siri Pettersen', 'Ava Dellaira', 'Emma       Steele', 'Marina Keegan', 'Anthony Doerr', 'Terry Hayes', 'Bob Chipman', 'Will Holcomb', 'Steven A. McKay', 'Leslye Walton', 'Chris Hadfield', 'Liz  Cowan', 'Bill Courtney', 'Kate Milford', 'Luca  Rossi', 'Joel C. Rosenberg', 'Kwame Alexander', 'Teresa Garcia', 'Kanae Hazuki', 'Emma Chase', 'Manès Sperber', 'Robert Guenette', 'Kate  McCarthy', 'Jalpa Williby', 'Karen  Prince', 'Renee Carlino', 'Jasmine Warga', 'J.M. Darhower', 'Aurora Rose Reynolds', 'Felix Abt', 'Collette Sinclaire', 'Lisa Gillis', 'C.L. Stone', 'Helen Rappaport', 'Roy Huff', 'Anthony Marra', 'Jennifer Niven', 'Karl Wiggins', 'M.K. Eidem', 'Solomon Northup', 'Demi Lovato', 'Josh Malerman', 'Jessie Burton', 'Steven Long Mitchell', 'Jana Petken', 'Dan   Harris', 'Patty Blount', 'Henry Summersett', 'Ella James', 'Sorin Suciu', 'Lisa Cherry', 'Peggy McColl', 'Rick Chiantaretto', 'Jay McLean', 'Eva García Sáenz', 'Emily Carroll', 'Joanne M. Harris', 'Sui Ishida', 'Sophia Amoruso', 'Ryan Holiday', 'Christopher   Clark', 'Karen Abbott', 'Nicola Yoon', 'Celeste Ng', 'Bessel van der Kolk', 'Trisha Paytas', 'Sona Charaipotra', 'Zack Love', 'Wildbow', 'David  Arnold', 'Thomas Piketty', 'Hendri Coetzee', 'Lili St. Germain', 'James Chalk', 'Tillie Cole', 'J.G. Perrin', 'Fredrik Backman', 'Gail McHugh', 'Renée Ahdieh', 'Al Ewing', 'Helen Macdonald', 'Mary Kubica', 'Roxane Gay', 'Edward Bulwer-Lytton', 'K.L. Randis', 'Onyeka', 'Richard Lloyd Parry', 'Charles A. Coulombe', 'Karen (Kara) Brueggeman', 'E.T. Jaynes', 'Amy Harmon', 'Meredith T. Taylor', 'Graça Jacinto', 'Rusty Young', 'Micol Ostow', 'Roberta Pearce', 'Bev Stout', 'Susan Fanetti', 'Lesia Ukrainka', 'J.M. Johnson', 'N.D. Stevenson', 'Ravinder Singh', 'Taylor Ann Bunker', 'John Patrick Kennedy', 'Victor Noble', 'Adam Silvera', 'Becky Albertalli', 'Rachel Hartman', 'Neil Patrick Harris', 'Emily St. John Mandel', 'Michelle Knight', 'Jerilee Kaye', 'Source Wikia', 'Angie Martin', 'William  Ritter', 'خولة حمدي', 'محمد صادق', 'Bryan Stevenson', 'Brittainy C. Cherry', 'Othen Donald Dale Cummings', 'Simon W. Clark', 'Nikolas Lee', 'Ashley Waelti', 'B. Kristin McMichael', 'Adrienne Woods', 'Liu Cixin', 'Nick Bostrom', 'Jason Luke', 'Donnie  Smith', 'Cristina M. Sburlea', 'Ari Bach', 'Lena Dunham', 'Mariana Zapata', 'Alice Oseman', 'Krista Ritchie', 'A.R. Torre', 'Amy Engel', 'M. Pierce', 'Neil deGrasse Tyson', 'Cece Bell', 'Claire North', 'Lisa Unger', 'Allen Eskens', 'Whitney G.', 'Lanie Bross', 'Jan Raymond', 'Jacqueline Woodson', 'Maria Johnsen', 'James Conroyd Martin', 'Stevie Turner', 'Marlon James', 'Myrtle Reed', 'Amy Poehler', 'Arwen Elys Dayton', 'Kimberly Brubaker Bradley', 'M.S. Matassa', 'Amanda Palmer', 'R.S. Thomas', 'Laura Bates', 'Leisa Rayven', 'Cary Elwes', 'Randall Munroe', 'Susan Dennard', 'Genevieve Cogman', 'Lola Smirnova', 'Tanya Thompson', 'Laurence E. Dahners', 'J.J. McAvoy', 'Jasmine  Rose', 'Peter  Swanson', 'Caroline Pitcher', 'Sarah  Robinson', 'Zion Odum', 'Drew Briney', 'Elle Brace', 'Jami Brumfield', 'Sara Pennypacker', 'Huda Aweys', 'Jill Bolte Taylor', 'Carrie Hope Fletcher', 'Kyril Bonfiglioli', 'Kathleen Baldwin', 'Omar Farhad', 'Linda  Watkins', 'Taran Matharu', 'Marie Kondō', 'Victoria Aveyard', 'Robert Dugoni', 'Fred Misurella', 'Alessandra Torre', 'S.S. Segran', 'Stacey  Lee', 'Zoe Sugg', 'Steve Silberman', 'Lili Anolik', 'Anna Todd', 'Irene Helenowski', 'Jason Reynolds', 'Paula Hawkins', 'Jennifer Foehner Wells', 'Victoria Scott', 'Lucinda Riley', 'Bill Browder', 'Kristen Callihan', 'Jaeson D. Rau', 'Kim Holden', 'Jeff Garvin', 'C.E. Medford', 'Kim Kardashian West', 'Kelly Oram', 'Becky  Chambers', 'Tamara Philip', 'James Sillwood', 'Hanya Yanagihara', 'Michael Punke', 'Stephen Douglass', 'Penelope Ward', 'Allison Goh', 'S.M. Parker', 'Erika Johansen', 'Caitlin Alifirenka', 'James  Islington', 'Steve Snyder', 'Renée Paule', 'Connor Franta', 'M.J. Thompson', 'Lucian Bane', 'Harry Houdini', 'Adrian D. Roberts', 'Natasha Pulley', 'Maggie Nelson', 'Tom Sutton', 'أحمد خالد مصطفى', 'Tara Sivec', 'Paul Tremblay', 'Lisa  Williamson', 'Najiyah Maxfield', 'Neva Squires-Rodriguez', 'Elizabeth Darrell', 'Clare Mackintosh', 'Elise Kova', 'Joseph Fink', 'Peter Clines', 'Viet Thanh Nguyen', 'Annette Marie', 'Jessica Cluess', 'Megan Miranda', 'Amy Morin', 'Beth Flynn', 'T.M. Mendes', 'Tyler Chase', 'Simona Dobrescu', 'Jay Kristoff', 'Brittany Cavallaro', 'Nina George', 'Clemente Arranz Enjuto', 'Norman Boutin', 'Jenn Bennett', 'N.K. Pockett', 'Renée Knight', 'Alex Bell', 'Christina Henry', 'M.J. Arlidge', 'Amanda     Berry', 'Seth Dickinson', 'Aziz Ansari', 'John Glatt', 'Jaye L. Knight', 'Paul Van Der Merwe', 'Alexei Maxim Russell', 'Robert  Beatty', 'Second Vatican Council', 'Rupi Kaur', 'Amber   Smith', 'Lynette Noni', 'Keith Hale', 'Hanne Arts', 'Shaun David Hutchinson', 'Yuval Noah Harari', 'Felicia Day', 'Brent N. Hunter', 'Julia Heaberlin', 'Tony  Thorne', 'P. Anastasia', 'Jocko Willink', 'Gary Chapman', 'Violet Samuels', 'Andrea Wulf', 'Robert Thier', 'Donald S. Whitney', 'Lisa Terry', 'Jhaverchand Meghani', 'Hank Green', 'Emma Newman', 'Elizabeth   Hunter', 'Gina Tost', 'Gerald Biss', 'Nikki Sex', 'Ali Benjamin', 'T.J. Klune', 'Angela Marsons', 'Steven Jay Schneider', 'Marieke Nijkamp', 'Yeonmi Park', 'S. Jae-Jones', 'Timothy  Dalton', 'Ryan Graudin', 'Noga Niv', 'Eka Kurniawan', 'Mark  Edwards', 'Brian  Courtney', 'Ken Liu', 'Elle Kennedy', 'Katharine McGee', 'David J. Garrow', 'Alwyn Hamilton', 'B.B. Reid', 'Kimberly Lauren', 'تركي العواد', 'Nic Stone', 'James Faro', 'Aurélien Masson', 'Sergio Cobo', 'Estelle Maskame', 'Carrie Brownstein', 'Amy Cuddy', 'David Lagercrantz', 'Ruby Dixon', 'Tim  Marshall', 'Caroline Kepnes', 'Caitlin Doughty', 'Peter-Tobias Šuštar', 'Daniel  Howell', 'Iria G. Parente', 'Martin Suter', 'Hyeonseo Lee', 'Winston Graham', 'Charlie Jane Anders', 'Rachel McGrath', 'Fisher Amelie', 'Irin Carmon', 'Sara  Barnard', 'Mya Robarts', 'Andrew Michael Hurley', 'Han Kang', 'Katherine Arden', 'Ta-Nehisi Coates', 'Adrian Tchaikovsky', 'Victor Milán', 'Tyler Oakley', 'Alexander Helas', 'Ashlee Vance', 'Sabaa Tahir', 'Robin Roe', 'Adam M. Grant', 'Jean Rhys', 'Rachel Aaron', 'Sara Wolf', 'Olivia Laing', 'Nnedi Okorafor', 'Bridget Hodder', 'C.J. Box', 'Julia Walton', 'M.  Robinson', 'Anna Gallegos', 'Hope Jahren', 'Sylvain Neuvel', 'Fiona Barton', 'Laurie Forest', 'Jenna Evans Welch', 'Kimber  Lee', 'Tom DeLonge', 'Mindy McGinnis', 'A.G. Riddle', 'Matthew Desmond', 'William Sirls', 'Sally  Thorne', 'Martha Hall Kelly', 'Stephanie Storey', 'Paul Kalanithi', 'Sue Klebold', 'Margot Lee Shetterly', 'Inio Asano', 'Ted Bernal Guevara', 'Christelle Dabos', 'Lauren Wolk', 'Peter  Brown', 'Robin  Gregory', 'Lene Fogelberg', 'Bryn Greenwood', 'Tiffany   McDaniel', 'Mimi Jean Pamfiloff', 'Jettie Woodruff', 'Chris Voss', 'Deborah Leblanc', 'Daniel M.  Harrison', 'Sarah Knight', 'Lin-Manuel Miranda', 'Tia Shurina', 'Alejandro Cremades', 'Jane Washington', 'Andrew P. Weston', 'Leah Remini', 'S.J. Kincaid', 'Victor LaValle', 'Scott  Hawkins', 'Emma Cline', 'Anne  Michaud', 'Yaa Gyasi', 'Gabriel F.W. Koch', 'J.D. Vance', 'Taylor Jenkins Reid', 'Angela Duckworth', 'Phil Knight', 'Holly Chavez', 'Mary Pfaff', 'Victor Methos', 'Peter   Ralph', 'Tiffany FitzHenry', 'Brian Panowich', 'Mi Ae Lipe', 'Jeremy Griffith', 'Cristina García', "Barbara O'Connor", 'Pawan Mishra', 'William Godwin', 'Jane Harper', 'Elly Blake', 'Drew Magary', 'Ruth Ware', 'C.E.  Johnson', 'Lauren Jackson', 'Stephanie Garber', 'Märta Tikkanen', 'Kathleen Zamboni McCormick', 'J.P. Delaney', 'Benedict Wells', 'Ayşe Kulin', 'Anne Frasier', 'Kelly Barnhill', 'Krystal Sutherland', 'Annalee Newitz', 'Robert Bryndza', 'Nathan  Hill', 'Peter Wohlleben', 'Mark Manson', 'Larry Tye', 'Seth Stephens-Davidowitz', 'Max Nowaz', 'Max Monroe', 'Erin Watt', 'Mike Bockoven', 'Mary Beard', 'Shari Lapena', 'Kady Hunt', 'Torey L. Hayden', 'Sarah Pinborough', 'Erika L. Sánchez', 'Penelope Douglas', 'Nelou Keramati', 'Lindsey Bowden', 'Kathleen Glasgow', 'Mackenzi Lee', 'Lindy West', 'Michael Bungay Stanier', 'عبدالله ناصر', 'Amy Schumer', 'Jacque Stevens', 'Daman', 'B.A. Paris', 'Volodymyr Vynnychenko', 'John Arcudi', 'C.M. Meridian', 'Sebastian Gorka', 'Retta Bono', 'A.R. Merrydew', 'Jodi Taylor', 'William  Andrews', 'Trevor Noah', 'Anna Kendrick', 'John  Langan', 'Maria Nhambu', 'Dot Hutchison', 'Kendra Elliot', 'Meik Wiking', 'Amanda Lovelace', 'Freida McFadden', 'Lucio Agustine Rosenkreutz Crăciunescu', 'Don  Phelan', 'Melinda Leigh', 'Napoleon Hill', 'Brian  Andrews', 'Frans de Waal', 'Amanda Foody', 'Jordan B. Peterson', 'Georgia Hunter', 'April  Daniels', 'Chloe Benjamin', 'Robyn Ellington-Jones', 'Lisa   Maxwell', 'M.L. Rio', 'Robyn Mundell', 'Skeleton Steve', 'أحمد جمال الدين رمضان', 'Will Wight', 'Giulietta Esthel', 'Gerit Quealy', 'Michael Finkel', 'Ashley Poston', 'Edith Eger', 'L.J. Shen', 'Nicholas Eames', 'Margaret  Rogerson', 'Kara Thomas', 'W.C. Morrow', 'H. Hesketh-Prichard', 'Wally Runnels', 'J.D. Barker', 'Antonio Iturbe', 'Molly Knox Ostertag', 'Shanna Ehrlich', 'Rhys Bowen', 'Christopher Keene', 'Ashley Herring Blake', 'Ammar Habib', 'Kate  Moore', 'William H. McRaven', 'Gail Honeyman', 'Erin Lockwood', 'Fernando Aramburu', 'Glennon Doyle Melton', 'Yolanda Olson', 'Joshua Rem', 'Francesca Zappia', 'Kate Quinn', 'Angie Thomas', 'Alexandria Marzano-Lesnevich', 'Dennis E. Taylor', 'Lisa Wingate', 'Sally Rooney', 'Alice Feeney', 'Allie Frost', 'Mark T. Sullivan', 'Shirley Hughes', 'Egan Brass', 'Laura Sebastian', 'Karen M. McManus', 'حسام السعيد عامر', 'S.A. Chakraborty', 'Diane Ackerman', 'Riley Sager', 'Melissa Broder', 'Karen Dionne', 'Anna Ruston', 'Jill Santopolo', 'Brett Arquette', 'Felix Alexander', 'Brianna Wiest', 'Violet LeVoit', 'Elena Favilli', 'Mary Robinette Kowal', 'Kabi Nagata', 'A.F. Knott', 'S.T. Abby', 'Jennifer Mathieu', 'Steve Banes', 'Elizabeth Acevedo', 'Mò Xiāng Tóng Xiù', 'Carmen Maria Machado', 'Durian Sukegawa', 'Rene Denfeld', 'Nadine Burke Harris', 'Jeffery M. Camp', 'Eliott McKay', 'Rolf Margenau', 'Grahame Shannon', 'Tayari Jones', 'Paul  Harbridge', 'Eowyn Ivey', 'Reni Eddo-Lodge', 'Tricia Levenseller', 'Grady Hendrix', 'Kerri Maniscalco', 'Alice Kellen', 'Brandon Massey', 'Rachel E. Carter', 'Raoul Davis Jr.', 'Camilla Isley', 'Connie Glynn', 'Liv Constantine', 'Sara Pascoe', 'Greer Hendricks', 'Jessica Townsend', 'Melissa Albert', 'Etaf Rum', 'Robert Flynn III', 'Hope Worthington', 'Rivers Solomon', 'Natasha Ngan', 'James Dwyer', 'A.J. Mouse', 'Matthew Walker', 'Alexandra Christo', 'Jen Wang', 'Diana   Forbes', 'Ray Dalio', 'Chris A. Jones', 'Andrew R.  Williams', 'Tomi Adeyemi', 'L.T. Vargus', 'Hans Rosling', "Kay O'Neill", 'Johann Hari', 'William Graney', 'David J. Lieberman', 'Malcolm McCoard', 'Michelle McNamara', 'Tiffany D. Jackson', 'Steve Brusatte', 'R.F. Kuang', 'Ijeoma Oluo', 'James Comey', 'Tara Westover', 'Jamal Lewis', 'Seth Chambers', 'Imbolo Mbue', 'Ramzy Sweis', 'David J Morden', 'Rahiem Brooks', 'Jack Carr', 'Mandy Stadtmiller', 'Shea Ernshaw', 'Lisa Jewell', 'C.J. Tudor', 'Zoje Stage', 'Kirsten Fullmer', 'Farah Cook', 'Linda    Armstrong', 'Adam Kay', 'P.H. Wilson', 'Rachel Hollis', 'Janine Vance', 'Michael G. Kramer', 'Jessie Mihalik', 'Belinda Bauer', 'Marlo Lanz', 'David Sheff', 'Debbie Boek', 'Adam Nicke', 'Lani Sarem', 'Karen Glista', 'Mark M. Bello', 'Catherine Marshall', 'Aimee Molloy', 'Annie Duke', 'Anna Burns', 'Max Hastings', 'Preston Norton', 'Lucinda Berry', 'Kelly Yang', 'Massumeh Farhad', 'Laura Morelli', 'Helen Hoang', 'Sam Conniff', 'Sally Helgesen', 'Steve Cavanagh', 'Moss Whelan', 'Roshani Chokshi', 'Zoltan Andrejkovics', 'André Aciman', 'Stuart Turton', 'Jeanine Pirro', 'Patty McCord', 'Lin Rina', 'Leonora Carrington', 'J.J. Sorel', "Beth O'Leary", 'Hafsah Faizal', 'Aziz Gazipura', 'Daire Feeney', 'Kristy Cunning', 'R.C. Westyn', 'Michael  Wolff', 'Max Thorn', 'Gleb Tsipursky', 'Tommy Orange', 'Delia Owens', 'Matthew D. Dho', 'Robert Jackson Bennett', 'Brian Dennis Hartford', 'Lou Marinoff', 'Trent Dalton', 'Dale Bailey', 'Lori Gottlieb', 'Debbie Mirza', 'Mykhaella Caponi', 'Michael Tobert', 'Ted Halstead', 'MsKingBean89', 'Guenevere Lee', 'John Carreyrou', 'Ron Millicent', 'Claire Legrand', 'Josie Silver', 'Leïla Slimani', 'Sayaka Murata', 'Heather   Morris', 'Emem Uko', 'Sadee Bee', 'Michelle Obama', 'Oyinkan Braithwaite', 'Don Barr', 'Steven A. Curley', 'Danielle Lori', 'Val Emmich', 'James Hilton', 'Thomas Erikson', 'Mary Burton', 'Patti Callahan Henry', 'Dan Gemeinhart', 'John Doerr', 'Adam Mansbach', 'Tamsyn Muir', 'Susan Orlean', 'Erin A. Craig', 'Daniella Dechristopher', 'Samantha  Downing', 'محمد ابراهيم نوايا', 'David  Yoon', 'Yoru Sumino', 'Simon Gervais', 'Andrea Luhman', 'Rachael Lippincott', 'Bridget Collins', 'Victoria Selman', 'Namina Forna', 'Shelby Mahurin', 'Charlie J. Eskew', 'Trevor Alan Foris', 'Alex Michaelides', 'Anne  Willow', 'James Clear', 'S.K. Ali', 'Patrick Radden Keefe', 'Miquel Reina', 'M.J. Santley', 'Amy Croucher Rose', 'Cynthia  Collins', 'Reshma Saujani', 'Astrid Scholte', 'A.J. Finn', 'Laurie Frankel', 'Lauren Graham', 'Barry Eisler', 'Mary Ramsey', 'Glendy Vanderah', 'Diamante Lavendar', 'Sonia Purnell', 'Iain Reid', 'Pamela   Taylor', 'Noah Hawley', 'Krysten Ritter', 'Jack Weatherford', 'Monica Hesse', 'Blanka Lipińska', 'Melinda French Gates', 'Regina James', 'Emily M. Danforth', 'Rutger Bregman', 'D.S.   Smith', 'Amy Ewing', 'Kim Michele Richardson', 'Holly  Jackson', 'سید مرتضی مصطفوی', 'Chloe Walsh', 'Behcet Kaya', 'Hiro Arikawa', 'Misty Griffin', 'Gregg Andrew Hurwitz', 'Dean Atta', 'Bernardine Evaristo', 'Yuhki Kamatani', 'Caroline Criado Pérez', 'Casey McQuiston', 'Bradley  Nelson', 'Hunter Shea', 'Suzanne Boisvert', 'Diana Urban', 'Mason Deaver', 'Daniel Mangena', 'Daniel  Kelly', 'David Goggins', 'Lisa    Gray', 'Victoria Helen Stone', 'Stephanie Douglas', 'Autumn Jones Lake', 'Michel Guyon', 'Lucinda   Davis', 'Ocean Vuong', 'Morgan Housel', 'M.L.  Wang', 'Nina Varela', 'Soraya M. Lane', 'Widad Akreyi', 'Marjan Kamali', 'Hilary Davidson', 'Trung Le Nguyen', 'Danielle Simmons', 'Vincent Panettiere', 'Otto Julius Bierbaum', 'Rory Power', 'Kathryn Le Veque', 'Susan Ware', 'Faridah Àbíké-Íyímídé', 'James Victor Jordan', 'Darin C.  Brown', 'Dimitri Liountris', 'Rohith S. Katbamna', 'Mona Awad', 'Elizabeth Lim', 'Maia Kobabe', 'John Richard Spencer', 'Staf Vivijs', 'J. Jupes', 'Mara Powers', 'Ali Marsman', 'Durgesh Satpathy', 'Phil Truman', 'Anna Halabi', 'Kim Liggett', 'Onision', 'Micaiah Johnson', 'Ichiro Kishimi', 'Nancy Omeara', 'Amal El-Mohtar', 'Debbie Herbert', 'A.D. Zoltan', 'Aimee Cabo Nikolov', 'Alix E. Harrow', 'J.K. Franko', 'Steffanie Holmes', 'Adam Carpenter Welles', 'Robin DiAngelo', 'Charlie Mackesy', 'Barry Kirwan', 'Cece Whittaker', 'Singshong', 'Barbara Dee', 'Talia Hibbert', 'Ashley Elston', 'Kalynn  Bayron', 'Kiley Reid', 'Erin  Stewart', 'Adrienne Young', 'Lyssa Kay Adams', 'Christopher Golden', 'Chloe Gong', 'Claire McGowan', 'Shannon Johnstone', 'David   Crow', 'Newton Lee', 'Ottessa Moshfegh', 'Jenara Nerenberg', 'Tao Wong', 'Toshikazu Kawaguchi', 'Tanya Anne Crosby', 'Nick Brokhausen', 'Robert Iger', 'Beatriz Williams', 'Kate Elizabeth Russell', 'Dr. Baum', 'Ginger Baum', 'Kris Kelkar', 'Emma Lord', 'Jeanine Cummins', 'Margarita Montimore', 'Lidija Stankovikj', 'Gregg Olsen', 'Abbie Emmons', 'Kevine Walcott', 'Ella Maise', 'Simone St. James', 'Alex Light', 'Tracy Wolff', 'Richard Osman', 'Cho Nam-Joo', 'Dolly Alderton', 'Nicole Fiorina', 'Edward Snowden', 'Elizabeth St. John', 'Bob Blanton', 'Shelley Parker-Chan', 'Elísabet Benavent', 'Kevin Moccia', 'Adam Cesare', 'Granthana Sinha', 'Agustina Bazterrica', 'Brian Freeman', 'Philip C. Quaintrell', 'Micah Nemerever', 'K.L. Walther', 'Morgan  Rogers', 'Jack     Slater', 'Tashie Bhuiyan', 'Tess Sharpe', 'Nguyễn Phan Quế Mai', 'Joana Marcús', 'Peter B. Forster', 'Carissa Broadbent', 'Stephen Smith', 'Carolyn Cutler Hughes', 'Tomasz Jedrowski', 'Sarah Hogle', 'Rebecca Serle', 'Chanel Miller', 'Abi Daré', 'Bella Mackie', 'Alexis  Hall', 'Molly  Ball', 'Chris  Whitaker', 'Ashley Winstead', 'Sarah Huckabee Sanders', 'Olivie Blake', 'Tasha Suri', 'Mieko Kawakami', 'Edward Parnell', 'Olivia Hardy Ray', 'Aidan  Mc Nally', 'Mikki Daughtry', 'Layne Fargo', 'T. Kingfisher', 'Tracy Deonn', 'Rebecca Roanhorse', 'Mary Stone', 'Lynn Painter', 'Alexandria Bellefleur', 'Melissa Bashardoust', 'Graham Moore', 'Brian Christopher Shea', 'James Ponti', 'Sharon Carter', 'David Hopen', 'Afroz  Alam', 'Cora Reilly', 'Jason Latshaw', 'Brit Bennett', 'H.W. "Buzz" Bernard', 'Kacen Callender', 'Lucy Foley', 'K.  Ritz', 'SenLinYu', 'Angela  Chen', 'J.M. Dalgliesh', 'Stephen Graham Jones', 'Sohn Won-Pyung', 'T.L. Swan', 'Núria Añó', 'Aiden Thomas', 'Nilakshi Garg', 'Angeline Boulley', 'William Hanna', 'Xiran Jay Zhao', 'Jordyn Taylor', 'Ashley Audrain', 'Kelly Quindlen', 'Matthew Bracey', 'Kimberley   Paterson', 'Kristin Harmel', 'Rachel Lynn Solomon', 'Andrew    Watson', 'Matthew McConaughey', 'Emily Henry', 'James  Hudson', 'Lauren Asher', 'Ciara Smyth', 'Dustin Thao', 'Rebecca Yarros', 'Silvia Moreno-Garcia', 'A.K. Smith-Ford', 'Eddie Jaku', 'B.B. Alston', 'Sarah Penner', 'Jesse Q. Sutanto', 'Caleb Azumah Nelson', 'Kenneth   Thomas', 'Jeneva Rose', "Kristen O'Neal", 'Joan Gelfand', 'Saul Herzog', 'K.A. Knight', 'Angelina J. Steffort', 'J.S. Latshaw', 'Matthew Harffy', 'Danielle L. Jensen', 'Elena  Armas', 'S.G. Blaise', 'Stephanie M. Allen', 'Bob Marmion', 'Lynessa James', 'Stephanie Winston Wolkoff', 'David J. Gatward', 'Lee Matthew Goldberg', 'Malcolm  Collins', 'Axie Oh', 'Catriona Ward', 'Rachel Rodgers', 'Mizuki Tsujimura', 'Katee Robert', 'Mykola Kulish', 'Walt Gleeson', 'Oliver Burkeman', 'Anna D. Stoddard', 'Michelle Zauner', 'Bill Mesce Jr.', 'Susan  Page', 'Lauren  Hough', 'Charlotte McConaghy', 'S.A. Cosby', 'Ashley C. Ford', 'Eric Jorgenson', 'Steven  Bruce', 'Randy Loubier', 'Ellie Aiden', 'Hailey Piper', 'Lynessa Layne', 'Nita Prose', 'Eliot Schrefer', 'Scarlett St.  Clair', 'Lee     Jackson', 'L.A. Dobbs', 'Michael Eastwood', 'Kristan Higgins', 'Dale Brown', 'Pernell Plath Meier', 'M.R. Noble', 'Auston King', 'Robert         Reid', 'Tessa Bailey', 'R.L.  Douglas', 'Isham Cook', 'Jennifer Carson', 'J.B. Lion', 'Judy Prescott Marshall', 'Harvey Havel', 'Kathleen Lopez', 'William Havelock', 'Ronald Malfi', 'JK Franko Junior', 'Shana Abe', 'Patrick King', 'Juddy Anderson C. Punzalan', 'Mohamad Jebara', 'Jack Getze', 'Biao  Wang', 'Lynda Rutledge', 'Steve  Bates', 'Raven Kennedy', 'Erin Sterling', 'Misba', 'Vaclav Smil', 'Ana Huang', 'S.T. Gibson', 'Ali Hazelwood', 'John Bennardo', 'Sulari Gentill', 'Boo Walker', 'Donna Barba Higuera', 'Kati Marton', 'Hieronymus Hawkes', 'Hervé Le Tellier', 'Judy I. Lin', 'Jeremy Warlen', 'Yasmin Angoe', 'Martha R Bireda', 'John Ramirez', 'Harold Phifer', 'Mary Hartwell Catherwood', 'Marilyn Dalla Valle', 'Nick Trenton', 'Rachel  Smythe', 'Alison Rumfitt', 'Zoulfa Katouh', 'Charles Dyson', 'Charlie Donlea', 'Dave Grohl', 'L.T. Ryan', 'Stacy Willingham', 'Coco Mellors', 'Rowena Kinread', 'Donald Montano', 'Danya Kukafka', 'Sue Lynn Tan', 'W.M Angel', 'Marc Jampole', 'Sequoia Nagamatsu', 'Andrew Joseph White', 'Steven Konkoly', 'Sheleana Aiyana', 'Donna Everhart', 'Carley Fortune', 'Cameron Curtis', 'Bonnie Garmus', 'Sarah       Adams', 'Jemma Roedel', 'M.S.M. Barkawitz', 'Nine Gorman', 'Kenneth Schmitt', 'A.M. Shine', 'Erik J. Brown', 'Matthew FitzSimmons', 'Mykhailo Kotsiubynsky', 'Shauna Niequist', 'Claudia   Clark', 'Megan Bannen', 'Emily McIntire', 'Jerry Weaver', 'Kali Fajardo-Anstine', 'Viola Davis', 'Katherine Center', 'Jason Rekulak', 'Catherine Doyle', 'Jennie Allen', 'Gary Edward Gedall', 'H.D. Carlton', 'Sonora Reyes', 'Rebecca Rosenberg', 'Steve  Pemberton', 'Joshua Todd James', 'Vikram Suryawanshi', 'Mary K. Savarese', 'Meagan Brandy', 'Boris Pronsky', 'Susan Scott', 'Kwei Quartey', 'David Archer', 'Kumiko Love', 'Spencer C Demetros', 'Paul Spencer Sochaczewski', 'Emma Straub', 'Tawfiq S. Rangwala', 'Peter Hackshaw', 'Adalyn  Grace', 'William  West', 'Kate Gable', 'Karl Braungart', 'T.J. Newman', 'Brad Lee', 'Jennette McCurdy', 'Jason Mosberg', 'John Payton Foden', 'Russ Tilton', 'Tiago Forte', 'Sophie Irwin', 'M.J. Porter', 'Susan  Rowland', 'Louise Blackwick', 'Julianne MacLean', 'Karen  Hinton', 'Gregory Dickow', 'R. Scott Arnell', 'Cin Fabré', 'R.B. Le`Deach', 'David      Clark', 'Jim Vandehei', 'Joanna   Quinn', 'Gillian McAllister', 'Dahlia Lithwick', 'Phoebe Ravencraft', 'Mur Lafferty', 'Lucy Score', 'Ann Liang', 'John Rachel', 'Laurel Hightower', 'Ashley Flowers', 'T.S. Falk', 'Anshuman Srivastav', 'Tracie Breaux', "Peter O'Mahoney", 'Kyle Mills', 'Johnathon Nicolaou', 'Karen Heenan', 'Alex Aster', 'Nina Totenberg', 'ashraf Barham Halloween', 'Douglas Weissman', 'Eric LaRocca', 'William Kely McClung', 'Erin Litteken', 'Rou Bao Bu Chi Rou', 'Loreth Anne White', 'Ajay Agrawal', 'Julie Mannino', 'Gina Buonaguro', 'Michael  Grigsby', 'Sophia R. Tyler', 'Tyler Staton', 'Jeffrey S.  Stephens', 'Tori Dunlap', 'Rebecca   Ross', 'Michelle Diener', 'H H 1875-1966 Swinnerton', 'Jordan Harper', 'Weina Dai Randel', 'L.M. Weeks', 'Todor Bombov', 'Jayne Buxton', 'Mark Greaney', 'T.A. White', 'Christopher C. Gorham', 'Travis Baldree', 'Milan Kordestani', 'Joe   Hart', 'Andrew Gillsmith', 'Steven Decker', 'Jean Dolores Schmidt', 'Beth Moore', 'Curtis L. Jenkins', 'Ariana Nash', 'Paige Dearth', 'Melanie Hudson', 'SunriseCV', 'Therisa Peimer', 'J.B. Turner', 'Guy Morris', 'Lancali', 'Sandy Taylor', 'J. Elle', 'Hannah  Grace', 'Ann Napolitano', 'Lina STORE', 'Chad Boudreaux', 'Abby Jimenez', 'Garth Marenghi', 'Debra Borchert', 'Scott Cook', 'Laura Barrow', 'Anthony DiPaolo', 'Lauren Thoman', 'Craig Russell', 'Alexandra Almeida', 'Jinger Duggar Vuolo', 'Daniel Kraus', 'John Marrs', 'Yvonne Korshak', 'Barbara Sontheimer', 'Lindsay Buroker', 'Cara Hunter', 'Colin Falconer', 'Blake Banner', 'Dwain Worrell', 'Diane L. Kowalyshyn', 'John C. Maxwell', 'Angel Di Zhang', 'D.D. Black', 'Dale A. Jenkins', 'Rick Mystrom', 'Alexandra Walsh', 'James Allen Moseley', 'Tom  Baldwin', 'Dean Mafako', 'Don Bentley', 'Lauren  Roberts', 'spaizzzer', 'Sheena  Billett', 'Limor Regev', 'Peter Brune', 'Gregory S. Works', 'K.G.E. Konkel', 'Simone Collins', 'Liz Tomforde', 'Linda Phillips', 'Shari Low', 'Sybrina Durant', 'Emma McClain', 'Ariel Lawhon', 'Kathleen Fine', 'Nicole  Morris', 'Eli Wilde', 'Roberta Kagan', 'Albert Waitt', 'Brian Van Norman', 'Millie Bobby Brown', 'William J. Borak', 'Агатангел Кримський', 'Hannah Nicole Maehrer', 'Michael  Stagg', 'Darnyelle Jervey Harmon', 'Tabita Gutu', 'Peter Kirkland', 'Annabel den Dekker', 'Charlie N. Holmberg', 'Amy  Lea', 'Eoin Dempsey', 'Peter  Gibbons', 'Marion  Catteral', 'Avery Cunningham', 'Rick Scott', 'Mads Rafferty', 'Jessica  Payne', 'Melissa Bellis', 'Jaime Watt', 'J. McCoy', 'Daniel Cuervonegro', 'Vince Milam', 'Heather G. Harris', 'Becky Wilde', 'Phil      Hall', 'J. Rose Black', 'Emily Shiner', 'Kayla  Cunningham', 'Matt Francis', 'Beverly Magid', 'Nisha J. Tuli', 'J.F. Kirwan', 'Nathan Lowell', 'Katie Hall-May', 'Bjørn Schindler', 'Mark Wightman', 'Meg Xuemei X', 'Paul Heatley', 'A.G. Russo', "Patricia D'Arcy Laughlin", 'Dandy Smith', 'Frank  Lambert', 'Ian Loome', 'Franklin Horton', 'Stephen A. Reger', 'I.T. Lucas', 'Robin      James', 'Stephen Penner', 'Albert T. Franklin', 'Andri E. Elia', 'Kay Bratt', 'K.M. Shea', 'Estelle Ryan', 'Miriam Verbeek', 'John Conroe', 'Day Leitao', 'Meredith R. Lyons', 'Jamie Applegate Hunter', 'K.F. Breene', 'Lola Glass', 'Haylock Jobson', 'Fritz Peters', 'Steven Lomazow', 'Linzi Day']

5. num_ratings¶

In [29]:
print(unique_values('num_ratings'))
[3292516, 3401709, 10116247, 4215031, 3718209, 148443, 32990, 1849362, 323845, 387803, 112464, 66863, 61418, 74848, 113014, 41853, 134077, 678852, 2819586, 395109, 1085, 1510, 41387, 7126, 199998, 68582, 192872, 83194, 89204, 1251, 27754, 72611, 20244, 9573, 3337, 80791, 57278, 24593, 491967, 25830, 976523, 472039, 26657, 313396, 8749, 35744, 18194, 86445, 29601, 140698, 287770, 17873, 12000, 4564, 9570, 11363, 44293, 39600, 5401, 67922, 3515, 68175, 75329, 28568, 25487, 15202, 10624, 18776, 71503, 7429, 10880, 27967, 71223, 231128, 31413, 329772, 4455, 390964, 14340, 156299, 29442, 13939, 1938, 407, 11666, 22503, 61408, 95961, 9953, 8446, 87778, 8297, 112423, 24193, 42064, 19785, 90116, 281078, 42944, 3078682, 23022, 167491, 2559548, 214103, 2006566, 3204796, 2360320, 671296, 115103, 2142, 21043, 2867, 396, 202267, 17901, 145, 230852, 250286, 205761, 373239, 96712, 21779, 853477, 639421, 253627, 190428, 267968, 132187, 158218, 38686, 104054, 51817, 458521, 76215, 1086314, 957747, 9410, 38934, 78816, 102617, 43929, 177710, 222271, 5353, 43542, 67195, 217657, 43324, 1250839, 1484352, 542203, 38418, 183234, 44581, 158352, 12429, 71613, 412715, 1094786, 113437, 28856, 432360, 191577, 23213, 4168, 4290511, 508481, 101842, 2245804, 950332, 16377, 7729, 3646, 23179, 39574, 156060, 42719, 12548, 16471, 2796, 5841, 39653, 42769, 4882, 324071, 6101, 69909, 705734, 37377, 1155560, 336212, 22403, 640270, 187022, 361986, 53501, 40728, 87824, 16048, 11476, 3683, 10851, 7372, 16943, 180076, 89764, 521273, 315815, 56676, 291884, 21879, 22934, 14979, 8821, 13020, 10903, 300143, 1951, 29613, 816353, 805941, 6158672, 81169, 14412, 5513, 222519, 6220, 4488, 14293, 67874, 223230, 24184, 13275, 244543, 377820, 87225, 548670, 738579, 25821, 32863, 178542, 19445, 6479, 7843, 305825, 1268383, 1177354, 307094, 19822, 8616, 70746, 11357, 31375, 184848, 47353, 204534, 46574, 21782, 131086, 581, 29801, 40903, 28971, 14260, 19023, 19567, 86940, 6848, 15124, 3666, 350765, 12510, 723390, 11111, 13904, 22698, 202969, 158383, 96851, 46950, 161377, 59832, 806863, 42309, 238763, 47184, 100572, 50794, 5345, 105199, 26489, 80614, 301284, 2493765, 20955, 31919, 5465, 16293, 82675, 222533, 279644, 43661, 39725, 29240, 63652, 4854, 12863, 158262, 2987, 27615, 85437, 24866, 22268, 35705, 183301, 11779, 16807, 18111, 19331, 272604, 8184, 17819, 135993, 434171, 29619, 49839, 446874, 19291, 30404, 62664, 61708, 14067, 211238, 203094, 61714, 70495, 147787, 28881, 2537, 38746, 2964, 4687, 720898, 39814, 125627, 700057, 265570, 1898, 55124, 7837, 1630226, 56353, 136526, 82005, 19963, 10995, 47716, 2433141, 11754, 910438, 542045, 936252, 321694, 77804, 13290, 45964, 421801, 26777, 13723, 8320, 36493, 32804, 151957, 15842, 8965, 30557, 10780, 62709, 5271406, 185733, 52047, 36356, 58962, 48238, 138622, 71425, 43705, 14244, 12381, 35306, 9136, 988503, 107645, 474250, 77325, 515174, 38571, 63298, 72962, 472572, 334581, 512184, 84878, 180692, 29149, 13774, 163018, 185326, 46192, 261449, 1374216, 142178, 61029, 24646, 600531, 461, 70368, 59108, 766707, 24720, 32228, 38846, 251565, 14193, 89947, 173885, 4955, 159917, 263412, 200229, 3540098, 223054, 51286, 47904, 1864954, 32060, 11724, 891348, 219506, 82567, 48550, 120429, 159969, 49173, 248754, 83324, 66377, 60068, 34549, 30118, 67648, 59897, 98629, 79851, 60320, 27118, 347084, 101777, 149960, 1230, 127731, 14837, 42291, 1547611, 95067, 239237, 4416, 843850, 68734, 77321, 99970, 43200, 119349, 196874, 128203, 116331, 78294, 96358, 140407, 86321, 77030, 717464, 446049, 94504, 357705, 26137, 18699, 25375, 10768, 115750, 194076, 78912, 75545, 97869, 4635133, 199228, 165572, 5435, 4710, 25945, 97200, 993, 599474, 63650, 7772, 18400, 28023, 1993, 219551, 30907, 52480, 11683, 2575, 54587, 24461, 21756, 594398, 42053, 128411, 309565, 23471, 284788, 17731, 21160, 4359, 31224, 2725, 154940, 3999769, 72917, 19576, 18023, 18320, 63115, 8581, 1747, 1053, 93434, 438262, 75014, 13830, 6506, 75654, 8999, 20091, 1815596, 106854, 32296, 5498, 7722, 9403, 12310, 2433, 78977, 910150, 361072, 111919, 854671, 484365, 397486, 20875, 7204, 700216, 693, 480, 68, 199, 2680, 1038, 1254, 53, 168, 103, 222, 842, 931, 1656, 1548, 1304, 136, 547, 403, 143834, 129790, 127201, 125680, 168951, 94989, 41647, 972841, 32911, 33106, 244249, 35059, 75527, 51501, 21588, 21221, 30746, 57565, 404328, 25792, 41577, 33560, 4821, 153535, 68916, 21596, 40787, 23692, 30382, 111963, 475496, 67791, 12361, 134618, 30246, 369717, 47407, 40323, 14660, 22778, 49883, 29529, 92290, 31136, 25421, 552463, 154307, 4909, 131977, 54453, 521512, 44735, 18535, 70143, 1033961, 367827, 890600, 86195, 43554, 40321, 57156, 13426, 29633, 26715, 265774, 229135, 22327, 454666, 2795, 917987, 910658, 51927, 323965, 41552, 14590, 23643, 98, 115012, 746145, 39901, 294683, 146412, 37742, 91621, 75729, 1220071, 56061, 45752, 150615, 88208, 54935, 152494, 134529, 854223, 3910908, 11215, 2916989, 26796, 19202, 73509, 84663, 51954, 207051, 256480, 171514, 42519, 72381, 962490, 31993, 4997, 103711, 55944, 154629, 275004, 44666, 350484, 22784, 684729, 204455, 109700, 344971, 20608, 72328, 51074, 268, 3587, 245482, 570, 286, 432687, 101720, 1223, 5390, 6038, 24602, 7835, 10823, 256135, 27205, 16283, 23468, 21705, 19806, 30613, 16921, 28584, 10907, 119857, 9406, 20953, 17469, 13127, 140016, 23004, 42624, 984888, 7417, 18532, 13889, 40049, 4672, 5912, 78188, 68415, 89398, 87897, 269960, 105218, 25057, 54131, 157875, 156137, 28498, 76806, 234183, 289050, 24838, 6840, 9409, 4626, 7526, 10083, 21385, 55544, 14515, 34827, 75019, 9455, 27743, 6374, 1421, 3217, 18547, 10613, 903785, 3979, 527550, 347681, 22424, 23295, 24516, 26363, 53368, 5479, 38338, 34759, 59772, 28098, 20514, 44535, 27006, 32322, 30780, 58109, 20171, 187565, 31954, 82545, 44156, 16542, 271576, 26833, 42856, 307660, 754515, 91294, 123529, 112734, 128607, 18650, 11631, 43509, 4123, 32130, 209542, 75427, 31858, 35757, 172466, 9408, 78137, 234830, 17580, 18196, 52606, 159147, 80316, 22591, 18881, 34696, 95337, 81680, 38367, 41612, 57016, 41070, 5992, 61394, 21945, 28450, 21851, 506803, 473006, 165070, 12930, 7259, 299347, 32251, 411096, 23611, 45362, 4246, 84433, 9448, 5244, 1722, 46592, 178988, 40455, 39831, 53645, 69990, 11046, 11820, 14042, 7594, 4993, 2501, 47507, 23545, 18967, 86919, 6093, 32002, 33217, 6473, 4767, 16226, 26852, 25399, 31790, 14804, 29275, 9583, 60671, 60202, 88215, 15975, 69906, 28231, 20816, 278950, 4978, 2102274, 44087, 84735, 12621, 6739, 710, 4003, 13360, 408379, 14646, 137184, 65872, 600961, 36568, 11645, 12219, 61789, 15632, 23626, 492512, 65636, 3248, 87374, 223674, 289149, 7160, 938977, 52677, 38443, 101615, 595723, 142483, 156830, 83225, 199539, 727150, 84823, 287012, 211059, 63595, 130019, 703073, 72727, 114621, 182415, 242991, 29171, 266107, 3605, 8151, 28865, 21434, 323203, 1472, 9237, 208100, 2525, 38668, 49781, 140035, 186219, 47676, 56244, 131227, 47907, 85748, 35539, 84247, 309119, 1221490, 243135, 148600, 341726, 260362, 1058656, 178511, 211539, 182777, 62091, 1385, 1785, 309499, 47898, 110834, 157085, 12922, 24639, 12200, 22722, 25103, 5633, 637812, 653742, 72220, 30156, 21993, 3218, 5871, 284940, 3443, 25912, 23433, 57337, 8200, 607761, 126437, 52736, 16494, 34703, 15134, 113644, 254938, 17602, 100210, 21783, 19682, 82295, 324100, 10571, 16409, 32912, 21715, 67291, 6421, 17787, 35951, 3361, 13076, 29331, 34269, 689768, 9513, 13699, 41507, 10968, 5422, 68491, 29028, 163076, 322147, 176008, 224030, 43277, 1498128, 458895, 143105, 96247, 134062, 22949, 80392, 9223, 11142, 5175, 4585, 5535, 15204, 20258, 46701, 12249, 15314, 32448, 132449, 41361, 53752, 2113, 115844, 3730, 65741, 4627, 11427, 18306, 141698, 117816, 18160, 31628, 102526, 27088, 46668, 5823, 5548, 57808, 265816, 16104, 107711, 56961, 48021, 22498, 31249, 12904, 18382, 22765, 869, 753491, 14697, 20110, 40924, 29742, 23895, 22482, 9723, 5380, 29955, 11828, 31178, 311835, 9131, 9014, 867728, 96584, 28554, 42321, 2921, 5127, 14877, 1237, 25464, 21776, 3244, 202182, 184049, 27214, 21222, 101954, 129214, 84584, 1315, 8139, 598, 3597, 83247, 20869, 43590, 78833, 25742, 21130, 469765, 28748, 4310, 60445, 12483, 66025, 16573, 18495, 12967, 5622, 92414, 632878, 2468, 4590, 235565, 130838, 35263, 137318, 17159, 192968, 220003, 156974, 3410, 245095, 28599, 210836, 391749, 204772, 30601, 390196, 11931, 9175, 17291, 22142, 26288, 31256, 19171, 16310, 44808, 106704, 114647, 66967, 50477, 93767, 113940, 339930, 121337, 81083, 69477, 459693, 338509, 50454, 225110, 20355, 51357, 533325, 7514, 23111, 25938, 2331, 26347, 92255, 126138, 2500752, 733800, 4582, 62794, 70127, 42785, 24420, 305615, 38370, 29579, 51390, 28002, 20028, 319214, 126048, 27866, 27593, 50704, 118671, 9183, 114393, 2902, 159570, 11978, 72585, 95993, 67523, 33212, 3951, 68336, 80283, 130877, 63727, 56431, 98259, 80164, 90065, 56531, 3285, 67840, 133106, 168119, 138661, 189802, 132793, 23140, 6486, 32146, 65616, 30375, 5299, 14605, 10881, 18701, 38147, 8347, 11913, 23278, 33494, 12841, 18264, 80953, 39267, 237235, 68831, 10827, 115048, 63498, 7203, 2182, 11691, 12370, 1819, 24960, 14102, 11379, 13710, 8524, 42169, 57029, 1368, 7849, 34705, 40140, 58861, 84083, 601, 33147, 4225, 532417, 67730, 8996, 5192, 37906, 34061, 4831, 6794, 75389, 18249, 7866, 76316, 268758, 306098, 218051, 102489, 124239, 51674, 184087, 110336, 372407, 467819, 6383, 33350, 1194915, 69888, 308825, 6175, 10752, 8425, 31833, 2637, 55858, 8134, 269129, 67130, 38994, 23950, 17802, 9424, 30021, 80297, 36909, 15948, 18094, 48938, 27333, 92545, 106694, 21260, 36998, 10399, 222022, 336036, 149438, 975888, 85960, 18856, 7120, 12127, 18542, 13908, 25417, 37816, 16502, 18691, 16593, 31738, 53414, 32832, 96882, 18124, 4146, 42474, 18018, 614, 99373, 84686, 183283, 100908, 13777, 1869, 46102, 32331, 19092, 14048, 58481, 18258, 179206, 97845, 5963, 12706, 7918, 16404, 21605, 31350, 87381, 3953211, 25563, 92963, 183213, 172926, 1698833, 11094, 10798, 15586, 166681, 44597, 24965, 8614, 4653, 1674, 31454, 181845, 1397, 27977, 91732, 162850, 13306, 55268, 11912, 25688, 49541, 114004, 20368, 107874, 44528, 14662, 3146, 25510, 58819, 72745, 1367069, 45296, 36519, 74943, 76369, 60957, 107978, 4395, 168112, 55039, 277188, 189773, 48684, 426783, 84786, 15497, 59556, 59555, 37654, 25134, 69511, 47804, 30616, 77637, 40762, 38002, 10453, 132232, 11031, 13106, 9187, 3241, 25761, 186675, 38853, 132286, 23375, 10416, 17060, 130910, 18689, 27558, 76924, 12355, 11159, 51127, 208980, 10791, 69994, 5474, 72066, 41715, 456462, 33548, 12763, 189894, 21414, 17660, 12857, 12825, 188641, 62650, 82776, 10136, 696966, 114918, 69060, 7829, 138390, 37091, 45043, 18056, 194717, 76850, 229042, 206552, 1281618, 410308, 63508, 107919, 70556, 73801, 12835, 45674, 9982, 33214, 15755, 28399, 21369, 2263, 88769, 73418, 47346, 153216, 126250, 28159, 328478, 202705, 31800, 98316, 11721, 108662, 129275, 89369, 164107, 33123, 70275, 21368, 11345, 76773, 1947, 24034, 27718, 27134, 29597, 3273, 161744, 361220, 127645, 2616867, 437, 8417, 12948, 592, 390697, 15346, 36792, 28531, 1118333, 676219, 166085, 20021, 41509, 1210196, 2173, 75378, 183748, 37397, 26533, 1609504, 910164, 209539, 67578, 89716, 36389, 17303, 59840, 72853, 33799, 159998, 28477, 66895, 3179, 12711, 10206, 8484, 3054, 23684, 6079, 94149, 5820, 4913, 61344, 14379, 29885, 19128, 60444, 18883, 23240, 8272, 39095, 28487, 21011, 15026, 12124, 161370, 2573227, 50088, 39225, 163778, 89975, 1622, 26996, 5717, 2887, 200319, 18336, 13364, 37775, 32745, 246832, 65529, 13711, 94998, 277794, 14676, 9717, 69276, 25692, 61449, 14016, 11959, 110723, 1748708, 26231, 5755, 628, 15955, 1006611, 9784, 12287, 78666, 15780, 11059, 23727, 71705, 49172, 26282, 50947, 29759, 375371, 31978, 11439, 15213, 10945, 9938, 26385, 30255, 25414, 55496, 8623, 33744, 72307, 25242, 5025, 5024, 482, 10357, 5905, 15996, 28842, 140369, 36306, 118748, 125827, 74123, 57175, 167010, 21545, 145649, 42875, 195971, 91272, 100473, 99993, 56403, 52468, 52613, 31409, 106581, 902208, 686181, 27017, 17714, 422506, 69486, 6418, 5361, 25180, 67033, 54501, 178839, 99240, 26686, 327169, 6234, 78388, 67322, 5246, 144090, 11918, 9941, 50746, 20655, 39881, 34685, 328712, 18233, 24909, 72151, 45612, 15338, 38688, 114900, 5440, 4075, 3314, 41417, 108670, 9158, 14576, 4778, 1803503, 41566, 41786, 111595, 6339, 9234, 8667, 134072, 26832, 29825, 164914, 38362, 782, 2054, 961, 16378, 5914, 6103, 11792, 88176, 21616, 11077, 24563, 37621, 75170, 16683, 12527, 30947, 24152, 4008, 51433, 4930, 55733, 41404, 35357, 8208, 29461, 9235, 1333, 13121, 2576, 2666, 2443, 21929, 265129, 779112, 550218, 49735, 475, 1734, 53907, 76663, 195389, 23352, 23759, 11397, 10767, 250335, 3181, 6539, 65040, 13862, 5578, 167684, 12202, 29877, 3765, 24382, 58663, 23102, 49512, 188851, 41929, 1845740, 304158, 565914, 84017, 28328, 800123, 77960, 413528, 25148, 48196, 2548, 2241, 41757, 940014, 26707, 14191, 55382, 654, 1672, 14746, 5074, 2661, 32650, 2852, 742, 6578, 1312, 1246, 2786, 11301, 191282, 29882, 19735, 262432, 17048, 665866, 37911, 79243, 54734, 41691, 64606, 48233, 23302, 171383, 13678, 40335, 51643, 28375, 22058, 24669, 98761, 7357, 2115, 112980, 10552, 24876, 2975, 2538, 13582, 14514, 30719, 9115, 4337, 60171, 13418, 117191, 54169, 698, 106213, 121631, 78123, 66410, 52502, 50237, 59225, 59230, 11210, 29679, 12182, 10805, 117389, 13438, 34420, 9556, 11710, 4769, 76733, 14850, 95446, 44779, 39988, 12503, 84467, 45077, 33036, 8157, 14286, 15984, 45284, 32947, 2126, 3680, 43565, 8542, 19325, 11208, 32046, 54963, 49678, 20067, 36009, 121037, 11458, 6969, 21317, 7134, 57504, 9646, 14082, 35051, 54161, 40927, 26760, 132670, 63990, 883, 50372, 20509, 71645, 101059, 80760, 48391, 2270, 1533, 103605, 769, 3956, 234068, 20763, 26898, 39075, 25902, 11667, 2192, 10091, 16030, 433, 202294, 16804, 64763, 5786, 7511, 8192, 98138, 5732, 29059, 28649, 1183191, 3035030, 424931, 127855, 27770, 4632, 14896, 14162, 13713, 17467, 84789, 59689, 11965, 9039, 308, 24951, 2777, 85467, 12329, 15167, 1170, 7225, 38018, 17575, 3416, 28467, 5640, 11247, 55951, 46478, 36397, 38900, 6517, 316177, 49161, 35443, 9255, 1142, 27735, 16463, 17526, 13813, 21731, 9918, 5850, 27011, 21281, 6733, 4903, 6071, 5295, 155330, 12175, 33352, 339564, 23658, 57897, 16692, 9307, 100783, 334969, 174133, 35029, 306193, 38392, 41448, 40289, 8199, 6437, 20219, 33100, 753873, 211023, 9145, 120329, 124401, 355, 89196, 9295, 10475, 16475, 67819, 9479, 108389, 30530, 5884, 4040, 7520, 41662, 6360, 79444, 6121, 541908, 185552, 205738, 73049, 13683, 64828, 12418, 2480, 5467, 20167, 12050, 3238, 1042, 139096, 201403, 70038, 4705, 1812, 9495, 8995, 9668, 64163, 4594, 12940, 121580, 107473, 27688, 88254, 57257, 28304, 27430, 36923, 37264, 12274, 2262, 354, 448639, 1408859, 151063, 30330, 13787, 7108, 497463, 12338, 10794, 4466, 7242, 10778, 11516, 5409, 33099, 45667, 34579, 46587, 41317, 74991, 70061, 37317, 73196, 52512, 66239, 59742, 58379, 57905, 66363, 70906, 125816, 50469, 79128, 94773, 148482, 205265, 42566, 14890, 7623, 22551, 12430, 10380, 8928, 166642, 22896, 3971, 9869, 5895, 25106, 16504, 201872, 11012, 251037, 30764, 5047, 20393, 6566, 31949, 158600, 114203, 12528, 10287, 7074, 92935, 7951, 105030, 34780, 73443, 21093, 30124, 48606, 41544, 108913, 29628, 47943, 64829, 38931, 31627, 8546, 24644, 70204, 19401, 20990, 87453, 33321, 82460, 62591, 35164, 45473, 2459, 108575, 3329, 14547, 49157, 16777, 144509, 153923, 20673, 57293, 11298, 42989, 19717, 10420, 16784, 3503, 126216, 53286, 147239, 14995, 220179, 5329, 354020, 46250, 67095, 56911, 57815, 284607, 162459, 20379, 8007, 21455, 95620, 48364, 107437, 64497, 164711, 37374, 37909, 74348, 85568, 37755, 37754, 1403, 429703, 61948, 57242, 56670, 101246, 198831, 802497, 73734, 56367, 10608, 28213, 30606, 33812, 5334, 38619, 139344, 206614, 163297, 10250, 54051, 24305, 32895, 201465, 54412, 6982, 374935, 36047, 78374, 799, 10899, 12385, 317944, 16468, 15086, 21409, 40929, 49866, 32726, 119112, 46073, 35106, 6161, 13759, 254531, 129815, 84002, 51935, 14243, 13815, 36304, 12682, 217205, 33643, 89255, 94559, 297300, 441825, 33520, 19332, 37823, 55125, 8239, 29933, 15397, 17360, 270524, 137149, 4465, 6392, 48201, 21396, 24028, 54334, 223849, 76639, 7317, 348747, 9056, 15072, 11904, 23741, 23418, 2504, 6940, 19922, 12443, 66606, 23988, 122115, 62874, 112164, 389285, 49281, 100350, 74627, 79771, 36956, 118453, 153144, 180845, 25170, 81592, 73290, 102434, 13155, 84771, 79743, 94768, 48398, 63213, 18357, 14846, 20293, 23704, 291779, 39437, 62793, 14643, 31368, 11179, 8951, 36016, 631, 104630, 176393, 14289, 23711, 9004, 31471, 7928, 20414, 8395, 17493, 23993, 10252, 12659, 169, 2825, 51340, 12860, 3180, 193400, 44192, 28674, 4206, 817, 12761, 109734, 17507, 7165, 18566, 744081, 24594, 52869, 18897, 9364, 29485, 9882, 124169, 70010, 111424, 110066, 29870, 199971, 88038, 25320, 5088, 110665, 6875, 349215, 32124, 1294631, 598374, 498576, 3759, 49998, 156456, 17421, 77475, 240674, 35819, 139364, 62675, 15978, 373969, 146115, 8017, 30713, 853, 3747, 45735, 44840, 117205, 46463, 98097, 64815, 49873, 23974, 31059, 2060064, 4071, 160013, 61462, 27081, 15045, 78767, 106633, 24271, 28249, 24828, 21487, 25377, 44334, 126176, 11508, 3305, 1206872, 79500, 432, 71494, 17686, 254920, 182003, 5205, 87423, 30623, 30766, 46967, 51610, 38825, 9465, 20902, 10476, 6454, 206037, 43979, 2242, 9140, 21111, 22301, 28707, 30211, 11277, 957443, 3547, 836533, 173566, 50876, 8843, 6984, 593803, 6941, 15779, 3163, 46596, 40415, 164694, 77173, 43527, 19309, 36452, 5966, 36122, 15174, 1821, 9348, 97734, 120593, 7845, 14796, 9454, 57754, 45140, 313765, 106783, 12333, 27234, 21012, 24918, 20725, 89930, 17496, 23255, 4791, 16457, 152119, 5667, 1306, 5645, 2654, 49360, 55621, 20077, 3888, 14397, 10181, 16557, 68931, 80426, 3552, 7543, 80128, 1283, 22660, 562, 77878, 145936, 87534, 38831, 28081, 59123, 347880, 49923, 101217, 63695, 10916, 6610633, 401594, 48206, 28555, 13807, 22336, 21241, 43313, 65738, 5250, 105150, 54058, 1723, 6440, 171049, 224322, 582645, 3274, 36345, 12831, 126846, 114348, 22258, 7261, 378, 31034, 22725, 68067, 83588, 24630, 16877, 14079, 25838, 24051, 99353, 137535, 337273, 180905, 35078, 53304, 14798, 37441, 187305, 190721, 22466, 30621, 121178, 313, 3521, 1914, 34866, 13, 30532, 33211, 53087, 21939, 39084, 57538, 56025, 28138, 106642, 3671, 3438, 214731, 8945, 5289, 6391, 5811, 41192, 108424, 7319, 7228, 5282, 613322, 1619998, 10770, 4692, 152430, 591668, 13992, 43066, 18346, 201023, 16577, 161092, 161141, 46437, 30599, 52310, 4631, 247070, 80832, 54213, 29939, 67752, 10935, 36560, 64242, 64347, 100953, 162984, 74394, 68670, 37193, 35086, 10722, 2700, 33528, 45390, 15855, 71759, 125140, 7878, 12833, 4565, 2845, 6510, 24483, 10116, 7970, 16612, 19484, 165849, 106252, 16151, 92758, 92243, 24386, 16384, 7022, 5478, 351330, 84707, 67930, 74061, 78578, 81286, 4589, 106800, 80641, 32583, 3689, 36354, 37757, 50021, 14506, 18155, 3931, 28782, 16833, 1111, 61807, 14277, 23318, 15898, 12382, 28541, 30992, 447232, 8548, 4885, 44233, 137084, 74049, 294669, 7086, 23204, 13352, 40188, 93491, 79694, 4634, 6189, 1188, 35418, 11824, 8540, 6721, 7244, 107113, 26050, 44639, 8885, 39261, 8346, 31339, 11075, 49006, 55453, 9396, 103283, 184850, 834, 10890, 26616, 267592, 6537, 97257, 228002, 276283, 33242, 1401, 3185, 60543, 171724, 12557, 15, 29, 352671, 570557, 17681, 16554, 125961, 4857, 57180, 4860, 9437, 10586, 38739, 9505, 119085, 13218, 2322, 11874, 29307, 16900, 12732, 21888, 19670, 23108, 825, 12112, 13042, 13895, 14813, 40738, 27746, 28551, 15165, 6412, 111155, 66807, 58025, 72165, 116359, 8500, 56152, 2377, 7211, 10753, 24167, 88555, 9560, 2218, 3351, 46019, 33562, 13958, 43352, 4912, 206, 121235, 3751926, 15302, 32252, 16733, 6089, 51155, 57605, 1934445, 48830, 27223, 10697, 1571, 70603, 76849, 58333, 344038, 163400, 101328, 11367, 8883, 1981, 13449, 53555, 1106379, 1092, 1537, 153, 263, 63026, 249586, 3560, 2668, 4537, 11189, 530010, 1353, 72823, 7070, 90492, 70646, 4573, 17703, 34966, 100397, 3213, 12914, 1324, 6304, 27360, 7075, 48259, 10617, 403286, 15157, 12384, 17474, 24267, 8231, 19864, 22633, 13054, 72016, 1565, 6670, 15834, 12484, 5596, 12942, 5613, 29617, 7611, 68508, 2959, 16260, 49114, 6709, 1562, 5344, 626, 5741, 26126, 16523, 272, 40587, 18545, 110403, 7219, 584469, 129814, 6561, 5510, 2988, 3265, 1041, 939, 44165, 9809, 11860, 2043, 15912, 5292, 223145, 247163, 14350, 3141, 40173, 13776, 152487, 485, 2956, 198048, 38005, 775517, 6899, 27521, 3894, 15225, 71590, 85270, 34601, 41981, 315208, 15631, 170576, 9384, 480694, 803, 57919, 32404, 10804, 12558, 15418, 39626, 6591, 17565, 26193, 8117, 2145, 38859, 5950, 57036, 16782, 12949, 2559, 9095, 2960, 1624, 43135, 2742, 938, 18286, 75766, 167948, 51807, 56524, 3624, 61424, 13648, 42703, 6765, 175671, 11216, 42085, 35331, 9579, 4648, 21273, 2372, 41775, 21626, 249135, 21380, 68813, 28093, 87313, 19709, 4842, 6590, 12368, 1298, 6305, 55603, 14518, 18303, 14024, 2747, 2339, 2833, 713, 48673, 120224, 74023, 64630, 14696, 1274, 785, 11529, 2280, 3350, 53096, 33658, 17174, 14512, 3511, 17847, 5908, 56900, 55077, 43894, 18150, 275206, 21287, 26342, 61296, 20730, 52553, 4444, 62614, 48047, 36177, 33851, 15554, 1424, 4865, 18796, 5803, 2699, 34632, 7803, 158539, 3512, 76204, 7539, 15700, 12844, 26640, 144251, 64819, 13624, 13748, 8018, 34050, 932, 1906, 11944, 4494, 9586, 44260, 209493, 18076, 16809, 86, 239558, 445, 4504, 43326, 32827, 82060, 69936, 1824, 258, 7628, 2762, 23343, 59797, 130058, 1070188, 130306, 93014, 86630, 5919, 109, 1430, 1406, 733, 3240, 2998, 2766, 707, 8204, 331, 23415, 184695, 12017, 19030, 65796, 30391, 71639, 18992, 7579, 10243, 7782, 6170, 7487, 7949, 7208, 9839, 15303, 22695, 7453, 7593, 7040, 8022, 8226, 74608, 8259, 52623, 187333, 252845, 7323, 19953, 2834, 1530, 20551, 23232, 25185, 2424, 7640, 14814, 2220, 160089, 4045, 23264, 166287, 10154, 2244, 16442, 6525, 435835, 105020, 3983, 33292, 20199, 52116, 220599, 60105, 15412, 14523, 2364, 2589, 2209, 1149, 3012, 29761, 122040, 59954, 40092, 13337, 28072, 178953, 9246, 27402, 73105, 2251, 10394, 36558, 17151, 143206, 51842, 9249, 29753, 24727, 18717, 17509, 39409, 12899, 19223, 37252, 25288, 29182, 28370, 22155, 6131, 8335, 26088, 11748, 17665, 28703, 12391, 137526, 6975, 12270, 118425, 21387, 24236, 11783, 106190, 25410, 910, 786952, 11954, 903, 119702, 16428, 73638, 18901, 1743, 307, 19281, 30891, 4030, 19995, 5539, 19631, 4127, 8129, 9617, 76021, 1082, 6139, 41925, 44388, 13376, 1376, 4020, 19187, 15773, 26313, 9870, 11966, 222800, 73447, 12757, 15374, 24368, 5746, 20549, 209584, 86224, 74360, 124685, 13827, 23977, 16631, 12002, 44143, 22242, 3106, 6430, 15530, 10754, 7019, 42830, 184841, 8166, 33254, 27029, 5006, 4426, 5162, 3866, 27715, 108048, 115604, 107917, 16176, 119064, 170933, 8646, 3493, 42404, 544174, 299185, 98627, 47659, 33663, 14733, 5527, 4058, 1259, 79652, 48984, 10976, 9165, 2464, 1050324, 21120, 9794, 6176, 56440, 68059, 3222, 24455, 9444, 163, 4061, 26718, 25416, 108600, 2239, 5223, 113371, 321, 4043, 830, 36218, 15005, 5788, 9285, 10059, 12431, 4276, 89521, 58354, 5611, 11618, 37510, 132, 25244, 110975, 8516, 58353, 21256, 8673, 28424, 273896, 700054, 475440, 83029, 144000, 10318, 93226, 70223, 19045, 32635, 49193, 27802, 25657, 48242, 101028, 55835, 31179, 2186, 2866, 79388, 10656, 7834, 245780, 81104, 76670, 29015, 80341, 5673, 93129, 29943, 16473, 12367, 6177, 7400, 670, 624455, 15033, 860, 2009, 11919, 15941, 4454, 3258, 6048, 12184, 3000, 25907, 9292, 6141, 4700, 412733, 13685, 314688, 57611, 30585, 1966, 14741, 20512, 1530690, 3945, 10865, 8028, 50950, 55290, 36938, 1196, 13503, 9321, 252595, 6756, 6057, 65914, 1303, 16061, 17376, 206882, 3004, 5854, 20541, 23732, 56544, 10742, 8704, 17086, 21611, 2702, 20782, 61050, 12196, 55819, 5826, 14585, 4104, 1483, 36744, 7238, 19482, 24755, 41230, 20, 26893, 31252, 3614, 457, 64409, 67201, 1566, 34532, 64844, 46971, 34997, 32032, 134032, 33250, 36718, 2045, 5512, 919, 245, 33480, 14883, 56029, 61025, 2408, 31159, 45739, 2519, 39338, 21813, 8051, 11561, 15579, 58446, 2513, 8104, 19398, 92630, 45224, 7366, 14089, 36798, 53528, 11407, 3670, 10902, 76, 9060, 5683, 9893, 225, 8289, 16096, 15892, 5646, 33221, 97787, 201497, 93026, 208, 10188, 21832, 482158, 8337, 39965, 46120, 56518, 90092, 33206, 2001, 3914, 1764, 32068, 263240, 2268, 6612, 3541, 224272, 60523, 1770, 2128, 2701, 169241, 26387, 187424, 74111, 42374, 95463, 329311, 3164612, 8131, 14493, 73041, 124057, 108598, 1560, 12524, 51445, 20850, 7420, 53446, 24139, 199966, 65375, 174589, 108172, 50893, 14899, 58066, 22892, 10232, 24037, 18578, 15509, 38430, 82463, 274, 40434, 127463, 254733, 15411, 34324, 61552, 147347, 23569, 19252, 291311, 74995, 41114, 43329, 6041, 4069, 5068, 22982, 2389, 2687, 66167, 320304, 1849, 8466, 42940, 12328, 523535, 226674, 90717, 155907, 67979, 14621, 24429, 63578, 63149, 42611, 24916, 43231, 122357, 39523, 16075, 6985, 34280, 3829, 1850, 1861, 64068, 21061, 9696, 20348, 11118, 303, 2871, 42, 16447, 39595, 10213, 1816, 32643, 1419, 56747, 1775, 1471, 5453, 11523, 6592, 15640, 2323, 7504, 2083, 34834, 3268, 32986, 18204, 9198, 6807, 1940, 21861, 89870, 50524, 92849, 24710, 27378, 17375, 45017, 195897, 7473, 7018, 11627, 26785, 30561, 1222, 3637, 18770, 15375, 1302, 90131, 21840, 636, 72867, 202, 4006, 85352, 15519, 46364, 13615, 31390, 25046, 33005, 24261, 4113, 7063, 38673, 10661, 7463, 6871, 15270, 32147, 5705, 3532, 100207, 20195, 31361, 43727, 86768, 11840, 1702, 135789, 162021, 3060, 1313, 385, 2530, 97570, 177742, 203, 11378, 19133, 352848, 43522, 39206, 37339, 93168, 43115, 44491, 47807, 65498, 36308, 79883, 54476, 23105, 1355, 277597, 29387, 11037, 17180, 20484, 55980, 27171, 18449, 275327, 5155, 573, 92995, 50243, 12080, 5090, 60437, 60970, 51741, 28438, 33109, 1068, 20846, 16654, 2611, 2451, 2944, 8364, 119, 381, 29994, 39740, 116935, 34034, 18871, 15448, 10574, 41847, 2812, 21248, 7533, 9011, 10944, 23941, 22436, 6226, 39767, 22852, 103364, 16356, 8989, 186744, 30816, 22837, 379, 40605, 17867, 18055, 8852, 149, 118705, 38315, 28745, 4858, 1603, 7565, 17156, 225458, 21767, 2010, 49801, 2923, 10549, 10174, 17098, 15962, 210, 13135, 22114, 3856, 6834, 22864, 3590, 5869, 84, 78316, 1184, 11869, 6138, 7095, 38238, 23005, 25337, 19686, 55913, 29763, 375, 15670, 1872, 5145, 6018, 3629, 3399, 13404, 100442, 13344, 5941, 89, 1635, 88, 52373, 19064, 44439, 306421, 1405, 77911, 229676, 26870, 31971, 103149, 45488, 1670, 6910, 1645, 2032, 37, 44563, 40025, 5729, 11400, 24463, 4232, 6248, 2108, 641, 5699, 3414, 1105, 2625, 431, 34844, 101400, 30656, 57056, 71947, 273, 865, 13548, 127, 59849, 16231, 6634, 4498, 26738, 121409, 119746, 166200, 195969, 151056, 138472, 17340, 8356, 2458, 5193, 28742, 83300, 66736, 102, 4976, 7889, 1636, 61411, 71499, 39405, 268770, 57780, 37012, 61042, 31826, 44722, 23863, 372244, 25002, 50650, 157223, 10732, 38787, 20913, 36090, 26007, 8942, 13936, 3968, 4772, 35285, 133939, 2587, 20358, 42173, 8635, 9429, 12602, 7598, 8067, 50759, 30302, 16595, 16949, 77370, 1390, 1046, 15644, 5603, 28955, 3724, 505, 413, 18867, 80184, 29888, 6243, 6432, 15073, 34586, 13016, 11735, 11521, 4091, 8990, 17503, 6559, 2724, 3297, 29726, 68019, 29739, 33436, 58549, 47376, 10080, 30869, 1284, 33718, 29921, 83844, 20086, 875, 20274, 15379, 44478, 74237, 6425, 8496, 5449, 13048, 14012, 15581, 196, 4361, 14330, 47402, 8267, 25758, 6728, 10000, 17977, 14966, 36760, 44102, 7969, 863, 52889, 4265, 34037, 4606, 4163, 108685, 13338, 95517, 41422, 31070, 18025, 44696, 14976, 11285, 42921, 47921, 14221, 5320, 11183, 26978, 7613, 54860, 9306, 36572, 13587, 222599, 8541, 9023, 90821, 13502, 781, 270, 39882, 10023, 25303, 10035, 1065, 13432, 3962, 42187, 36258, 3089, 15904, 17778, 35291, 8861, 11308, 33191, 6610, 10627, 10454, 12088, 19203, 64140, 7116, 143015, 906, 9609, 26462, 278, 54810, 1029, 8805, 50936, 328571, 44805, 47673, 26530, 16040, 61619, 65921, 86388, 29159, 33399, 130431, 2996, 10439, 4959, 7157, 20427, 1606933, 24817, 9133, 46345, 8004, 38662, 72459, 72475, 5096, 2883, 6959, 9394, 27262, 10679, 70084, 292, 61, 83447, 15881, 5373, 4734, 8135, 1153, 2812981, 53702, 40805, 653, 20784, 12854, 566, 3061, 9468, 211767, 7898, 1836, 4471, 10306, 858, 167, 2603, 25737, 178, 1707, 337, 2914, 20482, 881, 8703, 6044, 2273, 11218, 13501, 26131, 27302, 5153, 10563, 2215, 5245, 29785, 447388, 111, 122856, 17292, 19811, 21066, 6247, 20022, 3043, 23849, 10361, 13871, 9016, 4808, 87041, 189, 2393, 6542, 19850, 19565, 55994, 14460, 24768, 48434, 23131, 18613, 22305, 90067, 6500, 11239, 12300, 4483, 12577, 67801, 56977, 36699, 26108, 18548, 39771, 3972, 4584, 20923, 402, 29373, 3380, 65464, 64035, 53711, 55085, 90525, 59728, 15735, 13661, 893, 23284, 5403, 146369, 40758, 100885, 33038, 91064, 8429, 23537, 23629, 88624, 86325, 4335, 1179, 39563, 8090, 24852, 19855, 2395, 131164, 4434, 21630, 6742, 31988, 107, 13137, 1412, 21254, 253376, 58189, 415, 27246, 14946, 18487, 30830, 32934, 36200, 66958, 24297, 24422, 1501, 447, 67963, 93, 2412, 17758, 3, 3133, 4195, 92927, 1717, 32789, 730, 16818, 12709, 3272, 14384, 7848, 22871, 14256, 1666, 310643, 212898, 514280, 155675, 184834, 29703, 38633, 253513, 16376, 45776, 163054, 11003, 1463, 32869, 32771, 525, 9416, 282, 11389, 19964, 4929, 76407, 33809, 12933, 22269, 179135, 9789, 2098, 3633, 4428, 4619, 2104, 12567, 98063, 768, 1862, 2105, 6789, 31835, 17617, 3147, 26532, 36556, 166954, 4107, 12083, 181661, 27073, 36499, 42878, 37433, 33910, 9536, 70791, 20452, 15867, 16562, 9866, 50324, 60147, 97930, 43052, 40429, 124675, 1785086, 22696, 5075, 15558, 75300, 415318, 9017, 35273, 30952, 73154, 78092, 88793, 3592, 16185, 8627, 65370, 153238, 6414, 10073, 633, 10444, 226802, 6514, 138693, 154318, 28722, 5653, 37837, 21315, 16984, 2820, 45748, 37666, 22709, 17609, 16941, 22235, 71745, 3636, 17025, 6683, 27431, 1733, 39643, 182663, 4517, 2008, 6, 8848, 7966, 9062, 356344, 6635, 11771, 1445, 10121, 2071, 5956, 2259, 19022, 3027, 3651, 3929, 4816, 5475, 190, 10633, 8544, 95210, 3177, 366042, 10360, 17332, 9527, 1530370, 24937, 31206, 10683, 9241, 8537, 46550, 21923, 8527, 6060, 14776, 3156, 51761, 3422, 1791, 2565, 2120, 2341, 72259, 7154, 19251, 141, 8475, 2306, 33314, 24239, 51774, 75469, 63544, 440459, 5536, 16871, 6039, 15187, 25050, 18479, 12031, 6365, 4236, 1794, 13027, 6845, 7206, 26464, 305, 2414, 477, 26553, 41755, 3995, 6621, 709, 2859, 39597, 17077, 7942, 4861, 49307, 3702, 7059, 9072, 4449, 5553, 31518, 2208, 16709, 2662, 105884, 1363, 20556, 20025, 191629, 6702, 37201, 8688, 31058, 4539, 36658, 36281, 31675, 34875, 7058, 35482, 8531, 1229, 367, 3890, 937, 16086, 31804, 163116, 121129, 7274, 62190, 15490, 5821, 40202, 19955, 10758, 71542, 22947, 15691, 50136, 47832, 12746, 17902, 15501, 87334, 4719, 1538320, 18755, 77629, 28014, 3205, 326, 10, 10032, 9015, 21450, 39397, 36933, 28919, 47824, 30785, 51173, 6184, 35965, 17038, 20618, 11935, 7684, 204, 7532, 79828, 12375, 29966, 24485, 22395, 53796, 27485, 28407, 70855, 2697, 8600, 33063, 1960, 24796, 16759, 20534, 16963, 23308, 8620, 22203, 97034, 12790, 98394, 5769, 10138, 740, 161293, 8618, 6130, 8243, 261456, 27397, 3842, 1941, 8779, 4025, 78902, 6163, 15408, 3040, 1232, 13247, 43703, 3741, 992, 5186, 28763, 110055, 36315, 43256, 37022, 10894, 315332, 6764, 2004, 70279, 27598, 27482, 17459, 9151, 9954, 17786, 12014, 23461, 1705, 4062, 114, 1592, 23099, 404560, 8285, 46032, 10550, 135773, 48308, 2848, 3069, 3727648, 30204, 40693, 21681, 2226, 102406, 19757, 2024, 27604, 1268, 5783, 10363, 1136, 557843, 10622, 9420, 3488, 2906, 1726, 35855, 59326, 7940, 230774, 8409, 28552, 29426, 54512, 2351, 2130, 6142, 6196, 3341, 126064, 4323, 12233, 133226, 28051, 192661, 24651, 9844, 58997, 18372, 125203, 28922, 5201, 58519, 5547, 12231, 12849, 201527, 259453, 37144, 204483, 236870, 36171, 8317, 10948, 6428, 471448, 4242, 442, 66569, 14517, 39649, 658, 49937, 53971, 145463, 5060, 29734, 18644, 30806, 4109, 9333, 39689, 63891, 6499, 37637, 21104, 9283, 16821, 16751, 28583, 4524, 5242, 31280, 10609, 25124, 5251, 2824, 7922, 238, 1422, 22094, 95608, 18014, 5311, 13941, 16518, 1752, 10731, 9028, 646, 1596, 126273, 98790, 2842, 9021, 16238, 32999, 21483, 18628, 20487, 258938, 42969, 8136, 3717, 1667, 2636, 15634, 7246, 2047, 19123, 16514, 5781, 10208, 31766, 14536, 4556, 6784, 450, 5922, 3804, 33256, 6813, 8025, 108253, 17347, 38262, 23640, 11000, 132447, 97332, 4097, 2084, 2882, 1369, 1418, 49, 856, 41950, 23423, 30063, 10786, 1243, 5358, 10967, 1219, 5594, 53161, 2423, 763943, 63978, 4515, 494, 60205, 4334, 4526, 19176, 7456, 2586, 142998, 1361, 6727, 69, 3167, 17990, 19344, 7588, 90908, 951, 5583, 47989, 10436, 2038, 10030, 10099, 6287, 133890, 1398, 54012, 16693, 3792, 17561, 80393, 137618, 859, 12507, 1125, 5775, 41380, 14707, 53017, 5063, 563199, 4114, 38598, 23803, 23378, 21684, 61026, 49770, 10224, 22342, 53152, 53398, 1965, 44258, 1854, 3713, 49633, 464, 58057, 16548, 24953, 389, 1076, 19575, 1838, 4388, 2180, 2366, 1370, 4202, 1787, 974, 4117, 68384, 5532, 116165, 170593, 4260, 4867, 10070, 9680, 1383, 24709, 54746, 16979, 2217, 5156, 2124408, 42249, 18805, 2793, 583, 10714, 16649, 23235, 5674, 2156, 6774, 18288, 29055, 1855, 1587, 28598, 8806, 50442, 21717, 1576, 82889, 2258, 4783, 6894, 49639, 12044, 38, 4279, 45372, 27034, 10110, 36378, 25822, 10856, 44515, 204371, 16660, 83168, 41434, 2891, 34552, 27385, 953, 6348, 1354, 21118, 13047, 9010, 56207, 15895, 109981, 60223, 14965, 23492, 12058, 5400, 7310, 63823, 5988, 6319, 843, 2336, 22370, 20863, 168581, 1116, 1322, 5628, 1189, 662745, 833366, 10809, 11038, 13362, 1840, 2788, 23668, 9215, 64336, 3048, 871, 36160, 42941, 24751, 9176, 217935, 93292, 28165, 15919, 29270, 34537, 571, 44115, 16588, 3793, 49081, 16946, 3052, 12024, 1012, 148161, 9141, 40764, 33953, 19294, 5226, 14504, 38224, 32350, 16874, 4378, 21627, 56910, 45029, 52920, 19376, 23228, 30405, 80230, 3627, 71417, 15850, 43869, 118, 44548, 1568, 58876, 5191, 21097, 54865, 1239, 2195, 3388, 1896, 2660, 8672, 14836, 39157, 2652, 9368, 11089, 23304, 7146, 20804, 10733, 4621, 2027, 9942, 74652, 17717, 12120, 10509, 15240, 143720, 27994, 3378, 15027, 16669, 448, 18116, 822, 1832, 7767, 14206, 10777, 15885, 42221, 235831, 71282, 31621, 32179, 81111, 3439, 17298, 14717, 13934, 201, 3053, 4812, 51137, 9787, 44234, 2807, 47097, 8282, 2768, 6640, 12494, 3791, 4261, 12843, 7719, 1028, 72468, 66749, 51360, 3744, 952, 17, 1348, 41155, 17095, 2931, 3650, 55551, 49519, 46501, 2219, 3211, 639595, 72676, 83, 5357, 678, 20420, 4417, 17047, 10036, 967627, 24985, 68709, 5795, 8857, 21417, 122023, 105136, 28861, 93629, 6996, 15449, 37259, 59, 9623, 820, 6260, 41, 11847, 46483, 4681, 556, 198711, 3073, 32287, 71334, 55011, 339, 65120, 8844, 27534, 99437, 408449, 27031, 20733, 7326, 3612, 16117, 19055, 1699, 14274, 5065, 56370, 1693, 8980, 97, 72594, 11924, 3072, 64995, 91080, 1751, 28790, 162795, 8889, 8802, 1490, 5672, 12003, 5124, 3927, 32815, 3738, 4385, 35351, 1505, 123139, 527, 244033, 33452, 29283, 6424, 5143, 28032, 10506, 878, 1130, 4103, 26153, 11161, 12971, 18022, 40501, 1882, 43375, 6599, 59190, 58419, 50266, 69448, 35564, 7385, 944, 3859, 9720, 21875, 9150, 838, 73560, 25752, 1569, 3798, 7555, 210384, 28906, 20275, 23775, 10344, 75180, 39608, 987, 2614, 18065, 7452, 54487, 13392, 52184, 68248, 42184, 42254, 2472, 36897, 29819, 2957, 57352, 32430, 806, 85869, 5172, 22923, 3281, 2949, 26867, 3269, 816, 25120, 714, 112245, 14701, 8501, 1087, 1692, 4384, 451, 29113, 13662, 256, 57583, 32402, 7172, 7633, 596, 37805, 4963, 392, 13103, 15722, 9242, 1936, 4016, 7358, 328, 17384, 3145, 80, 3867, 52985, 10686, 9436, 128686, 3872, 3174, 34841, 3814, 580, 2118, 36383, 3239, 49970, 6928, 21114, 1749, 3823, 25499, 22786, 24177, 24940, 31431, 27277, 40598, 12985, 4595, 10477, 3659, 213834, 30089, 8943, 9058, 59648, 66509, 2656, 1954, 11423, 885, 6149, 44, 3225, 639, 191, 50091, 1523, 44998, 5174, 11970, 43892, 1907, 20701, 10438, 10365, 221, 48074, 22065, 4810, 5027, 1825, 3017, 2095, 1535, 13092, 26055, 3389, 1649, 58781, 115435, 145530, 126045, 19892, 9737, 417278, 17582, 784, 62431, 1129, 6613, 105524, 23424, 3207, 4333, 26524, 146, 7823, 4933, 5264, 60177, 37427, 8013, 18139, 2183, 33259, 67368, 160, 18834, 58940, 7491, 10649, 5605, 6358, 5885, 3354, 50566, 66580, 44303, 528, 3779, 3057, 28643, 2933, 97824, 14948, 985006, 3620, 714726, 4325, 7523, 2760, 90842, 61700, 125438, 2633, 26726, 312990, 52307, 135956, 118690, 21986, 42906, 35132, 141486, 382575, 28767, 7265, 91219, 53879, 534055, 43865, 625, 17649, 29868, 11459, 1499, 29694, 10371, 7220, 281, 4696, 5906, 3516, 134310, 30469, 150475, 1349057, 16944, 71072, 6933, 2899, 99478, 12345, 33403, 542964, 5931, 6631, 3640, 41522, 319729, 229691, 14574, 9825, 33880, 333558, 2404, 6466, 113691, 386, 26665, 32205, 8950, 59678, 2172, 26672, 57116, 22452, 5866, 23814, 455069, 8748, 17119, 508, 2093, 401881, 34943, 1474, 3737, 42410, 56543, 30686, 30411, 31149, 32738, 1473, 1433, 6655, 1921, 3517, 15323, 3985, 124, 63821, 3114, 85405, 516, 39, 13566, 376, 51182, 9910, 6501, 1226, 17724, 14874, 1669, 48650, 577, 9111, 364, 76063, 19469, 391333, 643, 112291, 958, 14013, 6763, 14422, 10822, 28422, 34924, 39277, 80550, 16232, 36182, 34244, 13792, 14495, 140, 8890, 13900, 31473, 14041, 20449, 1856, 8972, 7217, 13942, 9259, 10144, 11551, 36148, 43118, 88801, 54333, 6236, 6792, 9733, 133708, 1878, 3943, 8143, 251999, 9598, 41883, 47752, 8430, 29347, 12066, 547462, 2318, 1900, 712, 33958, 7953, 3149, 43473, 16398, 10817, 28209, 11762, 265813, 25282, 13440, 97778, 854, 630788, 1531, 1454, 1493, 14780, 81227, 23394, 1842, 3487, 722, 2053, 16711, 1890, 75013, 73, 35293, 2453, 2573, 192443, 460, 2157, 5340, 393, 179872, 30976, 2006609, 13151, 15012, 1074, 11949, 13269, 59866, 12101, 3530, 13920, 7032, 11441, 2595, 56871, 3440, 11149, 117488, 531, 22750, 2972, 58635, 79668, 38146, 5969, 5177, 9031, 19816, 33363, 6989, 105841, 177, 27096, 10637, 4, 130556, 52685, 24684, 25693, 26449, 36707, 15370, 7162, 147508, 353, 3178, 538, 16128, 13185, 5099, 23306, 13795, 983, 1325, 8015, 9795, 630, 1696, 13656, 44888, 59439, 9725, 12751, 963, 16899, 1586, 2310, 26196, 24100, 6646, 4093, 65978, 39317, 467, 16574, 198, 45078, 5252, 21678, 16418, 5332, 24527, 55, 810, 4039, 19731, 24914, 146169, 70130, 78906, 66852, 13514, 193321, 4118, 5754, 1634, 1628, 1168, 2285, 36088, 2279, 73716, 27172, 675, 14968, 13933, 62507, 14273, 8202, 13221, 4873, 32680, 19120, 7044, 31050, 12735, 15610, 8988, 15980, 10175, 5984, 3037, 36759, 88364, 30458, 15274, 681, 68625, 3475, 3491, 34859, 2340, 36908, 44545, 3790, 347, 67060, 202204, 128888, 28909, 252, 25772, 4144, 42539, 204616, 462, 3381, 27322, 65314, 2529, 20326, 35969, 3579, 8977, 2648, 19761, 13681, 7368, 1169, 3654, 11843, 16197, 6651, 6285, 4072, 36749, 59325, 1758, 5148, 12199, 15866, 1317, 130821, 1117, 3379, 1730, 163815, 2950, 46411, 14806, 35624, 20263, 18874, 32900, 10203, 12, 15163, 16049, 10150, 6402, 8864, 52174, 6458, 18158, 27286, 6679, 10258, 11293, 6622, 8510, 19712, 5359, 18177, 32110, 1432, 69554, 1271, 36713, 50, 6270, 133877, 18860, 113, 54542, 264379, 469, 126158, 15001, 30970, 71203, 120217, 50275, 23319, 23272, 867, 7985, 5387, 591, 9254, 968, 6563, 33785, 15847, 8094, 17871, 3769, 6298, 26678, 16824, 18672, 541306, 495, 21261, 142245, 2782, 32, 13436, 9037, 19062, 21666, 27057, 31619, 5419, 590, 135074, 47564, 5142, 1972, 1107, 1973, 2705, 585, 728, 443, 163501, 10723, 5933, 3006, 44571, 103382, 1411, 2470, 282671, 7031, 85728, 13959, 116083, 237688, 125226, 276536, 5028, 3562, 5639, 220, 20659, 6090, 12241, 3045, 31327, 25370, 23261, 19080, 9958, 1220, 2532, 15245, 116238, 22585, 21817, 25193, 26666, 11107, 35368, 11396, 1084, 2767, 29807, 2546, 14626, 1357, 29515, 87255, 80202, 91, 54, 261, 10148, 2138, 2313, 11922, 38044, 8645, 130, 7750, 2000, 10105, 41668, 90701, 7017, 8735, 40073, 26883, 3115, 7381, 6010, 3788, 523, 86770, 948, 2715, 14555, 1207, 130449, 44907, 64839, 3513, 12193, 131, 9338, 3080, 63127, 4548, 6893, 29229, 41020, 17187, 735, 20589, 29675, 3817, 18327, 69418, 15630, 8348, 68750, 36943, 2028, 31517, 15443, 144, 1503, 117794, 5735, 734678, 61046, 2983, 5940, 2839, 63281, 51525, 9386, 13460, 128710, 75887, 1591, 15675, 21836, 123997, 9808, 751, 2359, 510, 13594, 49825, 9706, 34410, 7306, 116651, 16093, 1040, 1949, 128491, 4773, 8201, 3821, 9930, 973, 16657, 17216, 4017, 39073, 283753, 524, 10641, 80378, 2281, 3108, 2354, 1287, 884, 22810, 15728, 6906, 304, 109056, 7535, 4736, 42012, 2392, 646316, 66937, 59920, 3595, 23194, 98107, 7339, 82, 75327, 97605, 27752, 50900, 10502, 65985, 36813, 6281, 15340, 3454, 1526, 1450, 4000, 2641, 4056, 720, 11280, 48778, 7814, 3700, 4412, 3794, 8142, 13192, 26628, 12924, 343, 38279, 462616, 13266, 72604, 58860, 7550, 17207, 64393, 3766, 2748, 157768, 57796, 40655, 258193, 3395, 521, 9835, 24322, 61458, 133171, 6919, 16269, 2411, 3915, 2014, 2785, 8583, 78937, 12834, 11290, 5664, 496, 4499, 4964, 22377, 5662, 111166, 19756, 18490, 6395, 363, 7161, 28947, 1848, 40486, 1216, 381905, 8628, 11007, 3852, 6209, 6990, 706, 10635, 8387, 586, 4759, 17011, 6791, 3308, 110473, 299145, 10515, 25269, 83977, 185, 19270, 4425, 1131909, 3851, 374, 25114, 46492, 10792, 36915, 2231, 2971, 3155, 1716, 1077, 342, 7130, 25105, 13888, 4576, 44710, 45413, 1561, 16704, 98559, 11543, 160485, 249, 1379373, 21592, 1529, 361, 17673, 857, 1143, 9109, 1118, 3966, 9, 5676, 2783, 12912, 1528, 29593, 772, 6088, 1195, 7080, 6154, 545, 22039, 4846, 1739, 11536, 69445, 11015, 75331, 20687, 11456, 18790, 28826, 56743, 83492, 288, 48482, 1314, 20746, 6917, 23082, 8318, 38546, 12346, 48190, 47753, 14186, 271638, 27036, 9626, 59759, 247474, 7218, 19688, 64, 5847, 7718, 36167, 17433, 697772, 21121, 25843, 922, 19495, 8327, 40395, 829, 47134, 240301, 17521, 8423, 65488, 892, 15207, 14617, 649, 21877, 26703, 88498, 9089, 23879, 166916, 10072, 5712, 80269, 2029, 29948, 98778, 138, 42988, 90872, 28819, 40149, 23436, 836, 133, 9796, 19745, 686018, 9142, 13458, 26145, 22069, 578, 8101, 20075, 1637, 5817, 398, 101871, 69192, 9997, 25432, 77231, 24568, 206851, 239, 182901, 28028, 8654, 1970, 2059, 14113, 10289, 5846, 1335, 1156, 1640, 12420, 160065, 48360, 6639, 6974, 3188, 95009, 61039, 3652, 8525, 582, 4890, 665, 59096, 1929, 11663, 135057, 9347, 957, 4026, 847, 94844, 15821, 1078, 5019, 12211, 28846, 6451, 42577, 160157, 8584, 33126, 5762, 11154, 2483, 4131, 20939, 12665, 6477, 12611, 12062, 3442, 18164, 12481, 7698, 9279, 1935, 13896, 827, 241128, 136702, 35165, 10764, 15565, 7431, 13330, 2528, 13383, 219, 56760, 48652, 5030, 3884, 4581, 7106, 8727, 26544, 65, 3435, 866, 2432, 115851, 13979, 39521, 37058, 25947, 68324, 1146, 1001, 4534, 10561, 14461, 19028, 25583, 31205, 8433, 1818989, 323, 14323, 687, 22057, 40844, 7105, 19468, 864, 2508, 458, 17621, 11709, 21854, 7713, 51224, 70557, 14209, 15385, 15141, 13618, 1801, 14550, 21694, 19351, 5981, 4015, 1826, 11091, 195416, 6253, 10440, 119486, 63457, 594640, 1218, 6312, 9166, 4291, 10027, 1631, 19784, 14177, 4383, 14556, 14999, 14025, 88954, 11071, 30511, 37085, 19775, 935, 316, 8652, 629, 8781, 86951, 2619, 7215, 1742, 11952, 35052, 18167, 706674, 1402, 1305, 2763, 22534, 67843, 186465, 971, 21683, 108942, 94831, 90432, 28247, 15441, 40244, 34927, 227, 449, 4513, 7223, 6664, 7859, 91972, 22638, 1457, 111402, 1326, 3549, 587, 265, 3377, 12908, 6638, 7488, 2119, 14884, 101228, 246, 102922, 11156, 39985, 6136, 5577, 9488, 18749, 25736, 8063, 27414, 1032, 3563, 125043, 5459, 1963, 2792, 28364, 3848, 750, 31, 20992, 2363, 559822, 124075, 21338, 8513, 3316, 624, 7, 85266, 2977, 4961, 2133, 213083, 84353, 19568, 19, 18675, 3102, 24128, 40220, 193431, 58790, 243145, 326875, 22985, 851, 29007, 39069, 14032, 23003, 1682, 148, 2334, 45312, 27377, 2678, 930, 21186, 8404, 110, 10631, 487, 1069705, 12434, 610, 67, 122, 207, 49304, 13038, 905, 4311, 12774, 13924, 723, 14957, 119735, 632, 67550, 5886, 1366, 479, 3783, 70177, 691, 27452, 8336, 5164, 1783, 16132, 70979, 49930, 21334, 2457, 4305, 5013, 3256, 42347, 4037, 11098, 44139, 90, 21327, 41609, 81841, 13018, 26819, 2, 5045, 18272, 56704, 8563, 8572, 3277, 37124, 2876, 20299, 5302, 271, 10761, 14491, 3588, 55050, 95, 208695, 40039, 23054, 2064, 876, 7320, 12053, 298, 2810, 2169, 12664, 15454, 41503, 6757, 10920, 16698, 10184, 13407, 14812, 10541, 22539, 36885, 3323, 108041, 1253, 13796, 28111, 26458, 184732, 64254, 2844, 103468, 13766, 16541, 16734, 12084, 30911, 47669, 43157, 13483, 38096, 30, 26810, 1255, 776, 134540, 9457, 21471, 1915, 20818, 3830, 37360, 59022, 13546, 26310, 8, 26577, 5531, 7842, 16656, 2542, 2386, 60681, 43335, 176545, 218, 21847, 4088, 14509, 37870, 159968, 131585, 2915, 1953, 19318, 332, 31392, 57999, 3863, 104, 2910, 17334, 11242, 64592, 940, 2690, 559, 9575, 1171, 43505, 475905, 3905, 14437, 8695, 3286, 15515, 1244, 10217, 4936, 5126, 7257, 4691, 4477, 13529, 1065322, 326060, 29717, 14926, 686, 6000, 13793, 16272, 520, 588, 996, 8438, 12896, 6745, 767, 15237, 24845, 97392, 23266, 9137, 4682, 8237, 20308, 8150, 41209, 18933, 30091, 2629, 90966, 1514, 1852, 130450, 57137, 310, 37664, 11288, 2365, 31516, 3850, 3431, 3484, 1511, 6810, 12902, 1350, 15637, 2153, 187, 8068, 88737, 68275, 401, 18347, 3096, 13162, 73302, 14178, 20477, 8800, 7304, 41634, 23954, 18695, 34464, 627, 2855, 24694, 38377, 22, 3164, 10614, 5056, 4592, 2327, 5590, 4467, 7471, 5011, 32634, 23987, 6773, 12461, 383, 52264, 314, 8254, 14436, 6450, 3212, 3342, 84047, 1349, 30399, 3673, 9337, 2567, 1018, 9632, 483, 129, 369, 25, 51, 873, 1626, 1513, 4640, 1694, 171, 1019, 4332, 8291, 1549, 22487, 50151, 37630, 2007, 2953, 774, 87901, 31215, 36772, 157936, 25315, 1212, 3019, 82296, 2446, 179, 34381, 8940, 995, 8983, 7393, 111881, 170, 1818, 17773, 6662, 4303, 18276, 32644, 7245, 565, 10003, 6692, 16, 599, 20711, 31025, 2904, 37562, 27778, 4437, 356186, 11800, 47666, 22508, 1037, 986, 4230, 6322, 16131, 1706, 3861, 53146, 51421, 4231, 25785, 9186, 16369, 1282, 17532, 12065, 96583, 65426, 13341, 13628, 19070, 48803, 1097, 6671, 76532, 4068, 9055, 3113, 68223, 1851, 3602, 7788, 584, 3144, 34503, 13427, 21163, 978, 17926, 154, 3468, 41663, 30327, 16960, 41268, 34139, 3901, 10430, 945, 1897, 2868, 58537, 8220, 497, 5591, 848, 11879, 31186, 4148, 3879, 3458, 28792, 159, 6159, 5499, 12695, 4502, 12542, 78041, 53816, 157, 12099, 105, 13843, 26799, 16340, 192, 2261, 1394, 704, 39264, 267912, 1088, 13585, 209, 411, 21987, 15241, 6361, 2069, 12178, 13125, 30826, 47333, 86393, 244, 607, 24883, 56266, 34670, 10259, 44864, 46536, 4396, 12352, 1795, 26941, 270997, 164, 1257, 597, 13277, 14757, 419, 13663, 152716, 1552, 259, 27744, 266, 65366, 5029, 57, 10638, 10052, 7028, 30116, 600, 93962, 8349, 4376, 20967, 9227, 74447, 6346, 8245, 42342, 64743, 3778, 1646, 1728, 87, 56, 20986, 2932, 8196, 25887, 9965, 3242, 45, 1615, 19754, 120, 320, 28534, 336, 13157, 59268, 6443, 13093, 2706, 101, 3190, 48163, 36291, 500, 20271, 1841, 10426, 71285, 27853, 68661, 14146, 9041, 2012, 5000, 8445, 31926, 1089, 76833, 4818, 45359, 17586, 12890, 8413, 16666, 2307, 182, 33501, 12690, 11649, 9828, 9208, 289, 15828, 23321, 15356, 489, 17478, 31976, 4587, 27450, 67172, 1056, 61340, 33405, 20060, 4704, 25210, 35361, 32374, 4053, 67699, 21252, 125351, 3076, 9497, 13751, 1554, 230435, 1016, 685, 7781, 11465, 20932, 537, 1033, 152972, 5293, 92631, 134324, 515, 29810, 152, 298155, 3071, 3903, 83474, 5087, 17238, 121049, 23243, 18927, 1310, 64757, 7508, 11837, 41669, 3690, 6332, 8566, 57292, 17307, 75165, 100927, 92264, 13643, 2856, 70295, 12489, 11888, 11073, 13854, 14842, 13143, 26917, 89827, 8172, 46, 7301, 10696, 2211, 1570, 21201, 1629, 3433, 42373, 6929, 9450, 35892, 125657, 38870, 161, 44119, 26641, 2688, 35874, 34101, 5009, 4999, 1813, 127763, 1120, 7350, 14233, 40534, 29412, 118129, 1543, 5677, 818, 13288, 1328, 23362, 1203, 602, 25110, 55976, 14060, 14157, 36913, 26221, 13441, 1923, 5799, 484, 15307, 8678, 108, 4770, 1780, 40209, 126, 390, 18943, 216, 2022, 1256, 28150, 7764, 4680, 2582, 30587, 156411, 4057, 32779, 46369, 93927, 14530, 2729, 29163, 80603, 3496, 48501, 103726, 2031, 23466, 5137, 1984, 96394, 1126, 44421, 1939, 45780, 1879, 7272, 3555, 24337, 46281, 11968, 10247, 18565, 22323, 25717, 56141, 3616, 3558, 5328, 147609, 1329, 13812, 3712, 24745, 12268, 42991, 112998, 42888, 2722, 7948, 32480, 49874, 3270, 62601, 65306, 180, 56308, 4996, 915, 65749, 34012, 1102, 29806, 34225, 77634, 13322, 6233, 57010, 4609, 243, 7188, 50814, 700, 45421, 19790, 3540, 22558, 6104, 7654, 4156, 5432, 2090, 2741, 5238, 9716, 1810, 926, 36220, 19378, 1590, 1182, 10867, 2368, 42843, 845, 745, 24000, 17443, 4036, 189349, 627128, 93008, 725, 773, 3984, 13867, 14472, 12059, 6657, 2062, 1164, 4391, 3664, 367961, 288478, 4998, 2431, 4600, 2485, 1386, 914, 9574, 8137, 10630, 59847, 42322, 295, 52559, 10283, 7402, 1958, 13601, 141630, 757, 12069, 664, 1845, 8001, 1248, 5262, 2111, 2818, 9418, 27852, 2578, 144343, 276, 1778, 35694, 9159, 62, 32406, 255, 7983, 5898, 453, 6874, 7041, 12388, 10403, 612, 2898, 172, 98910, 1384, 100157, 38522, 174097, 4042, 13639, 4528, 7273, 2426, 275, 4315, 2080, 7883, 27562, 41309, 3796, 579, 10239, 12408, 4153, 24056, 3300, 3271, 4533, 116, 5804, 5839, 56838, 25017, 47, 9705, 52475, 14164, 49706, 2367, 147, 109989, 94, 5485, 43475, 134, 11399, 645, 74989, 5176, 9971, 6545, 33603, 9188, 58, 1442, 5606, 111602, 249353, 161022, 13008, 14838, 1894, 2073, 894, 10355, 351, 718, 29401, 11764, 6740, 60, 51440, 11010, 9738, 14394, 1309, 28266, 6461, 26118, 4742, 6453, 9439, 4928, 92156, 10393, 214, 13447, 1630, 1452, 2178, 5157, 741, 14266, 72, 1829, 2148, 1391, 15189, 1049, 183125, 3990, 1847, 14787, 2704, 9426, 10424, 293, 3518, 13084, 24001, 87149, 9220, 36303, 19321, 15031, 9300, 923, 300, 1213, 8738, 42498, 1378, 3173, 9973, 358, 5554, 3283, 29029, 5830, 12731, 2588, 2602, 26, 5349, 224, 595, 4520, 1279, 1359, 2667, 6945, 3334, 11230, 209674, 16431, 25451, 684, 474, 28348, 115, 241, 3533, 1187, 15548, 808, 1174, 11352, 193, 5224, 7328, 334, 205, 3194, 15932, 59884, 3474, 752, 5102, 1901, 13171, 984, 356, 181018, 53988, 14128, 22866, 16402, 55399, 3536, 312, 7038, 1206, 7311, 3227, 4349, 6867, 10397, 5774, 1167, 1034, 29020, 2247, 8655, 28332, 24222, 356425, 3853, 2746, 394, 7053, 6003, 4143, 33592, 175, 8301, 7552, 32044, 99, 4896, 8224, 48, 7196, 234, 14078, 14188, 3601, 6988, 101219, 780, 406, 6160, 2804, 50568, 1715096, 470, 9422, 36422, 161561, 39661, 34509, 20773, 28, 2986, 18391, 1653, 7672, 9547, 9675, 251, 793, 18072, 10157, 52489, 1434, 14906, 173, 350, 739, 2265, 22225, 559713, 2599, 14928, 22285, 12997, 5351, 39309, 4354, 57354, 12959, 2061, 22762, 3657, 13254, 22981, 10776, 1115, 47966, 145335, 183, 7499, 101087, 1083, 117823, 2521, 3994, 11074, 24444, 9595, 186, 18252, 513, 615, 72921, 86088, 4988, 1946, 6266, 3236, 7230, 12618, 4345, 5792, 30418, 9963, 3548, 17888, 6186, 34340, 2082, 1544, 4453, 25551, 529, 150077, 1806, 14077, 41304, 69290, 1623, 27079, 10392, 96, 24570, 333, 8126, 4952, 6511, 56165, 4327, 21187, 32733, 18783, 1362, 67891, 245221, 181, 1685, 27523, 546, 2256, 2569, 17792, 1985, 13371, 62022, 7641, 552, 23924, 33, 688, 2703, 7445, 9666, 252268, 231, 30279, 5684, 25675, 1620, 2132, 680, 53766, 146479, 10888, 11398, 11359, 2199, 2507, 42587, 3930, 29458, 10326, 23694, 6697, 19941, 5943, 4319, 10115, 32531, 16619, 34, 377, 124790, 526, 4167, 8845, 2234, 1104, 158323, 20217, 19478, 804, 3574, 15991, 1389, 39910, 30331, 3148, 52285, 2466, 338, 1409, 3974, 1738, 3940, 554, 3615, 4001, 1822, 14566, 6296, 395119, 21365, 3667, 7895, 2222, 24240, 426, 15160, 67811, 43, 20436, 5958, 6124, 5032, 5682, 507, 1846, 3005, 4926, 74032, 13538, 24901, 823, 63375, 75662, 21469, 1709, 744, 3880, 19168, 1817, 897, 5284, 57804, 18471, 6932, 695, 2790, 1436, 2427, 937612, 2187, 844, 23870, 1468, 9718, 24462, 12952, 119818, 6129, 51171, 24856, 39341, 5, 3782, 2684, 22051, 155, 4181, 1927, 14706, 49762, 679, 22959, 1881, 1763, 2149, 1008724, 8693, 302, 166, 18315, 81627, 26400, 9991, 1200, 2835, 123, 45647, 40427, 12223, 2482, 2293, 5454, 52, 9880, 4243, 4758, 659, 4155, 1867, 1380, 10094, 10270, 124248, 41810, 2177, 4308, 22701, 4718, 6217, 476, 22885, 2967, 4675, 237164, 23, 13872, 6232, 315, 30533, 809, 27722, 23899, 317, 22009, 38278, 5216, 6504, 192215, 155699, 52796, 802, 2901, 2865, 949, 2659, 5112, 125, 3889, 15926, 2469, 10594, 4645, 798, 2387, 142, 771, 179680, 25217, 88611, 653556, 11513, 1839, 4543, 69818, 2718, 2350, 1479, 27311, 47357, 71546, 31779, 3292, 230, 13689, 22385, 2033, 422, 12472, 23593, 62637, 2896, 20062, 17127, 88195, 5777, 5050, 3246, 76182, 78, 14377, 7605, 676, 237, 2151, 27, 819, 3604, 100547, 12765, 6698, 19991, 36541, 7887, 14114, 27407, 5916, 51796, 5971, 4501, 965, 10407, 135, 163839, 37044, 575, 1252, 294233, 1745, 6555, 34242, 96626, 1661, 27677, 2437, 92, 3584, 3965, 28876, 319, 36, 2979, 112111, 1996, 975, 3259, 62496, 15365, 28631, 150665, 8074, 11804, 1277, 360, 118110, 10272, 574, 30931, 1790, 943, 48457, 30044, 929, 6126, 1205, 26191, 16534, 828, 13241, 2498, 12972, 511, 139, 70433, 47455, 26551, 45705, 8958, 14492, 335, 3668, 416, 4893, 3287, 2509, 20237, 106, 25805, 50740, 236, 7913, 217, 21581, 404, 5108, 121, 1331, 58328, 6223, 2531, 16564, 4415, 24, 29438, 4509, 74, 197, 5490, 7807, 37566, 30535, 1779, 181778, 1090494, 711, 6356, 48658, 28369, 372, 831, 6100, 68411, 14809, 576, 232, 1581, 29290, 92920, 16451, 16800, 4731, 41874, 17765, 342647, 18036, 18534, 32133, 6406, 12555, 56035, 85581, 9050, 6884, 73844, 105153, 40313, 17353, 4879, 41932, 3810, 10277, 22420, 51916, 91463, 11408, 7908, 2288, 85, 1952, 14245, 427, 168826, 616, 28513, 11774, 287, 78375, 6408, 55312, 21653, 1367, 19965, 70173, 4126, 1802, 540904, 8534, 16779, 900, 17416, 14, 20985, 188968, 4266, 17729, 444, 10748, 1423, 47596, 7600, 3407, 2297, 908, 12770, 92848, 5016, 376859, 15065, 7991, 1134, 33580, 5253, 4553, 38958, 1128, 79, 9070, 5448, 25367, 23133, 502, 33789, 15591, 1710, 5915, 356194, 55176, 435, 1793, 5771, 3075, 1487, 94984, 3081, 11668, 53709, 59887, 540, 19218, 8424, 5308, 11534, 3349, 10177, 790, 18663, 2881, 91922, 165, 346443, 309, 14333, 1627, 62541, 1580, 1135, 87891, 17462, 7838, 38483, 8963, 21479, 1374, 832, 2407, 15194, 262, 5569, 1440, 4191, 103798, 466, 359, 4005, 253, 5415, 28797, 2236, 6942, 6224, 532, 10018, 7178, 11431, 97121, 352, 75, 1124, 391, 3938, 2066, 446, 4823, 667, 3194920, 10521, 8790, 778, 18393, 6859, 7528, 128, 737, 1000, 260, 1198, 8711, 8515, 2330, 11246, 2401, 478, 41197, 3656, 36003, 54469, 28960, 25653, 1192, 8519, 55292, 14051, 19711, 25099, 4921, 20501, 3538, 486, 967, 8715, 201957, 10254, 4923, 254, 11, 1351, 24333, 13174, 4708, 13714, 70, 11203, 473, 18983, 3343, 3062, 21, 49225, 609, 5504, 4102, 18239, 17457, 1715, 8640, 14254, 43850, 2558, 962, 3939, 30165, 5928, 2455, 972, 13982, 846, 54065, 184, 4211, 4420, 717, 4914, 103840, 2563, 47788, 826, 1023, 80663, 2294, 4657, 1608, 756037, 99051, 7612, 14937, 6324, 30489, 78129, 32595, 9514, 30442, 82899, 8717540, 432923, 788, 11087, 7869, 4317, 12900, 64483, 30121, 172086, 366692, 60813, 1449, 22745, 12070, 26709, 498, 153420, 2194, 10257, 63985, 3036, 3070, 71651, 233, 3658, 8120, 4615, 9616, 63, 16323, 5199, 1660, 12011, 7777, 36768, 8328, 12766, 1771, 11343, 3193, 30751, 3266, 1073, 4174, 296, 794, 2873, 10982, 1541, 109010, 10848, 25363, 7944, 64256, 55302, 15327, 1995, 85101, 27786, 10316, 13508, 1555, 2572, 7288, 6229, 68069, 567, 44228, 32341, 66, 5572, 2814, 656, 185162, 3987, 882, 29085, 15442, 20604, 11158, 59266, 61334, 2951, 468, 284, 27543, 4941, 410, 9700, 3018, 12046, 56161, 13452, 29094, 5778, 6022, 17302, 9676, 61322, 229, 7690, 1515, 429, 12272, 7401, 228, 43241, 51263, 51840, 45769, 1352, 2454, 1275, 56686, 35, 8138, 8119, 362562, 4830, 21053, 19948, 5190, 368, 6353, 10790, 30273, 1381, 62788, 7090, 11435, 16678, 716, 119618, 188, 3908, 46385, 23920, 65002, 2831, 1980, 33225, 41452, 30150, 1668, 28651, 5815, 28967, 110393, 1091, 1110, 15461, 10075, 668, 618, 6870, 1160, 634, 1989, 9025, 521940, 285, 32385, 1114, 75647, 35810, 17866, 20092, 12269, 3250, 2821, 211, 9847, 696, 187519, 3402, 18, 19342, 96810, 50604, 4275, 16617, 24589, 168731, 790308, 2135, 835, 1122, 1272, 11330, 462624, 35567, 14241, 13286, 1, 5763, 66513, 4826, 5098, 60494, 10192, 3947, 3481, 1781, 43190, 535, 11395, 29672, 20555, 20696, 3710, 4479, 3873, 1517, 47509, 2207, 157799, 30090, 16905, 499, 349, 17923, 11997, 4506, 1127, 53537, 76309, 4190, 3331, 23485, 117, 19253, 15018, 24039, 611, 19526, 24942, 32481, 3041, 434, 25946, 26601, 301221, 5384, 1506, 11304, 32084, 7924, 606, 501, 30903, 41849, 2592, 66392, 13517, 74369, 1285, 18876, 96027, 395, 1665, 223551, 56503, 6188, 8601, 21482, 71, 16464, 12123, 1260, 124164, 4241, 85696, 48382, 2347, 87082, 16862, 14771, 7093, 7603, 105144, 50720, 15118, 9656, 4859, 2163, 11261, 1641, 655, 55233, 727, 19118, 1173, 53440, 11494, 51018, 21323, 3409, 47760, 1892, 13046, 90015, 65631, 44218, 1711, 389240, 5263, 12956, 682, 39083, 431000, 34177, 1193, 18310, 2604, 17365, 5493, 15102, 52500, 10225, 8734, 5376, 19404, 7731, 150, 29333, 55837, 7286, 19382, 19275, 1759, 17453, 130765, 1998, 56831, 770, 103937, 99034, 555, 13649, 964515, 13497, 13007, 43042, 3413, 748, 12631, 92774, 41048, 26278, 6375, 1266, 896, 5054, 4775, 1942, 787, 40737, 44943, 25404, 6050, 52530, 489641, 8214, 17949, 5078, 97035, 1563, 26219, 111940, 29764, 9335, 1347, 15359, 25003, 5791, 1258, 9916, 362, 8153, 33203, 1639, 648, 27529, 63492, 242746, 927, 340, 25201, 183194, 4953, 8040, 18341, 4096, 95792, 9955, 12327, 861, 260099, 5722, 3175, 4171, 23874, 86085, 850, 12809, 9528, 909838, 24108, 10189, 64484, 10937, 36024, 11856, 106195, 34710, 22473, 148599, 807, 51031, 1673, 4829, 1011488, 11729, 38359, 32547, 3599, 3313, 18502, 83903, 29277, 4221, 40041, 24228, 21353, 57049, 2776731, 36005, 29754, 45969, 69905, 26692, 4486, 28236, 991, 25828, 7302, 143, 492, 32485, 56778, 27342, 17189, 2051, 28753, 28114, 4711, 163294, 66104, 79164, 43680, 34569, 1048, 8333, 5436, 19834, 21161, 114705, 35655, 86356, 15079, 4688, 1002, 4601, 1057, 1015, 4281, 925794, 5423, 17583, 1240, 115897, 550, 22393, 19471, 61095, 8084, 29623, 12541, 27571, 121057, 43787, 42277, 188942, 21962, 30216, 25368, 18463, 59154, 3362, 46272, 766, 49102, 38813, 89720, 3400, 40385, 4229, 2299, 11437, 19377, 72051, 3982, 141627, 70338, 5773, 18246, 110755, 7791, 47045, 36113, 9793, 30928, 12262, 28062, 44552, 44043, 39013, 2897, 42896, 16441, 13021, 5978, 1148, 44042, 3049, 139045, 59613, 85289, 24699, 26296, 92424, 7620, 1180, 34256, 207501, 4346, 10147, 20630, 66348, 36274, 788438, 277, 9172, 755426, 139042, 1320, 11417, 9082, 105233, 35804, 921, 1495, 7668, 3826, 366, 4175, 155217, 175649, 47179, 10071, 38308, 4247, 3390, 11079, 8946, 34470, 49778, 4289, 2441, 2085, 3887, 247, 313861, 21449, 10623, 186496, 7313, 1024, 40820, 1094, 1060, 3774, 10673, 208138, 19145, 90728, 2355, 805, 102437, 18351, 102900, 6333, 30081, 1987, 168802, 5537, 55594, 86884, 64240, 2442, 481827, 64317, 2481, 18292, 17813, 19590, 125191, 25779, 16918, 48504, 9467, 173165, 11528, 3757, 4738, 15481, 12186, 211237, 263533, 73030, 44673, 53927, 9417, 26849, 7741, 456, 47995, 3026, 3702597, 11815, 42008, 0, 325, 21146, 87235, 9829, 8529, 1535653, 2189, 48986, 94393, 9311, 34577, 121789, 17417, 7870, 1978, 6694, 169447, 10689, 90858, 45489, 144804, 5215, 15415, 7666, 18643, 54979, 13245, 1522, 51977, 21950, 54905, 13760, 16610, 870, 15329, 53203, 167702, 46707, 66414, 16685, 348155, 18176, 16638, 33001, 8926, 19627, 10031, 214605, 50120, 39896, 38439, 600652, 18951, 11155, 12887, 201395, 42306, 6119, 63797, 63178, 48771, 2858, 301048, 661, 387201, 283, 155223, 16413, 6720, 45209, 15044, 1955, 46780, 3111, 44842, 6457, 2471, 19921, 706812, 34041, 27472, 29462, 77072, 18732, 4297, 30169, 21165, 89680, 4380, 58870, 5587, 12824, 21153, 17205, 19936, 3912, 4233, 9044, 31556, 2257, 5571, 164231, 38547, 33835, 10719, 26508, 5306, 26753, 27676, 50204, 2733, 38187, 110624, 12787, 57824, 6155, 16046, 44541, 2784, 13910, 100, 12222, 45271, 50647, 277847, 15367, 3326, 10807, 172968, 555543, 131532, 24578, 26962, 27501, 43747, 610890, 6290, 7192, 1461, 12609, 4245, 30181, 19935, 3086, 2753, 30479, 12019, 49736, 61707, 69663, 17266, 10892, 75205, 2200, 39477, 5549, 1364102, 35701, 65128, 3383, 16390, 2360, 68243, 14943, 8512, 16597, 24734, 17000, 118754, 5492, 51475, 19653, 22711, 5446, 23125, 69691, 166454, 481, 470481, 69871, 36333, 32876, 4733, 7156, 295338, 84408, 7256, 124402, 26661, 337967, 517, 68284, 587614, 8359, 37394, 738462, 19503, 26220, 17398, 25935, 5084, 34738, 78373, 50587, 50025, 101154, 519, 288208, 26936, 8933, 24219, 4355, 57949, 15170, 26370, 10014, 43678, 114354, 57632, 47769, 9622, 31263, 10488, 4258, 33626, 65689, 398705, 60263, 52279, 18413, 93349, 150329, 44560, 11167, 72325, 58492, 523702, 6512, 8921, 107845, 114527, 22459, 75084, 39808, 1435, 53388, 78077, 106274, 8799, 23543, 27661, 25345, 161552, 18185, 34648, 74924, 175308, 22279, 84332, 88576, 20049, 29037, 11502, 14916, 7510, 11327, 62122, 178116, 141462, 212975, 6844, 35352, 1865, 20744, 170055, 13969, 28997, 8459, 29505, 45921, 68925, 284143, 19374, 6464, 279, 19245, 71615, 6205, 746, 68714, 56828, 56189, 7127, 212539, 133223, 37423, 22363, 42494, 47111, 17465, 1786, 17560, 17355, 5167, 27736, 5038, 2581, 35393, 54839, 166912, 21168, 87136, 16303, 79753, 7270, 603421, 41661, 29316, 21069, 7035, 605, 12596, 8405, 55955, 58566, 12264, 108561, 151, 1809, 9218, 41768, 4368, 19011, 4484, 276370, 11466, 1477, 43807, 63212, 6507, 737205, 5395, 75226, 29409, 48147, 8862, 24432, 32552, 111571, 9790, 26912, 193641, 46679, 454, 452429, 1100, 1799, 6719, 2002, 67108, 2707, 95282, 6926, 90571, 4932, 42506, 60119, 18909, 29223, 4918, 568, 194195, 47055, 82376, 3117, 14841, 69052, 5149, 113399, 35066, 79345, 24536, 50653, 2927, 60301, 8700, 14522, 397442, 164087, 39252, 121518, 1558, 10688, 44058, 52097, 22236, 136213, 226454, 113874, 18488, 53755, 34542, 15573, 13750, 57285, 6021, 26541, 29898, 12364, 28815, 33380, 69630, 88066, 15584, 27614, 64386, 11153, 30784, 399, 35414, 15223, 91616, 123497, 21382, 13747, 103045, 832799, 32940, 37023, 21395, 5470, 42211, 61256, 3554, 23908, 226, 40, 63538, 22406, 26928, 48128, 14410, 46475, 1020, 12636, 101950, 13859, 20497, 500546, 83654, 51583, 8302, 3245981, 47517, 52879, 154223, 29910, 7264, 109174, 43665, 26921, 324267, 2255, 6573, 1026, 907, 4300, 7827, 227928, 28402, 56477, 23696, 37748, 436, 21451, 13831, 19523, 223, 127072, 49449, 74750, 36282, 3799, 94072, 20156, 2776, 28121, 20747, 19177, 101278, 30105, 22312, 21397, 56150, 54209, 37345, 38847, 57063, 584131, 30070, 30728, 55284, 11766, 278081, 93754, 1994, 2121, 28486, 55694, 13576, 11893, 6016, 28544, 42391, 98418, 409, 133081, 9877, 94755, 18525, 98514, 781592, 851457, 15024, 40632, 53518, 235411, 1075, 97551, 144986, 126913, 39446, 342173, 24470, 564, 40440, 41814, 19794, 25412, 69310, 7739, 43145, 23250, 28597, 323827, 33509, 39335, 3881, 52069, 22202, 5170, 16641, 156969, 57766, 55643, 14789, 21426, 132337, 244545, 25606, 23037, 40077, 23312, 11477, 4151, 16056, 137277, 2695, 13676, 33536, 36864, 35138, 63368, 20015, 451440, 101955, 4436, 13080, 11705, 7979, 22161, 3589, 14434, 16116, 1530279, 36010, 168769, 102911, 110058, 121654, 17797, 72948, 8385, 322242, 59907, 84979, 223116, 805621, 221922, 15433, 1875, 86361, 44958, 16553, 49302, 92526, 117523, 7534, 17630, 13340, 127927, 88915, 10821, 25632, 39187, 19405, 10963, 32412, 40656, 29923, 97935, 23991, 2221, 31776, 44241, 26043, 33693, 4214, 18920, 89015, 40964, 10262, 15765, 21518, 450354, 28561, 852, 48009, 6663, 52811, 2117, 1577, 5221, 12357, 102653, 20466, 53690, 68132, 58773, 2278, 118021, 26982, 10639, 158886, 16578, 40606, 15872, 34546, 40971, 21699, 34315, 17330, 19612, 94598, 99787, 61845, 23797, 12772, 39080, 2238, 17032, 33035, 93270, 42644, 36635, 33837, 30026, 15466, 59141, 41769, 34817, 5455, 16525, 370215, 93842, 77656, 9582, 295687, 88581, 14690, 44530, 45630, 73857, 437384, 7428, 99980, 39865, 18481, 22761, 61815, 11019, 62677, 93986, 3696, 75468, 20899, 41919, 1619, 16823, 30634, 6711, 7347, 55615, 6009, 7365, 22668, 26758, 22210, 138260, 137150, 63859, 937604, 15572, 14912, 493611, 6927, 26598, 458308, 296824, 106663, 61959, 250, 4747, 92211, 118659, 61239, 103405, 50920, 15522, 21826, 32074, 18609, 75003, 754393, 2109, 4971, 17963, 533259, 385601, 14988, 88041, 16072, 51319, 40040, 155284, 20111, 24291, 4760, 269707, 46148, 1017, 7379, 1974, 25840, 91620, 189970, 1197, 9000, 8723, 209985, 189111, 52375, 35840, 21590, 2320, 16981, 32097, 33998, 20856, 16300, 61765, 47209, 64362, 3498, 27052, 8823, 43485, 62700, 96917, 58332, 130816, 20301, 981088, 11660, 14170, 168933, 30769, 105522, 18063, 48067, 39829, 290802, 49069, 46351, 1008297, 94142, 32813, 41564, 18321, 1267047, 37571, 73338, 55311, 54414, 1234, 11317, 77751, 64670, 4878, 14501, 10202, 594906, 19856, 87914, 2978, 85109, 52456, 105755, 139106, 27587, 41838, 115138, 38906, 40307, 148873, 3150, 62680, 87817, 117035, 39773, 48314, 50830, 85506, 15210, 9452, 183500, 4897, 24833, 104082, 58178, 26465, 27679, 9139, 45977, 340411, 2440, 318, 66486, 30135, 11849, 21734, 32450, 35911, 833, 54244, 47401, 30734, 32581, 76995, 64973, 97607, 28808, 11057, 63235, 55062, 41298, 61653, 9353, 12051, 10076, 202429, 42704, 491, 663, 164342, 1174520, 25482, 743, 17212, 554028, 222383, 234502, 42676, 95035, 99470, 2772, 3299, 35501, 328865, 57987, 158603, 31191, 125391, 17069, 14568, 32946, 9782, 966269, 121866, 79557, 11715, 70732, 19037, 11728, 24199, 5473, 1417, 17232, 8339, 43367, 13961, 2036, 497589, 75153, 12114, 7297, 54262, 33636, 32894, 9833, 22478, 5559, 102682, 104005, 100259, 17885, 899308, 12240, 81833, 34080, 20205, 45974, 18726, 2794, 1563695, 15025, 8296, 25237, 30303, 4009, 55345, 56365, 11604, 1943, 192793, 104604, 37370, 109012, 109674, 28728, 544401, 20200, 654953, 2447, 28163, 27869, 13222, 10085, 14614, 179726, 12714, 102936, 178240, 697, 34839, 51566, 69019, 47117, 122643, 58315, 62115, 223479, 11602, 29967, 985, 1098, 47146, 2620829, 80616, 14334, 11647, 59172, 44455, 9079, 65178, 12546, 26155, 31880, 90139, 49447, 21461, 34067, 76937, 47593, 121156, 83285, 113186, 25256, 22530, 15920, 53784, 1250263, 28508, 49710, 17031, 45242, 11462, 55561, 17511, 3854, 4259, 2124, 471, 3937, 657, 2081, 59393, 34656, 109569, 1873, 929290, 1508341, 123702, 30790, 294328, 8287, 2878, 9289, 9385, 44547, 34095, 5128, 56659, 26609, 120734, 82547, 45707, 57356, 299101, 8411, 114186, 888, 16365, 1091523, 42050, 183389, 34048, 177804, 61295, 502158, 83466, 191430, 685057, 3756, 17132, 100389, 58617, 10001, 242408, 93234, 75162, 114257, 187980, 142493, 467162, 11460, 2039, 29799, 212, 1796, 128049, 16601, 14419, 84702, 30881, 1505348, 5663, 197348, 31625, 37225, 67653, 77069, 95052, 341, 17943, 913454, 44198, 22789, 110029, 5166085, 14702, 132501, 119075, 39030, 64640, 1968, 70419, 755, 24782, 29445, 605292, 21230, 24125, 1316, 227523, 19509, 45570, 1750, 605477, 418060, 18435, 50251, 100082, 100281, 2360039, 439, 24552, 23104, 800820, 1481, 46156, 97269, 24349, 324, 152440, 72273, 4403, 10299, 33284, 8691, 84006, 65684, 3444, 41745, 10556, 26698, 3130, 7572, 13584, 651, 149230, 55687, 5822, 92421, 2664, 11676, 50508, 96947, 5111, 32083, 58690, 87814, 31670, 72552, 22900, 63912, 26093, 283042, 46224, 23922, 509832, 63856, 37165, 31669, 28903, 44920, 63958, 23828, 8324, 28750, 26808, 118711, 7591, 142395, 84508, 31653, 175973, 24090, 35372, 13964, 72428, 1887, 43989, 79919, 106562, 8494, 50523, 193450, 13249, 143488, 44308, 11902, 164105, 28823, 57139, 38047, 16387, 31889, 9478, 60965, 39671, 61624, 161997, 20877, 14236, 3795, 107991, 17383, 28828, 24197, 44321, 16205, 9489, 729, 12488, 182160, 46562, 107648, 62852, 25073, 27533, 227087, 293227, 553594, 20377, 19363, 17772, 3674, 167744, 69872, 59247, 55502, 124770, 18211, 80288, 18936, 243692, 459276, 6228, 30821, 26781, 12797, 42356, 31982, 484933, 370993, 281220, 2716, 344, 1761, 181743, 67398, 21543, 72875, 1371, 46559, 53111, 234359, 100714, 25969, 53106, 39783, 103342, 75773, 6615, 3994580, 30541, 30199, 45816, 11775, 152069, 18765, 8372, 42388, 33033, 39399, 11385, 45685, 263906, 54618, 58006, 40190, 146317, 22574, 15168, 57258, 43360, 41534, 214647, 15939, 47196, 28122, 111041, 278357, 6393, 16208, 68585, 902, 89880, 329362, 23714, 22430, 97993, 1014, 40343, 95698, 162602, 23515, 12601, 33458, 140403, 15747, 31182, 59302, 44325, 573989, 1498, 51755, 9352, 18536, 859148, 16616, 206852, 159198, 113608, 60314, 47084, 220275, 32748, 418, 63156, 14731, 42135, 2112, 291, 47329, 55275, 15457, 37907, 86131, 70575, 33124, 23185, 100365, 26314, 36420, 23324, 38384, 127556, 336168, 7648, 216481, 50142, 19634, 41237, 52786, 159400, 351581, 120249, 59276, 116739, 44461, 5407, 55879, 35530, 96764, 8407, 299, 109321, 101347, 260044, 114189, 76557, 57696, 15524, 50001, 114609, 74739, 20207, 98942, 85128, 6806, 18661, 64020, 11323, 32836, 45728, 2034, 35646, 29235, 612342, 526120, 30179, 5747, 218579, 194, 14941, 7910, 77, 721, 144010, 6947, 127370, 4490, 77893, 2076, 35596, 84574, 26303, 47269, 334015, 82117, 61158, 71098, 577054, 17504, 26886, 215971, 7536, 129473, 61982, 210255, 32663, 6879, 47365, 544509, 15130, 3449, 34339, 1175752, 198275, 904159, 39975, 181943, 20227, 36997, 3214, 198912, 47568, 61339, 23676, 1010, 132659, 46710, 26775, 57867, 621059, 142476, 13495, 13595, 144630, 228027, 50817, 57226, 9500, 22963, 372889, 40428, 163066, 266878, 25557, 21751, 30336, 54879, 157030, 1465, 26218, 15425, 121483, 86824, 246762, 36960, 9770, 443244, 17666, 69468, 124352, 852282, 31622, 39179, 34277, 323556, 444935, 90913, 6661, 106375, 115907, 253147, 60900, 23431, 208022, 68417, 81051, 28666, 21067, 1612, 87178, 53653, 3485, 81406, 37343, 59559, 11254, 34740, 66510, 33876, 64064, 4222, 173357, 82088, 44887, 108166, 3841, 620, 38518, 30317, 81, 13236, 192016, 56860, 30131, 227449, 5227, 12769, 15566, 35577, 50886, 20495, 8604, 747375, 109862, 27793, 172386, 259999, 47992, 27254, 24303, 1319, 148779, 63982, 9711, 493082, 2174, 36665, 2596566, 29210, 33349, 34742, 36453, 458674, 208792, 50166, 57185, 116383, 372702, 94929, 37515, 7305, 47729, 27973, 14043, 7802, 126362, 263193, 131518, 51327, 141879, 75547, 57911, 78331, 1061, 113869, 54284, 77532, 3771, 1152927, 5053, 98348, 64664, 86610, 1579, 316450, 37354, 10573, 583930, 48806, 101153, 114431, 121659, 558371, 11020, 18507, 41238, 776406, 30020, 33467, 120559, 42255, 45122, 99587, 141368, 2068, 50388, 121670, 2396, 7475, 56125, 11150, 377822, 71142, 63387, 27078, 1048041, 25220, 32478, 181637, 1679, 82541, 100585, 53966, 51428, 5369, 13620, 1293, 39480, 3662, 26957, 58814, 228674, 1166, 47316, 16741, 3961, 83315, 81536, 93543, 77384, 76860, 22779, 51976, 63877, 4111, 25906, 31078, 23952, 8907, 14947, 39221, 107721, 49286, 164332, 29064, 54148, 161364, 31271, 355368, 18621, 76221, 930218, 80711, 113165, 106842, 67219, 224665, 27664, 22609, 12955, 55329, 201966, 1637638, 56366, 14984, 59368, 32465, 165355, 145198, 46604, 67664, 9761, 8064, 54786, 160502, 32968, 143374, 2161, 13544, 14894, 53921, 27591, 60109, 48368, 116934, 180672, 120036, 14283, 2284, 14856, 44379, 7331, 69913, 85146, 207460, 28449, 12591, 1044, 112802, 85081, 33617, 10210, 158, 369261, 31497, 105683, 76770, 34881, 18828, 66521, 1846852, 10932, 48442, 61821, 675258, 4462, 13833, 40768, 58669, 31799, 74758, 33040, 17935, 65135, 40316, 104107, 578416, 11570, 178815, 34533, 37739, 25330, 116974, 52354, 46126, 20854, 137, 38028, 1931, 57162, 71506, 95719, 71041, 1952508, 45165, 234594, 26424, 27787, 29547, 4891, 89728, 1238, 16909, 56094, 41523, 804023, 1128372, 3132, 65177, 5708, 357394, 10562, 15034, 81992, 20811, 30741, 65895, 85769, 111358, 93378, 29019, 315612, 53565, 167303, 29021, 9504, 79153, 54933, 64458, 5159, 229082, 11731, 40562, 39654, 16817, 10120, 32008, 87860, 50438, 1679242, 92583, 176, 26257, 33845, 90903, 41652, 57294, 59061, 53920, 44433, 26748, 113419, 33304, 271077, 1889, 37396, 23706, 15592, 611372, 25380, 100530, 60596, 17282, 11409, 302398, 61567, 218337, 11434, 506, 40464, 446581, 59735, 28120, 53040, 235, 56645, 20234, 16664, 22960, 54061, 568253, 1113, 84680, 11450, 117937, 11559, 54391, 74370, 189824, 143661, 70184, 108012, 8900, 7166, 29798, 78812, 69003, 37138, 1789294, 17201, 169405, 691401, 90352, 3773, 18057, 107995, 119109, 25450, 82015, 65717, 14438, 144554, 34060, 75269, 83020, 16200, 623803, 167401, 553716, 187479, 333673, 1057549, 14674, 32459, 34153, 32059, 138854, 1186, 16744, 32092, 24544, 12061, 91191, 1040090, 324261, 45800, 52579, 176923, 74239, 248460, 113438, 182317, 63339, 50472, 2439, 12347, 22056, 66135, 21760, 222270, 269434, 17155, 6772, 283084, 26443, 55984, 58572, 77088, 271403, 10950, 11492, 604, 57272, 3107767, 50619, 164909, 242368, 1161, 41911, 86061, 734, 18517, 63853, 436595, 86643, 6179, 35265, 522083, 28082, 3993, 75489, 41214, 30565, 57134, 56106, 11078, 233155, 2510, 37284, 3486, 71361, 41520, 65942, 50510, 528239, 23034, 1144, 9873, 347369, 18397, 31355, 5217, 76746, 14115, 132036, 29975, 909748, 90694, 114801, 73993, 26474, 24413, 29627, 17915, 30786, 191835, 377675, 84785, 61987, 54455, 89103, 55776, 15184, 96648, 194552, 86216, 121159, 44534, 198589, 1697, 23524, 17061, 56701, 95991, 336896, 136392, 87827, 84303, 3705, 16052, 35046, 527538, 7627, 100633, 126714, 77122, 4957, 36257, 41143, 13818, 7024, 11719, 25340, 68372, 28859, 23401, 177130, 51429, 59344, 21498, 26190, 30095, 36032, 76266, 147123, 81042, 3420, 33990, 1036, 38632, 1384906, 37350, 191304, 33474, 35653, 78477, 66210, 53029, 8393, 50148, 365544, 3293, 257, 12895, 57886, 26550, 27638, 29930, 5790, 6943, 3801, 4358, 958947, 33077, 645918, 45701, 366947, 26741, 1018582, 154876, 74873, 68320, 20635, 31336, 2358, 11083, 65469, 15126, 64854, 106106, 61396, 3278, 208482, 238867, 10604, 145056, 120169, 2958728, 11252, 29000, 63109, 160906, 132788, 92666, 93761, 58271, 55543, 209025, 18389, 5752, 749, 35045, 43318, 149601, 294356, 115893, 635032, 50010, 54566, 70379, 95223, 25753, 55139, 8505, 97019, 41075, 30544, 60896, 756, 357918, 34704, 49060, 63521, 27848, 52834, 85680, 19660, 79242, 920, 134673, 55332, 61811, 41219, 13490, 141132, 150066, 31020, 239456, 115225, 151389, 362643, 25534, 13603, 17320, 16156, 26091, 210210, 141484, 26211, 1438, 60946, 46577, 67831, 61818, 100338, 81266, 94269, 46208, 117982, 19725, 87033, 82768, 102425, 28125, 46497, 10599, 175729, 13101, 152419, 43325, 46307, 17026, 15970, 35281, 21439, 26058, 186928, 6244, 156961, 133321, 34791, 731565, 44558, 152378, 20255, 10771, 192064, 62219, 35028, 24908, 246481, 40812, 49388, 1038356, 49612, 28227, 34689, 1614512, 65188, 5421, 82037, 165320, 432094, 25049, 22792, 25474, 28280, 134871, 152896, 380, 116906, 11971, 26862, 13846, 121947, 40189, 64121, 549717, 212882, 70378, 15311, 39749, 3171, 132676, 85614, 30313, 33397, 44355, 84266, 705, 22281, 274685, 94972, 50307, 53902, 348, 44682, 32254, 53716, 54622, 734762, 45034, 62731, 25701, 63743, 48500, 79676, 28799, 72805, 13164, 51937, 35211, 17833, 160348, 964, 71483, 1094213, 142448, 93848, 139340, 86201, 248641, 92451, 17744, 138438, 43284, 8559, 200031, 5973, 111327, 89619, 46349, 51112, 59819, 1837, 62472, 115525, 186761, 16317, 60588, 36409, 167532, 201574, 334310, 229078, 126596, 759, 19356, 111545, 128488, 394097, 162414, 65056, 395192, 424649, 25655, 213998, 53258, 41945, 9018, 93556, 9061, 185785, 21292, 28755, 73515, 500807, 95625, 20018, 14464, 10653, 23299, 4916, 98151, 67966, 91017, 110270, 37040, 156468, 146618, 1633, 1210, 69873, 130820, 36664, 34588, 78184, 151975, 98354, 980, 7231, 720235, 84120, 305040, 10062, 674985, 303597, 40678, 38305, 59829, 108682, 67209, 136132, 84470, 27133, 60365, 1240712, 770169, 693193, 112593, 276490, 81540, 8029, 115803, 166424, 98136, 1539, 13571, 4046, 3617, 24697, 42937, 160759, 38155, 52903, 56054, 163952, 75272, 295174, 196123, 12519, 61385, 7691, 70967, 25815, 99227, 31124, 28602, 160791, 4754, 57177, 218371, 12544, 344445, 67994, 10197, 413855, 168377, 503945, 51499, 124097, 301841, 75597, 343660, 15326, 463, 38967, 3389687, 49576, 330, 11688, 165202, 17672, 44799, 4612, 1214, 383094, 295147, 240934, 35387, 512046, 21664, 354366, 43987, 536371, 113514, 92457, 74888, 91086, 3928, 156592, 31395, 14785, 99446, 29422, 30284, 47719, 623137, 16532, 16880, 82268, 91894, 75221, 74865, 1131015, 681219, 71538, 66113, 110312, 68507, 73175, 143205, 121887, 1163, 40430, 44852, 25509, 153675, 130859, 330742, 64637, 594243, 56519, 69538, 319817, 14712, 164478, 41689, 69877, 1025649, 124929, 13732, 64207, 37636, 72514, 76728, 192422, 137728, 61633, 3126, 158865, 258312, 54943, 2300, 125153, 1388, 607618, 72590, 349824, 6812, 20766, 7173, 297997, 150040, 5315, 62760, 46188, 36285, 36242, 22166, 699423, 973520, 168698, 97300, 60416, 26938, 155995, 28190, 33348, 33677, 162531, 189678, 51459, 53129, 2301, 2940, 46527, 104308, 67469, 141589, 53692, 32494, 53363, 88875, 21480, 46201, 115969, 16055, 331969, 13865, 13010, 52037, 251522, 15226, 19701, 31158, 51648, 224830, 156175, 218069, 8658, 206416, 52995, 7371, 51398, 20838, 146302, 279262, 5845, 408558, 370592, 9636, 697917, 3074, 2677, 403068, 44213, 918, 75315, 75303, 40291, 65508, 16753, 101372, 94423, 122909, 136855, 52024, 95592, 44022, 1220645, 47748, 251976, 49764, 55860, 41045, 23578, 75108, 28167, 18694, 23830, 68342, 1956199, 27566, 7138, 148739, 133018, 1237047, 551874, 60394, 53441, 138636, 42308, 71183, 63539, 497695, 54390, 904199, 32028, 21030, 35573, 612931, 479862, 180637, 22071, 19734, 32319, 22902, 226670, 373, 341594, 5909, 67945, 856936, 79116, 3061197, 8382, 121600, 88141, 48216, 241863, 313378, 191477, 48352, 40298, 464558, 28511, 5325, 24259, 30287, 28488, 41688, 135889, 34518, 92978, 5949, 171540, 7561, 408, 45539, 400, 41108, 33732, 25770, 68271, 154105, 201252, 96977, 390486, 33050, 18919, 182602, 164634, 95974, 175964, 261959, 95455, 150321, 67596, 128333, 16182, 160925, 164215, 90308, 46107, 80440, 748153, 43359, 58099, 159797, 445754, 9256, 1011205, 108619, 1206488, 82372, 360343, 566434, 149722, 95806, 10997, 196310, 635677, 73528, 40982, 53660, 22472, 29587, 63550, 4889, 2050, 144662, 248819, 10460, 348500, 97974, 477157, 550907, 58442, 7013, 89005, 59377, 102242, 395148, 79876, 66069, 59931, 64733, 1182917, 94823, 88380, 151418, 511973, 41475, 19581, 21680, 54252, 371, 84846, 187897, 185105, 109545, 4570, 58252, 490, 107007, 103477, 224934, 11586, 119095, 23031, 25654, 183934, 58720, 799631, 35928, 273359, 17631, 275146, 232664, 23207, 1609182, 239383, 20374, 53153, 31760, 268178, 127097, 116503, 105049, 48088, 1541463, 8481, 43725, 201982, 2353, 254673, 80786, 52818, 3189, 41299, 691534, 106475, 70167, 86387, 4187, 570202, 285256, 114584, 258711, 959, 343348, 59682, 1133, 13511, 176957, 90163, 143806, 35258, 31437, 4188, 3327, 54700, 59490, 122976, 96450, 18539, 1067825, 16566, 62050, 6095, 3722, 7171, 64449, 19730, 38980, 956, 441319, 1265, 17068, 7861, 581720, 64397, 25466, 142744, 118619, 36265, 36093, 202802, 150020, 264616, 497743, 381404, 152459, 1876, 24917, 195786, 176692, 123381, 6805, 1158, 389968, 93887, 2817, 37990, 278314, 75723, 75897, 77390, 160876, 139732, 68555, 21722, 2185, 111529, 184229, 946, 3021215, 31195, 90588, 38804, 70079, 81748, 327936, 249669, 420, 37245, 30436, 321106, 8622, 91752, 261102, 240, 17851, 1058, 40600, 99293, 143848, 3957, 310651, 108627, 941, 137621, 283599, 946104, 89955, 530, 98030, 62167, 5501, 85091, 1055430, 296423, 158439, 589096, 145464, 254510, 65946, 22677, 44227, 27816, 42499, 430871, 26594, 32711, 88858, 66879, 46362, 12119, 166037, 9649, 115485, 317735, 91735, 144056, 29025, 13486, 60366, 99217, 165682, 10312, 91024, 204583, 226596, 103901, 77136, 13947, 70017, 12387, 48563, 299534, 10141, 37006, 2218966, 889618, 476012, 20914, 106459, 2712, 7680, 37268, 19604, 206343, 785420, 92491, 126733, 136626, 335987, 25755, 728526, 194367, 48993, 1507363, 383427, 92646, 157010, 209989, 236690, 155254, 102181, 43164, 127703, 79860, 33894, 22157, 73980, 110439, 39971, 153027, 21651, 28327, 60720, 18944, 76786, 416294, 55505, 101815, 110208, 63329, 56939, 37420, 30991, 4802, 127987, 251537, 220207, 1082414, 133303, 699, 40712, 122801, 89872, 74576, 55813, 100490, 22245, 27064, 62734, 115374, 34231, 377160, 421923, 180699, 1406387, 233019, 119856, 119997, 2770, 1002054, 4637, 92623, 1096, 20369, 102688, 2711, 48724, 436784, 297, 235372, 49758, 17112, 10836, 40001, 1241823, 214890, 207852, 304338, 184200, 29150, 42172, 2728259, 8771, 136584, 238201, 282521, 119810, 102158, 32375, 138714, 847255, 79909, 82132, 11056, 246889, 166933, 24968, 88958, 301, 84572, 11953, 44709, 17921, 89841, 73070, 213, 197901, 60591, 10113168, 322, 91575, 354370, 101949, 159810, 68495, 138004, 311709, 38301, 77633, 492196, 1145, 126638, 11095, 212551, 17294, 435135, 85242, 139790, 205281, 83629, 7477, 5151, 345044, 62944, 164246, 191651, 15851, 118942, 274265, 6775, 71443, 129240, 423379, 104771, 184456, 25299, 259412, 75353, 525156, 427197, 110585, 94185, 22491, 114493, 190577, 31045, 65221, 69724, 56291, 16318, 25197, 403420, 6398, 452271, 419854, 58832, 12623, 299690, 1550, 82966, 8625, 1176, 606063, 230424, 1379466, 695835, 46742, 20390, 332218, 73088, 577496, 83139, 641377, 78512, 256601, 338486, 7479, 95371, 4984, 195, 151165, 106517, 195041, 488219, 98747, 145970, 308222, 15654, 52290, 37449, 1725, 5624, 4365, 66439, 70977, 59067, 66291, 13423, 148413, 24787, 2836, 321653, 9979, 212384, 71255, 641014, 18181, 110825, 166620, 1509237, 42197, 6054, 18422, 42897, 83959, 24818, 126243, 44867, 102131, 117466, 5313, 85201, 70039, 652, 99527, 43943, 145997, 53392, 112651, 498881, 202602, 287185, 150700, 128683, 130264, 2808, 65677, 102024, 98823, 3013, 207787, 26820, 424101, 171582, 1086821, 55936, 197788, 45212, 38501, 43998, 55542, 35325, 137071, 44306, 514619, 8276, 22284, 93397, 52626, 37551, 32798, 5806, 482483, 10658, 2550, 21635, 105713, 382455, 1599, 759315, 89249, 52469, 3906, 770161, 291237, 61176, 1011257, 1217, 3062401, 466287, 3356, 83579, 15355, 19081, 55708, 81964, 54388, 114279, 51567, 78505, 92303, 157930, 727518, 47715, 83571, 8986, 343851, 101192, 63762, 1799720, 4063, 19494, 19980, 203361, 79907, 167251, 336184, 59730, 582565, 334734, 1131882, 61542, 7448, 177036, 26899, 132216, 9030, 264547, 153254, 682871, 1149305, 359176, 20568, 68352, 229643, 81699, 81954, 29718, 69279, 253949, 375652, 94345, 116826, 92584, 62644, 5994, 194213, 763, 686133, 77377, 152829, 56483, 549, 2444, 257818, 29252, 67901, 141464, 76914, 341851, 16394, 689979, 78582, 6185, 406808, 1228, 248, 7632, 12005, 579871, 3448, 689, 78509, 33127, 98641, 5728, 25604, 45506, 242962, 437623, 1575, 81782, 127112, 427608, 2005, 237958, 86705, 94600, 65730, 47054, 327, 954110, 1153388, 15685, 75923, 126851, 551680, 21299, 1559, 311624, 308589, 10540, 215, 9209, 8115, 229788, 1033017, 32297, 36656, 150210, 84424, 40917, 3083, 51141, 37466, 132032, 550053, 376064, 37949, 3585, 137838, 15064, 10212, 1687, 311172, 5494, 55001, 31189, 2555, 111102, 434368, 2202, 171997, 132590, 88979, 152806, 3553, 201099, 10372, 393402, 51330, 606548, 58642, 52459, 442321, 1407522, 9974, 217341, 68313, 42188, 21374, 156472, 53351, 23438, 17979, 5277, 27757, 66515, 92991, 11420, 25823, 24637, 4662, 4752, 135061, 153927, 9257, 42943, 49786, 23011, 114574, 20146, 105099, 137027, 490367, 4886, 401874, 113219, 660, 57117, 92101, 86369, 264541, 195984, 55580, 19716, 11981, 229934, 28648, 524949, 3385, 113873, 1272280, 106862, 241510, 761, 266839, 349278, 16159, 28325, 1220133, 341474, 2616, 112227, 641868, 32559, 56513, 4554, 236266, 11855, 527858, 107170, 138730, 28550, 107310, 298309, 301042, 120190, 1077565, 10310, 20283, 14949, 27307, 11080, 18647, 244614, 263040, 23164, 85440, 471565, 878018, 22107, 2017, 6105, 17092, 13158, 126948, 13533, 20837, 3123, 11914, 509, 316974, 133441, 4022, 90979, 11370, 218981, 37858, 466037, 1007222, 56212, 376685, 101101, 5080, 452649, 15930, 36042, 1671, 82483, 43740, 719, 23209, 345, 93865, 998, 5522, 25914, 316264, 3373, 2379, 145263, 6151, 9453, 52988, 6423, 783616, 33828, 208393, 3068, 228555, 240651, 419750, 46316, 8908, 376054, 17422, 6258, 141797, 103129, 143611, 34327, 1472132, 15504, 518124, 123270, 49702, 1139650, 936, 16774, 6843, 67308, 6472, 11040, 5748, 177807, 6903, 308553, 9502, 14819, 30370, 398562, 6827, 8305, 9905, 7096, 15360, 4540, 409318, 11987, 3247, 102938, 192902, 326463, 7407, 3478, 6981, 1025762, 1323, 138055, 383117, 13623, 1859, 6197, 80413, 35160, 5385, 1605181, 6738, 4101, 217697, 21913, 10789, 834391, 758655, 316074, 19146, 294193, 17607, 564461, 4205, 381594, 474100, 179615, 75024, 1439, 37020, 815, 762, 253236, 9507, 75831, 162824, 38856, 16890, 13526, 173051, 18681, 27748, 11548, 169696, 35783, 73672, 6045, 1123, 7069, 32121, 265847, 7524, 11665, 3282, 97859, 5565, 46267, 669, 4856, 4943, 194566, 6076, 7216, 1676, 193970, 13369, 2570, 5497, 1009214, 20948, 28160, 8383, 217248, 5298, 14037, 10844, 77579, 5957, 988, 8170, 423, 1070, 175202, 11134, 99549, 989, 222994, 8476, 6051, 18651, 2653, 62606, 1172, 3946, 2381, 9395, 9073, 9819, 5503, 2645, 1039, 382, 617, 1982, 997, 891, 2003, 1677, 758, 638, 3257, 1719, 671, 5388, 488, 1377, 13553, 5840, 2384, 1109]

Observations:¶

1. genre column- empty list¶

In [30]:
# There is one [] empty value which has been repeated multiple times and it's better to get rid of them.

books_data = books_data[books_data['genre'] != "[]"]

2. title and description column- Non-English languages¶

In [31]:
# As we can observe from unique values, there are some books which are not in English. We have to analyze this more.

Detecting languages of each book title¶

In [32]:
# Function to detect language of each book description

def detect_language(description):
    try:
        lang = detect(description)
        return lang
    except:
        return 'Unknown'
In [33]:
# Adding new col which detects language of each description

books_data['language'] = books_data['description'].apply(detect_language)
In [34]:
books_data.head(2)
Out[34]:
Unnamed: 0 book_id image_url title description format publication_info authorlink author num_pages genre num_ratings num_reviews average_rating rating_distribution language
0 0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince It is the middle of the summer, but there is a... ['652 pages, Paperback'] ['First published July 16, 2005'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['652'] ['Fantasy', 'Young Adult', 'Fiction', 'Magic',... 3292516 58398 4.58 {'5': '2,244,154', '4': '775,028', '3': '219,8... en
1 1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix Harry Potter is about to start his fifth year ... ['912 pages, Paperback'] ['First published June 21, 2003'] https://www.goodreads.com/author/show/1077326.... J.K. Rowling ['912'] ['Young Adult', 'Fiction', 'Magic', 'Childrens... 3401709 64300 4.50 {'5': '2,178,760', '4': '856,178', '3': '293,2... en
In [35]:
# Most of the values are in English

books_data['language'].value_counts()
Out[35]:
en         14411
es           125
ar           107
fr            94
de            71
id            37
pt            36
it            30
el            30
nl            24
pl            23
tr            16
uk            14
sv            13
af            12
no            11
ro            10
et            10
ru            10
fa             9
hr             7
ja             6
bg             5
da             4
hu             4
ta             4
fi             3
ca             3
tl             2
ml             2
sl             2
lt             2
zh-cn          2
sw             1
ur             1
Unknown        1
he             1
vi             1
ko             1
bn             1
Name: language, dtype: int64
In [36]:
# In order to build efficient and consistent recommendation system, it is better to get rid of rows with Non-English 
# Book Description.

books_data = books_data[books_data['language'] == 'en']

Shape of final dataset¶

In [37]:
shape = books_data.shape
print(f'There are {shape[0]} rows and {shape[1]} columns in the dataset')
There are 14411 rows and 16 columns in the dataset

Feature selection¶

In [38]:
df = books_data[["book_id", "image_url", "title", "description", "author", "genre", "num_ratings", "average_rating"]]
In [39]:
df.head()
Out[39]:
book_id image_url title description author genre num_ratings average_rating
0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince It is the middle of the summer, but there is a... J.K. Rowling ['Fantasy', 'Young Adult', 'Fiction', 'Magic',... 3292516 4.58
1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix Harry Potter is about to start his fifth year ... J.K. Rowling ['Young Adult', 'Fiction', 'Magic', 'Childrens... 3401709 4.50
2 3 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Sorcerer's Stone Harry Potter has no idea how famous he is. Tha... J.K. Rowling ['Fantasy', 'Fiction', 'Young Adult', 'Magic',... 10116247 4.47
3 5 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Prisoner of Azkaban Harry Potter, along with his best friends, Ron... J.K. Rowling ['Fantasy', 'Fiction', 'Young Adult', 'Magic',... 4215031 4.58
4 6 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Goblet of Fire It is the summer holidays and soon Harry Potte... J.K. Rowling ['Fantasy', 'Young Adult', 'Fiction', 'Magic',... 3718209 4.57

Content Based Filtering

Content-based filtering is a recommendation technique that suggests items (e.g., books, movies, products) to a user based on the similarity between the content or characteristics of the items and the user's preferences or past interactions.

In the context of book recommendations, content-based filtering analyzes the features or attributes of the books, such as genre, author, description, and other metadata, to identify books that are similar to the ones the user has previously liked or interacted with.

In this project, I am going to build Content-based recommendation system based on 3 Columns: description, genre and author.

In [40]:
df.head(2)
Out[40]:
book_id image_url title description author genre num_ratings average_rating
0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince It is the middle of the summer, but there is a... J.K. Rowling ['Fantasy', 'Young Adult', 'Fiction', 'Magic',... 3292516 4.58
1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix Harry Potter is about to start his fifth year ... J.K. Rowling ['Young Adult', 'Fiction', 'Magic', 'Childrens... 3401709 4.50

Text Preprocessing¶

The goal of text preprocessing is to clean and transform the raw text data into a suitable format for further analysis and modeling.

In [41]:
# 1. Removing White Spaces

def remove_white_space(col):
    cleaned_column = col.replace(" ", "")
    return cleaned_column
In [42]:
# Applying above function on required columns

df['author'] = df['author'].apply(remove_white_space)
df['genre'] = df['genre'].apply(remove_white_space)
In [43]:
df.head(2)
Out[43]:
book_id image_url title description author genre num_ratings average_rating
0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince It is the middle of the summer, but there is a... J.K.Rowling ['Fantasy','YoungAdult','Fiction','Magic','Chi... 3292516 4.58
1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix Harry Potter is about to start his fifth year ... J.K.Rowling ['YoungAdult','Fiction','Magic','Childrens','A... 3401709 4.50

Conversion of string to list - description, author, and genre column¶

In [44]:
# description
df['description'] = df['description'].apply(lambda x:x.split())
# author
df['author'] = df['author'].apply(lambda x:x.split())
In [45]:
# genre columns contains string representations of lists. The easiest way to extract only list from the row is as:
import ast

def convert_to_list(s):
    return ast.literal_eval(s)
In [46]:
df['genre'] = df['genre'].apply(convert_to_list)
In [47]:
df.head()
Out[47]:
book_id image_url title description author genre num_ratings average_rating
0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince [It, is, the, middle, of, the, summer,, but, t... [J.K.Rowling] [Fantasy, YoungAdult, Fiction, Magic, Children... 3292516 4.58
1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix [Harry, Potter, is, about, to, start, his, fif... [J.K.Rowling] [YoungAdult, Fiction, Magic, Childrens, Audiob... 3401709 4.50
2 3 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Sorcerer's Stone [Harry, Potter, has, no, idea, how, famous, he... [J.K.Rowling] [Fantasy, Fiction, YoungAdult, Magic, Children... 10116247 4.47
3 5 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Prisoner of Azkaban [Harry, Potter,, along, with, his, best, frien... [J.K.Rowling] [Fantasy, Fiction, YoungAdult, Magic, Children... 4215031 4.58
4 6 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Goblet of Fire [It, is, the, summer, holidays, and, soon, Har... [J.K.Rowling] [Fantasy, YoungAdult, Fiction, Magic, Children... 3718209 4.57

Combining features¶

In [48]:
df['tags'] = df['description'] + df['author'] + df['genre'] 
In [49]:
df.head()
Out[49]:
book_id image_url title description author genre num_ratings average_rating tags
0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince [It, is, the, middle, of, the, summer,, but, t... [J.K.Rowling] [Fantasy, YoungAdult, Fiction, Magic, Children... 3292516 4.58 [It, is, the, middle, of, the, summer,, but, t...
1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix [Harry, Potter, is, about, to, start, his, fif... [J.K.Rowling] [YoungAdult, Fiction, Magic, Childrens, Audiob... 3401709 4.50 [Harry, Potter, is, about, to, start, his, fif...
2 3 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Sorcerer's Stone [Harry, Potter, has, no, idea, how, famous, he... [J.K.Rowling] [Fantasy, Fiction, YoungAdult, Magic, Children... 10116247 4.47 [Harry, Potter, has, no, idea, how, famous, he...
3 5 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Prisoner of Azkaban [Harry, Potter,, along, with, his, best, frien... [J.K.Rowling] [Fantasy, Fiction, YoungAdult, Magic, Children... 4215031 4.58 [Harry, Potter,, along, with, his, best, frien...
4 6 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Goblet of Fire [It, is, the, summer, holidays, and, soon, Har... [J.K.Rowling] [Fantasy, YoungAdult, Fiction, Magic, Children... 3718209 4.57 [It, is, the, summer, holidays, and, soon, Har...

Reset index¶

In [50]:
df = df.reset_index(drop=True)

Transforming 'tags' column¶

In [51]:
# converting list of words into a single sentence

df['tags'] = df['tags'].apply(lambda x: " ".join(x))

Visualizing words from tags¶

In [52]:
wc = WordCloud(width=800,
 height=400,
 min_font_size=2,
 max_font_size=100,
 min_word_length=3,
 max_words=100, 
 background_color='white'
 )
In [53]:
wc_context= wc.generate(df['tags'].str.cat(sep = " "))
plt.figure(figsize=(10, 6))
plt.imshow(wc_context, interpolation='bilinear')
plt.axis('off')
plt.title('Words in Tags')
plt.show()

Building content-based book recommender system¶

Vectorization¶

TF-IDF Vectorizer

Term frequency Inverse document frequency (TFIDF) is a statistical formula to convert text documents into vectors based on the relevancy of the word. It is based on the bag of the words model to create a matrix containing the information about less relevant and most relevant words in the document.

In [54]:
# Vectorize the combined features
vectorizer = TfidfVectorizer(stop_words='english')
feature_matrix = vectorizer.fit_transform(df['tags'])

# Calculate cosine similarity
cosine_sim = cosine_similarity(feature_matrix, feature_matrix)
In [55]:
# Viewing similarity scores 

print(cosine_sim)
[[1.         0.41951198 0.26565313 ... 0.         0.00752729 0.00419778]
 [0.41951198 1.         0.32576713 ... 0.00711416 0.00685901 0.02483381]
 [0.26565313 0.32576713 1.         ... 0.00106635 0.00591538 0.00982766]
 ...
 [0.         0.00711416 0.00106635 ... 1.         0.00986411 0.04101104]
 [0.00752729 0.00685901 0.00591538 ... 0.00986411 1.         0.02894586]
 [0.00419778 0.02483381 0.00982766 ... 0.04101104 0.02894586 1.        ]]
In [56]:
scores_df = pd.DataFrame(cosine_sim)
scores_df
Out[56]:
0 1 2 3 4 5 6 7 8 9 ... 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410
0 1.000000 0.419512 0.265653 0.420394 0.356971 0.332010 0.249722 0.006469 0.007777 0.020106 ... 0.016558 0.016506 0.017792 0.022233 0.013440 0.000330 0.003275 0.000000 0.007527 0.004198
1 0.419512 1.000000 0.325767 0.646841 0.568556 0.392411 0.350593 0.002993 0.005416 0.011414 ... 0.021482 0.049950 0.013253 0.018330 0.007356 0.010423 0.011020 0.007114 0.006859 0.024834
2 0.265653 0.325767 1.000000 0.320535 0.323266 0.423782 0.206735 0.007199 0.005886 0.018391 ... 0.010497 0.008180 0.007421 0.020128 0.010562 0.012810 0.002079 0.001066 0.005915 0.009828
3 0.420394 0.646841 0.320535 1.000000 0.545722 0.409220 0.367721 0.004806 0.010613 0.006550 ... 0.018479 0.032791 0.007807 0.012265 0.011113 0.009723 0.000607 0.000000 0.006224 0.000000
4 0.356971 0.568556 0.323266 0.545722 1.000000 0.404730 0.329438 0.005248 0.010885 0.007153 ... 0.010967 0.038167 0.008525 0.006308 0.012134 0.006461 0.002399 0.000000 0.017966 0.000000
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
14406 0.000330 0.010423 0.012810 0.009723 0.006461 0.000385 0.004944 0.000262 0.007030 0.003217 ... 0.035557 0.007055 0.000000 0.017815 0.017274 1.000000 0.159424 0.014289 0.009429 0.005565
14407 0.003275 0.011020 0.002079 0.000607 0.002399 0.004105 0.008401 0.023193 0.004565 0.013298 ... 0.038846 0.009880 0.009164 0.008340 0.017411 0.159424 1.000000 0.004655 0.012549 0.013946
14408 0.000000 0.007114 0.001066 0.000000 0.000000 0.000000 0.000000 0.000000 0.005582 0.002959 ... 0.010365 0.000000 0.006870 0.005186 0.002305 0.014289 0.004655 1.000000 0.009864 0.041011
14409 0.007527 0.006859 0.005915 0.006224 0.017966 0.005289 0.011859 0.010438 0.006079 0.000000 ... 0.013243 0.028977 0.015896 0.021367 0.024826 0.009429 0.012549 0.009864 1.000000 0.028946
14410 0.004198 0.024834 0.009828 0.000000 0.000000 0.010857 0.007966 0.000000 0.022369 0.007394 ... 0.019997 0.003999 0.013127 0.002819 0.007561 0.005565 0.013946 0.041011 0.028946 1.000000

14411 rows × 14411 columns

Defining a content-based recommendation function¶

In [60]:
def content_based_recommendations(book_title, cosine_sim=cosine_sim):
    idx = df[df['title'] == book_title].index[0]
    sim_scores = list(enumerate(cosine_sim[idx]))
    sim_scores = sorted(sim_scores, key=lambda x: x[1], reverse=True)
    
    sim_scores = sim_scores[1:6]  # Get top 5 similar books
    book_indices = [i[0] for i in sim_scores]
    
    return df['title'].iloc[book_indices]

Suggestions¶

In [61]:
content_based_recommendations('Harry Potter and the Half-Blood Prince')
Out[61]:
1363      Harry Potter and the Chamber of Secrets
3        Harry Potter and the Prisoner of Azkaban
1       Harry Potter and the Order of the Phoenix
4             Harry Potter and the Goblet of Fire
5               Harry Potter Boxed Set, Books 1-5
Name: title, dtype: object
In [62]:
content_based_recommendations('Neither Here nor There: Travels in Europe')
Out[62]:
12       The Lost Continent: Travels in Small-Town America
7126                                       Made in America
15       The Mother Tongue: English and How It Got That...
12572    The Road to Little Dribbling: Adventures of an...
906              The Life and Times of the Thunderbolt Kid
Name: title, dtype: object
In [63]:
content_based_recommendations('The Long Secret')
Out[63]:
5411              Harriet the Spy
10117    The Blood of the Vampire
9469      A Game Of Hide And Seek
4637             Wolf by the Ears
3875                  Gaudy Night
Name: title, dtype: object

Popularity Based Filtering

Popularity-based filtering is a simple and intuitive approach to recommend items to users based on their popularity or popularity-related metrics. Instead of analyzing user preferences or item similarities, popularity-based filtering suggests items that are generally popular or highly rated by a large number of users.

It is particularly useful in scenarios where there is limited user data or for new users who do not have a history of interactions. It provides a starting point for recommendations.

Here, With the help of Popularity-based filtering, Top N books can be recommended to users based on maximum number of ratings and average rating given to each book.

In [64]:
df.head(2)
Out[64]:
book_id image_url title description author genre num_ratings average_rating tags
0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince [It, is, the, middle, of, the, summer,, but, t... [J.K.Rowling] [Fantasy, YoungAdult, Fiction, Magic, Children... 3292516 4.58 It is the middle of the summer, but there is a...
1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix [Harry, Potter, is, about, to, start, his, fif... [J.K.Rowling] [YoungAdult, Fiction, Magic, Childrens, Audiob... 3401709 4.50 Harry Potter is about to start his fifth year ...

Defining Popularity Score¶

Popularity score can be built by multipling the number of ratings by the average rating. This technique aims to capture both the quantity (number of ratings) and the quality (average rating) of interactions or feedback received by an item.

In [65]:
# Calculating popularity score

df['popularity_score'] = df['num_ratings'] * df['average_rating']

Normalizing the popularity score¶

Normalization typically involves scaling the scores to a range between 0 and 1. This is an important step to ensure that the scores from different components (content-based similarity and popularity) are on a comparable scale.

In [66]:
# Normalize the popularity score

df['popularity_score_normalized'] = (df['popularity_score'] - df['popularity_score'].min()) / (df['popularity_score'].max() - df['popularity_score'].min())
In [67]:
df.head(2)
Out[67]:
book_id image_url title description author genre num_ratings average_rating tags popularity_score popularity_score_normalized
0 1 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Half-Blood Prince [It, is, the, middle, of, the, summer,, but, t... [J.K.Rowling] [Fantasy, YoungAdult, Fiction, Magic, Children... 3292516 4.58 It is the middle of the summer, but there is a... 15079723.28 0.333477
1 2 https://images-na.ssl-images-amazon.com/images... Harry Potter and the Order of the Phoenix [Harry, Potter, is, about, to, start, his, fif... [J.K.Rowling] [YoungAdult, Fiction, Magic, Childrens, Audiob... 3401709 4.50 Harry Potter is about to start his fifth year ... 15307690.50 0.338519

Defining a popularity-based recommendation function¶

In [68]:
# Function to get top N popular books

def get_popular_books(N):
    # Sort books by normalized popularity score
    popular_books = df.sort_values(by='popularity_score_normalized', ascending=False)
    
    return popular_books.head(N)

Suggestions¶

In [69]:
# Get top 10 popular books

top_10_popular_books = get_popular_books(10)
print(top_10_popular_books[['title']])
                                          title
2         Harry Potter and the Sorcerer's Stone
13490     Harry Potter and the Sorcerer’s Stone
8886                           The Hunger Games
218                       To Kill a Mockingbird
2504                                   Twilight
11108                    The Fault in Our Stars
373                            The Great Gatsby
488                                        1984
3      Harry Potter and the Prisoner of Azkaban
163                         Pride and Prejudice

Hybrid Recommender System

It involves combining both content-based and popularity-based filtering approaches to leverage the strengths of both methods. This can be done by assigning weights to the recommendations from both content-based and popularity-based filtering methods and combine them.

This is suitable for users who fall between these two extremes—those who have some preferences, but not enough to rely solely on content-based recommendations. Such Users who want to explore new genres or categories that they haven't interacted with before and want to stay updated with trending and popular items.

Building a hybrid (content-popularity) recommender system¶

In [72]:
# Function to get hybrid recommendations

def hybrid_recommendations(book_title, content_weight=0.8, popularity_weight=0.2, N=10):
    # Ensure the weights sum to 1
    if content_weight + popularity_weight != 1:
        raise ValueError("Content weight and popularity weight must sum to 1.")
    
    # Get content-based recommendations
    idx = df[df['title'] == book_title].index[0]
    sim_scores = list(enumerate(cosine_sim[idx]))
    sim_scores_df = pd.DataFrame(sim_scores, columns=['book_idx', 'similarity_score'])
    
    # Merge with the books DataFrame to get the normalized popularity scores
    sim_scores_df = sim_scores_df.merge(df[['book_id', 'popularity_score_normalized']], left_on='book_idx', right_index=True)
    
    # Calculate the hybrid score
    sim_scores_df['hybrid_score'] = (sim_scores_df['similarity_score'] * content_weight) + (sim_scores_df['popularity_score_normalized'] * popularity_weight)
    
    # Sort the books based on the hybrid score
    sim_scores_df = sim_scores_df.sort_values(by='hybrid_score', ascending=False)
    
    # Get the top N book indices (excluding the first one which is the book itself)
    top_n_indices = sim_scores_df['book_idx'].iloc[1:N+1]
    
    # Return the top N book titles
    return df['title'].iloc[top_n_indices]

Suggestions¶

In [73]:
# Top 10 suggestions

print(hybrid_recommendations('The Hunger Games'))
9817                             Catching Fire
10358                               Mockingjay
13490    Harry Potter and the Sorcerer’s Stone
2        Harry Potter and the Sorcerer's Stone
218                      To Kill a Mockingbird
10532          The Hunger Games Trilogy Boxset
2504                                  Twilight
11324                                Divergent
488                                       1984
11108                   The Fault in Our Stars
Name: title, dtype: object
In [74]:
print(hybrid_recommendations('The Long Secret'))
5411                           Harriet the Spy
2        Harry Potter and the Sorcerer's Stone
10117                 The Blood of the Vampire
13490    Harry Potter and the Sorcerer’s Stone
9469                   A Game Of Hide And Seek
8886                          The Hunger Games
4637                          Wolf by the Ears
3875                               Gaudy Night
14204                              Happy Place
7736                                     Angel
Name: title, dtype: object

Saving files¶

In [75]:
import pickle
In [76]:
pickle.dump(df, open('books_data.pkl', 'wb'))
pickle.dump(cosine_sim, open('cosine_sim.pkl', 'wb'))
In [ ]: